CF730A.Toda 2
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
A group of n friends enjoys playing popular video game Toda 2. There is a rating system describing skill level of each player, initially the rating of the i -th friend is ri .
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 n 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 n ) friends and play a match in the game. When the party loses, the rating of each of its members decreases by 1 . A rating can't become negative, so ri=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 2 to 5 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 n ( 2<=n<=100 ) — the number of friends.
The second line contains n non-negative integers r1,r2,...,rn ( 0<=ri<=100 ), where ri is the initial rating of the i -th friend.
输出格式
In the first line, print a single integer R — the final rating of each of the friends.
In the second line, print integer t — the number of matches the friends have to play. Each of the following t lines should contain n characters '0' or '1', where the j -th character of the i -th line is equal to:
- '0', if friend j should not play in match i ,
- '1', if friend j should play in match i .
Each line should contain between two and five characters '1', inclusive.
The value t should not exceed 104 , it is guaranteed that such solution exists.
Remember that you shouldn't minimize the value t , but you should maximize R . 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