CF1184E2.Daleks' Invasion (medium)

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

After a successful field test, Heidi is considering deploying a trap along some Corridor, possibly not the first one. She wants to avoid meeting the Daleks inside the Time Vortex, so for abundance of caution she considers placing the traps only along those Corridors that are not going to be used according to the current Daleks' plan – which is to use a minimum spanning tree of Corridors. Heidi knows that all energy requirements for different Corridors are now different, and that the Daleks have a single unique plan which they are intending to use.

Your task is to calculate the number Emax(c)E_{max}(c) , which is defined in the same way as in the easy version – i.e., the largest e109e \le 10^9 such that if we changed the energy of corridor cc to ee , the Daleks might use it – but now for every corridor that Heidi considers.

输入格式

The first line: number nn of destinations, number mm of Time 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. All energy requirements ee are distinct.

输出格式

Output m(n1)m-(n-1) lines, each containing one integer: Emax(ci)E_{max}(c_i) for the ii -th Corridor cic_i from the input that is not part of the current Daleks' plan (minimum spanning tree).

输入输出样例

  • 输入#1

    3 3
    1 2 8
    2 3 3
    3 1 4
    

    输出#1

    4
    

说明/提示

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

首页