303835: CF739D. Recover a functional graph

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Recover a functional graph

题意翻译

有一个 $n$ 个点的图,每个点有且仅有一条出边。不难发现这个图是一个基环内向树森林。 现在给出每一个点到其所在基环内向树的环的最短距离和这个环的环长,其中有一些是 `?` 表示可以这个距离或环长可以由你决定。你需要给出一种决定 `?` 并给出所有点的连边的方案,使得给出的所有条件满足,或者说明不存在这样的方案。 $1 \leq n \leq 300$。

题目描述

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. $ precycle_{i} $ 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), $ cycle_{i} $ 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 $ precycle_{i} $ and $ cycle_{i} $ , 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 — $ precycle_{i} $ ( $ 0<=precycle_{i}<=n-1 $ ) and $ cycle_{i} $ ( $ 1<=cycle_{i}<=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

Input

题意翻译

有一个 $n$ 个点的图,每个点有且仅有一条出边。不难发现这个图是一个基环内向树森林。 现在给出每一个点到其所在基环内向树的环的最短距离和这个环的环长,其中有一些是 `?` 表示可以这个距离或环长可以由你决定。你需要给出一种决定 `?` 并给出所有点的连边的方案,使得给出的所有条件满足,或者说明不存在这样的方案。 $1 \leq n \leq 300$。

加入题单

算法标签: