CF323B.Tournament-graph

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

In this problem you have to build tournament graph, consisting of nn vertices, such, that for any oriented pair of vertices (v,u)(v,u) (vu)(v≠u) there exists a path from vertex vv to vertex uu consisting of no more then two edges.

A directed graph without self-loops is a tournament, if there is exactly one edge between any two distinct vertices (in one out of two possible directions).

输入格式

The first line contains an integer nn (3<=n<=1000)(3<=n<=1000) , the number of the graph's vertices.

输出格式

Print -1 if there is no graph, satisfying the described conditions.

Otherwise, print nn lines with nn integers in each. The numbers should be separated with spaces. That is adjacency matrix aa of the found tournament. Consider the graph vertices to be numbered with integers from 11 to nn . Then av,u=0a_{v,u}=0 , if there is no edge from vv to uu , and av,u=1a_{v,u}=1 if there is one.

As the output graph has to be a tournament, following equalities must be satisfied:

  • av,u+au,v=1a_{v,u}+a_{u,v}=1 for each v,uv,u (1<=v,u<=n; vu)(1<=v,u<=n; v≠u) ;
  • av,v=0a_{v,v}=0 for each vv (1<=v<=n)(1<=v<=n) .

输入输出样例

  • 输入#1

    3
    

    输出#1

    0 1 0
    0 0 1
    1 0 0
    
  • 输入#2

    4
    

    输出#2

    -1
    
首页