CF1264E.Beautiful League
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
A football league has recently begun in Beautiful land. There are n teams participating in the league. Let's enumerate them with integers from 1 to n .
There will be played exactly 2n(n−1) matches: each team will play against all other teams exactly once. In each match, there is always a winner and loser and there is no draw.
After all matches are played, the organizers will count the number of beautiful triples. Let's call a triple of three teams (A,B,C) beautiful if a team A win against a team B , a team B win against a team C and a team C win against a team A . We look only to a triples of different teams and the order of teams in the triple is important.
The beauty of the league is the number of beautiful triples.
At the moment, m matches were played and their results are known.
What is the maximum beauty of the league that can be, after playing all remaining matches? Also find a possible results for all remaining 2n(n−1)−m matches, so that the league has this maximum beauty.
输入格式
The first line contains two integers n,m ( 3≤n≤50,0≤m≤2n(n−1) ) — the number of teams in the football league and the number of matches that were played.
Each of m following lines contains two integers u and v ( 1≤u,v≤n , u=v ) denoting that the u -th team won against the v -th team. It is guaranteed that each unordered pair of teams appears at most once.
输出格式
Print n lines, each line having a string of exactly n characters. Each character must be either 0 or 1 .
Let aij be the j -th number in the i -th line. For all 1≤i≤n it should be true, that aii=0 . For all pairs of teams i=j the number aij indicates the result of the match between the i -th team and the j -th team:
- If aij is 1 , the i -th team wins against the j -th team;
- Otherwise the j -th team wins against the i -th team;
- Also, it should be true, that aij+aji=1 .
Also note that the results of the m matches that were already played cannot be changed in your league.
The beauty of the league in the output should be maximum possible. If there are multiple possible answers with maximum beauty, you can print any of them.
输入输出样例
输入#1
3 1 1 2
输出#1
010 001 100
输入#2
4 2 1 2 1 3
输出#2
0110 0001 0100 1010
说明/提示
The beauty of league in the first test case is equal to 3 because there exists three beautiful triples: (1,2,3) , (2,3,1) , (3,1,2) .
The beauty of league in the second test is equal to 6 because there exists six beautiful triples: (1,2,4) , (2,4,1) , (4,1,2) , (2,4,3) , (4,3,2) , (3,2,4) .