CF1264E.Beautiful League

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

A football league has recently begun in Beautiful land. There are nn teams participating in the league. Let's enumerate them with integers from 11 to nn .

There will be played exactly n(n1)2\frac{n(n-1)}{2} 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)(A, B, C) beautiful if a team AA win against a team BB , a team BB win against a team CC and a team CC win against a team AA . 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, mm 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 n(n1)2m\frac{n(n-1)}{2} - m matches, so that the league has this maximum beauty.

输入格式

The first line contains two integers n,mn, m ( 3n50,0mn(n1)23 \leq n \leq 50, 0 \leq m \leq \frac{n(n-1)}{2} ) — the number of teams in the football league and the number of matches that were played.

Each of mm following lines contains two integers uu and vv ( 1u,vn1 \leq u, v \leq n , uvu \neq v ) denoting that the uu -th team won against the vv -th team. It is guaranteed that each unordered pair of teams appears at most once.

输出格式

Print nn lines, each line having a string of exactly nn characters. Each character must be either 00 or 11 .

Let aija_{ij} be the jj -th number in the ii -th line. For all 1in1 \leq i \leq n it should be true, that aii=0a_{ii} = 0 . For all pairs of teams iji \neq j the number aija_{ij} indicates the result of the match between the ii -th team and the jj -th team:

  • If aija_{ij} is 11 , the ii -th team wins against the jj -th team;
  • Otherwise the jj -th team wins against the ii -th team;
  • Also, it should be true, that aij+aji=1a_{ij} + a_{ji} = 1 .

Also note that the results of the mm 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 33 because there exists three beautiful triples: (1,2,3)(1, 2, 3) , (2,3,1)(2, 3, 1) , (3,1,2)(3, 1, 2) .

The beauty of league in the second test is equal to 66 because there exists six beautiful triples: (1,2,4)(1, 2, 4) , (2,4,1)(2, 4, 1) , (4,1,2)(4, 1, 2) , (2,4,3)(2, 4, 3) , (4,3,2)(4, 3, 2) , (3,2,4)(3, 2, 4) .

首页