PivotOJ

Timeline

시간 제한: 2000ms메모리 제한: 512MB출처: USACO 2020 February Contest, GoldBOJ 18780

문제

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.

입력

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.

출력

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

힌트

Session two occurred at least five days after session one, so it cannot have occurred before day 1+5=6.1+5=6. Session four occurred at least two days after session two, so it cannot have occurred before day 6+2=86+2=8.

예제

예제 1

입력
4 10 3
1 2 3 4
1 2 5
2 4 2
3 4 4
출력
1
6
3
8
코드를 제출하려면 로그인하세요.