CF739D.Recover a functional graph
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Functional graph is a directed graph in which all vertices have outdegree equal to 1 . Loops are allowed.
Some vertices of a functional graph lay on a cycle. From the others we can come to a cycle by making a finite number of steps along the edges (we consider only finite functional graphs in this problem).
Let's compute two values for each vertex. precyclei is the amount of edges we should pass to get to a vertex which is a part of some cycle (zero, if i itself lies on a cycle), cyclei is the length of the cycle we get to.
You are given the information about these values for some functional graph. For each vertex you know the values precyclei and cyclei , however, instead of some values there can be the question mark. It means that these values are unknown.
Build any functional graph that suits the description or determine that there is no such graph.
输入格式
The first line contains single integer n ( 1<=n<=300 ) — the number of vertices in the graph.
Each of the next n lines contain two integers — precyclei ( 0<=precyclei<=n−1 ) and cyclei ( 1<=cyclei<=n ). There could be question marks instead of some of these values.
输出格式
In case there is no solution, print -1.
Otherwise, print n integers. i -th of them is the number of vertex to which the edge form the i -th vertex go.
The vertices should be in the same order as they go in input data.
If there are multiple solutions, print any of them.
输入输出样例
输入#1
3 0 3 0 3 ? ?
输出#1
2 3 1
输入#2
5 3 2 ? ? ? ? ? ? ? ?
输出#2
5 3 2 2 4
输入#3
8 ? 3 ? ? 0 2 0 2 0 3 0 3 0 3 3 3
输出#3
5 1 4 3 6 7 5 2
输入#4
1 ? ?
输出#4
1
输入#5
6 0 3 0 3 0 3 0 3 0 3 0 3
输出#5
2 3 1 5 6 4
输入#6
2 1 1 1 1
输出#6
-1