Problem C. Kingdom

时间限制 1000 ms   内存限制 64 MB

Teacher Mai has a kingdom consisting of n cities. He has planned the transportation of the kingdom. Every pair of cities has exactly a one-way road.

He wants develop this kingdom from one city to one city.

Teacher Mai now is considering developing the city w. And he hopes that for every city u he has developed, there is a one-way road from u to w, or there are two one-way roads from u to v, and from v to w, where city v has been developed before.

He gives you the map of the kingdom. Hope you can give a proper order to develop this kingdom.
 

输入数据

There are multiple test cases, terminated by a line "0".

For each test case, the first line contains an integer n (1<=n<=500).

The following are n lines, the i-th line contains a string consisting of n characters. If the j-th characters is 1, there is a one-way road from city i to city j.

Cities are labelled from 1.
 

输出数据

If there is no solution just output "-1". Otherwise output n integers representing the order to develop this kingdom.
 

样例输入

复制
3
011
001
000
0

样例输出

复制
1 2 3

提交

请先 登录

© 2025 FAQs Contact About