302901: CF566B. Replicating Processes

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

Description

Replicating Processes

题意翻译

有 $n$ 台服务器,同一时刻一台服务器最多能运行 $9$ 个进程。初始时,每台服务器上运行 $4$ 个进程。 给出 $4n$ 个命令,第 $i$ 个命令用三元组 $a_i \rightarrow (b_i, c_i)$ 描述,表示如果进行第 $i$ 个命令,则: 1. 第 $a_i$ 台服务器上删除一个进程。 2. 第 $b_i$ 台服务器上新建一个进程。 3. 第 $c_i$ 台服务器上新建一个进程。 此处的三个操作严格按顺序执行。特别地,有可能 $a_i = b_i$ 或 $a_i = c_i$ 或 $b_i = c_i$。 **保证在所有命令执行完后,每台服务器上都各运行 $8$ 个进程。** 请你合理安排命令执行顺序,使得中间任意时刻都不存在一台服务器,其运行进程数超过 $9$ 个。

题目描述

A Large Software Company develops its own social network. Analysts have found that during the holidays, major sporting events and other significant events users begin to enter the network more frequently, resulting in great load increase on the infrastructure. As part of this task, we assume that the social network is $ 4n $ processes running on the $ n $ servers. All servers are absolutely identical machines, each of which has a volume of RAM of $ 1 $ GB = $ 1024 $ MB $ ^{(1)} $ . Each process takes 100 MB of RAM on the server. At the same time, the needs of maintaining the viability of the server takes about $ 100 $ more megabytes of RAM. Thus, each server may have up to $ 9 $ different processes of social network. Now each of the $ n $ servers is running exactly $ 4 $ processes. However, at the moment of peak load it is sometimes necessary to replicate the existing $ 4n $ processes by creating $ 8n $ new processes instead of the old ones. More formally, there is a set of replication rules, the $ i $ -th ( $ 1<=i<=4n $ ) of which has the form of $ a_{i}→(b_{i},c_{i}) $ , where $ a_{i} $ , $ b_{i} $ and $ c_{i} $ ( $ 1<=a_{i},b_{i},c_{i}<=n $ ) are the numbers of servers. This means that instead of an old process running on server $ a_{i} $ , there should appear two new copies of the process running on servers $ b_{i} $ and $ c_{i} $ . The two new replicated processes can be on the same server (i.e., $ b_{i} $ may be equal to $ c_{i} $ ) or even on the same server where the original process was (i.e. $ a_{i} $ may be equal to $ b_{i} $ or $ c_{i} $ ). During the implementation of the rule $ a_{i}→(b_{i},c_{i}) $ first the process from the server $ a_{i} $ is destroyed, then appears a process on the server $ b_{i} $ , then appears a process on the server $ c_{i} $ . There is a set of $ 4n $ rules, destroying all the original $ 4n $ processes from $ n $ servers, and creating after their application $ 8n $ replicated processes, besides, on each of the $ n $ servers will be exactly $ 8 $ processes. However, the rules can only be applied consecutively, and therefore the amount of RAM of the servers imposes limitations on the procedure for the application of the rules. According to this set of rules determine the order in which you want to apply all the $ 4n $ rules so that at any given time the memory of each of the servers contained at most $ 9 $ processes (old and new together), or tell that it is impossible.

输入输出格式

输入格式


The first line of the input contains integer $ n $ ( $ 1<=n<=30000 $ ) — the number of servers of the social network. Next $ 4n $ lines contain the rules of replicating processes, the $ i $ -th ( $ 1<=i<=4n $ ) of these lines as form $ a_{i},b_{i},c_{i} $ ( $ 1<=a_{i},b_{i},c_{i}<=n $ ) and describes rule $ a_{i}→(b_{i},c_{i}) $ . It is guaranteed that each number of a server from $ 1 $ to $ n $ occurs four times in the set of all $ a_{i} $ , and eight times among a set that unites all $ b_{i} $ and $ c_{i} $ .

输出格式


If the required order of performing rules does not exist, print "NO" (without the quotes). Otherwise, print in the first line "YES" (without the quotes), and in the second line — a sequence of $ 4n $ numbers from $ 1 $ to $ 4n $ , giving the numbers of the rules in the order they are applied. The sequence should be a permutation, that is, include each number from $ 1 $ to $ 4n $ exactly once. If there are multiple possible variants, you are allowed to print any of them.

输入输出样例

输入样例 #1

2
1 2 2
1 2 2
1 2 2
1 2 2
2 1 1
2 1 1
2 1 1
2 1 1

输出样例 #1

YES
1 2 5 6 3 7 4 8

输入样例 #2

3
1 2 3
1 1 1
1 1 1
1 1 1
2 1 3
2 2 2
2 2 2
2 2 2
3 1 2
3 3 3
3 3 3
3 3 3

输出样例 #2

YES
2 3 4 6 7 8 10 11 12 1 5 9

说明

$ ^{(1)} $ To be extremely accurate, we should note that the amount of server memory is $ 1 $ GiB = $ 1024 $ MiB and processes require $ 100 $ MiB RAM where a gibibyte (GiB) is the amount of RAM of $ 2^{30} $ bytes and a mebibyte (MiB) is the amount of RAM of $ 2^{20} $ bytes. In the first sample test the network uses two servers, each of which initially has four launched processes. In accordance with the rules of replication, each of the processes must be destroyed and twice run on another server. One of the possible answers is given in the statement: after applying rules $ 1 $ and $ 2 $ the first server will have $ 2 $ old running processes, and the second server will have $ 8 $ ( $ 4 $ old and $ 4 $ new) processes. After we apply rules $ 5 $ and $ 6 $ , both servers will have $ 6 $ running processes ( $ 2 $ old and $ 4 $ new). After we apply rules $ 3 $ and $ 7 $ , both servers will have $ 7 $ running processes ( $ 1 $ old and $ 6 $ new), and after we apply rules $ 4 $ and $ 8 $ , each server will have $ 8 $ running processes. At no time the number of processes on a single server exceeds $ 9 $ . In the second sample test the network uses three servers. On each server, three processes are replicated into two processes on the same server, and the fourth one is replicated in one process for each of the two remaining servers. As a result of applying rules $ 2,3,4,6,7,8,10,11,12 $ each server would have $ 7 $ processes ( $ 6 $ old and $ 1 $ new), as a result of applying rules $ 1,5,9 $ each server will have $ 8 $ processes. At no time the number of processes on a single server exceeds $ 9 $ .

Input

题意翻译

有 $n$ 台服务器,同一时刻一台服务器最多能运行 $9$ 个进程。初始时,每台服务器上运行 $4$ 个进程。 给出 $4n$ 个命令,第 $i$ 个命令用三元组 $a_i \rightarrow (b_i, c_i)$ 描述,表示如果进行第 $i$ 个命令,则: 1. 第 $a_i$ 台服务器上删除一个进程。 2. 第 $b_i$ 台服务器上新建一个进程。 3. 第 $c_i$ 台服务器上新建一个进程。 此处的三个操作严格按顺序执行。特别地,有可能 $a_i = b_i$ 或 $a_i = c_i$ 或 $b_i = c_i$。 **保证在所有命令执行完后,每台服务器上都各运行 $8$ 个进程。** 请你合理安排命令执行顺序,使得中间任意时刻都不存在一台服务器,其运行进程数超过 $9$ 个。

加入题单

上一题 下一题 算法标签: