408349: GYM103102 M Mistake

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

Description

M. Mistaketime limit per test3 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard output

As an apprentice algorithms enthusiast, it is not a great surprise that Mike struggles to cope with overly complex systems. Unfortunately, this turned out to be a big problem in the company he is currently interning.

Mike's assigned project involves tinkering with the company's Intelligent Cluster for Parallel Computation. This is just a fancy name; in reality, the system is just a simple job scheduler, handling a total of $$$n$$$ jobs. Some jobs might depend on successful execution of other jobs before being able to be executed. There are $$$m$$$ such dependencies in total.

It is guaranteed that there are no (direct or indirect) circular dependencies between jobs.

When a run is started, the systems intelligently picks an order to execute these jobs so that all the dependencies are met (the order may change between different runs). After picking a valid ordering, it starts executing each of the $$$n$$$ jobs in that order. When the system starts executing a job, it prints the id of the job to a log file.

Unfortunately, today was Mike's first day interning at the company and he wasn't very cautious. Consequently, he accidentally ran the system $$$k$$$ times in parallel. The system started erratically launching jobs and printing to the log file. Now the log file contains $$$n \cdot k$$$ ids of all the jobs that were executed. The job ids from the same run have been printed in the order they were executed, but the outputs from different runs may appear interweaved arbitrarily.

Your task is to figure out which jobs were executed in each of the $$$k$$$ runs from the information inside the log file.

Input

The first line of the input will contain three integers $$$n, k, m$$$ ($$$1 \leq n, k \leq 500\,000$$$, $$$0 \leq m \leq 250\,000$$$, $$$n \cdot k \leq 500\,000$$$), the number of jobs in the system, the number of runs Mike had triggered, and the number of dependencies.

The following $$$m$$$ lines will contain a pair $$$a_i, b_i$$$ ($$$1 \leq a_i, b_i \leq n, a_i \neq b_i$$$, for all $$$1 \leq i \leq m$$$) describing a dependency of kind: "job $$$a_i$$$ must be executed before job $$$b_i$$$".

Finally, the last line of the input contains $$$n \cdot k$$$ integers $$$c_i$$$ ($$$1 \leq c_i \leq n$$$, for all $$$1 \leq i \leq n \cdot k$$$), the job ids that have been printed in the log file, in order.

Output

Output a single line consisting of $$$n \cdot k$$$ integers $$$r_i$$$ ($$$1 \leq r_i \leq k$$$, for all $$$1 \leq i \leq n \cdot k$$$), the run id corresponding to each of the jobs in the log file. More specifically, $$$r_i$$$ should be the run id corresponding to the $$$i$$$-th job, as it appears in the log file.

If multiple solutions are possible, any one is accepted. It is guaranteed that the input data is valid and that a solution always exists.

ExampleInput
3 3 2
1 2
1 3
1 1 2 3 3 2 1 2 3
Output
1 2 2 1 2 1 3 3 3

加入题单

算法标签: