CF435C.Cardiogram

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

The first line contains integer nn (2<=n<=1000)(2<=n<=1000) . The next line contains the sequence of integers a1,a2,...,ana_{1},a_{2},...,a_{n} (1<=ai<=1000)(1<=a_{i}<=1000) . It is guaranteed that the sum of all aia_{i} doesn't exceed 10001000 .

输入格式

Print max yiyjmax |y_{i}-y_{j}| lines (where yky_{k} is the yy coordinate of the kk -th point of the polyline), in each line print characters. Each character must equal either « // » (slash), « $$ » (backslash), « » (space). The printed image must be the image of the given polyline. Please study the test samples for better understanding of how to print a cardiogram.

Note that in this problem the checker checks your answer taking spaces into consideration. Do not print any extra characters. Remember that the wrong answer to the first pretest doesn't give you a penalty.

输出格式

Due to the technical reasons the answers for the samples cannot be copied from the statement. We've attached two text documents with the answers below.

http://assets.codeforces.com/rounds/435/1.txt

http://assets.codeforces.com/rounds/435/2.txt

输入输出样例

  • 输入#1

    5
    3 1 2 5 1
    

    输出#1

         <span class="tex-span"> / </span><span class="tex-span">\</span>     
      <span class="tex-span"> / </span><span class="tex-span">\</span><span class="tex-span"> / </span>  <span class="tex-span">\</span>    
     <span class="tex-span"> / </span>      <span class="tex-span">\</span>   
    <span class="tex-span"> / </span>        <span class="tex-span">\</span>  
              <span class="tex-span">\</span><span class="tex-span"> / </span>
    
  • 输入#2

    3
    1 5 1
    

    输出#2

    <span class="tex-span"> / </span><span class="tex-span">\</span>     
      <span class="tex-span">\</span>    
       <span class="tex-span">\</span>   
        <span class="tex-span">\</span>  
         <span class="tex-span">\</span><span class="tex-span"> / </span>
    

说明/提示

Due to the technical reasons the answers for the samples cannot be copied from the statement. We've attached two text documents with the answers below.

http://assets.codeforces.com/rounds/435/1.txt

http://assets.codeforces.com/rounds/435/2.txt

首页