#A. 建立航线图

    传统题 1000ms 128MiB

建立航线图

You cannot submit for this problem because the contest is ended. You can click "Open in Problem Set" to view this problem in normal mode.

题目描述

共有 NN 个城市要通航,输入通航的起点城市编号和终点城市编号,请输出这 NN 个城市的通航矩阵图

输入格式

第一行一个整数 NN

第二行开始每行两个正整数 ai,bia_i,b_i,表示一条航线的两个端点城市。若 ai=bi=0a_i=b_i=0,则输入结束

输出格式

以邻接矩阵的方式输出航线图,注意每个数字的场宽为55

4
1 2
1 3
1 4
4 1
3 1
2 4
0 0
0  1  1  1
0  0  0  1
1  0  0  0
1  0  0  0

数据范围

1N10001 \le N \le 1000

0ai,biN0 \le a_i,b_i \le N

图论基础

未认领
状态
已结束
题目
7
开始时间
2023-8-16 0:00
截止时间
2023-8-24 23:59
可延期
24 小时