A970.Timeline--Gold

普及/提高-

USACO

通过率:0%

时间限制:1.00s

内存限制:128MB

题目描述

Bessie attended NN milking sessions (1N1051\le N\le 10^5) over the past MM days
(2M1092 \le M \le 10^9). However, she is having trouble remembering when she
attended each session.
For each session i=1Ni = 1 \ldots N, she knows that it occurred no earlier than
day SiS_i (1SiM1\le S_i\le M). Additionally, Bessie has CC memories (1C1051\le C\le 10^5), each described by a triple (a,b,x)(a,b,x), where she recalls that session
bb happened at least xx days after aa.
Help Bessie by computing the earliest possible date of occurrence for each
milking session. It is guaranteed that Bessie did not remember incorrectly; in
other words, there exists an assignment of sessions to days in the range
1M1\ldots M such that all constraints from her memories are satisfied.

输入格式

  • Test cases 2-4 satisfy N,C103N,C \le 10^3.
  • Test cases 5-10 satisfy no additional constraints.

输出格式

The first line of input contains NN, MM, and CC.
The next line contains NN space-separated integers S1,S2,,SNS_1,S_2,\ldots, S_N.
Each is in the range 1M1 \ldots M.
The next CC lines contain three integers, aa, bb, and xx indicating that
session bb happened at least xx days after aa. For each line, aba \neq b,
aa and bb are in the range 1N1 \ldots N, and xx is in the range 1M1 \ldots M.

输入输出样例

  • 输入#1

    Output $N$ lines giving the earliest possible date of occurrence for each
    session.
    

    输出#1

    4 10 3
    1 2 3 4
    1 2 5
    2 4 2
    3 4 4
    

说明/提示

1
6
3
8

首页