CF1184E3.Daleks' Invasion (hard)

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

With your help, Heidi has prepared a plan of trap placement and defence. Yet suddenly, the Doctor popped out of the TARDIS and told her that he had spied on the Daleks' preparations, and there is more of them than ever. Desperate times require desperate measures, so Heidi is going to risk meeting with the Daleks and she will consider placing a trap along any Corridor.

This means she needs your help again in calculating Emax(c)E_{max}(c) – the largest e109e \le 10^9 such that if we changed the energy requirement of cc to ee , then the Daleks might use cc in their invasion – but this time for all Time Corridors.

输入格式

First line: number nn of destinations, number mm of corridors ( 2n1052 \leq n \leq 10^5 , n1m106n - 1 \leq m \leq 10^6 ). The next mm lines: destinations aa , bb and energy ee ( 1a,bn1 \leq a, b \leq n , aba \neq b , 0e1090 \leq e \leq 10^9 ).

No pair {a,b}\{a, b\} will repeat. The graph is guaranteed to be connected. It is not guaranteed that all energy requirements ee are distinct, or that the minimum spanning tree is unique.

输出格式

Output mm lines, each containing one integer: Emax(ci)E_{max}(c_i) for the ii -th Corridor cic_i from the input.

输入输出样例

  • 输入#1

    3 3
    1 2 8
    2 3 3
    3 1 4
    

    输出#1

    4
    8
    8
    

说明/提示

If m=n1m = n-1 , then you need not output anything.

首页