CF730A.Toda 2

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

A group of nn friends enjoys playing popular video game Toda 2. There is a rating system describing skill level of each player, initially the rating of the ii -th friend is rir_{i} .

The friends decided to take part in the championship as a team. But they should have equal ratings to be allowed to compose a single team consisting of all nn friends. So the friends are faced with the problem: how to make all their ratings equal.

One way to change ratings is to willingly lose in some matches. Friends can form a party consisting of two to five (but not more than nn ) friends and play a match in the game. When the party loses, the rating of each of its members decreases by 11 . A rating can't become negative, so ri=0r_{i}=0 doesn't change after losing.

The friends can take part in multiple matches, each time making a party from any subset of friends (but remember about constraints on party size: from 22 to 55 members).

The friends want to make their ratings equal but as high as possible.

Help the friends develop a strategy of losing the matches so that all their ratings become equal and the resulting rating is maximum possible.

输入格式

The first line contains a single integer nn ( 2<=n<=1002<=n<=100 ) — the number of friends.

The second line contains nn non-negative integers r1,r2,...,rnr_{1},r_{2},...,r_{n} ( 0<=ri<=1000<=r_{i}<=100 ), where rir_{i} is the initial rating of the ii -th friend.

输出格式

In the first line, print a single integer RR — the final rating of each of the friends.

In the second line, print integer tt — the number of matches the friends have to play. Each of the following tt lines should contain nn characters '0' or '1', where the jj -th character of the ii -th line is equal to:

  • '0', if friend jj should not play in match ii ,
  • '1', if friend jj should play in match ii .

Each line should contain between two and five characters '1', inclusive.

The value tt should not exceed 10410^{4} , it is guaranteed that such solution exists.

Remember that you shouldn't minimize the value tt , but you should maximize RR . If there are multiple solutions, print any of them.

输入输出样例

  • 输入#1

    5
    4 5 1 7 4
    

    输出#1

    1
    8
    01010
    00011
    01010
    10010
    00011
    11000
    00011
    11000
    
  • 输入#2

    2
    1 2
    

    输出#2

    0
    2
    11
    11
    
  • 输入#3

    3
    1 1 1
    

    输出#3

    1
    0
    
首页