A12727 | Daleks' Invasion (hard)
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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 $E_{max}(c)$ – the largest $e \le 10^9$ such that if we changed the energy requirement of $c$ to $e$ , then the Daleks might use $c$ in their invasion – but this time for all Time Corridors.
This means she needs your help again in calculating $E_{max}(c)$ – the largest $e \le 10^9$ such that if we changed the energy requirement of $c$ to $e$ , then the Daleks might use $c$ in their invasion – but this time for all Time Corridors.
输入格式
First line: number $n$ of destinations, number $m$ of corridors ( $2 \leq n \leq 10^5$ , $n - 1 \leq m \leq 10^6$ ). The next $m$ lines: destinations $a$ , $b$ and energy $e$ ( $1 \leq a, b \leq n$ , $a \neq b$ , $0 \leq e \leq 10^9$ ).
No pair $\{a, b\}$ will repeat. The graph is guaranteed to be connected. It is not guaranteed that all energy requirements $e$ are distinct, or that the minimum spanning tree is unique.
No pair $\{a, b\}$ will repeat. The graph is guaranteed to be connected. It is not guaranteed that all energy requirements $e$ are distinct, or that the minimum spanning tree is unique.
输出格式
Output $m$ lines, each containing one integer: $E_{max}(c_i)$ for the $i$ -th Corridor $c_i$ from the input.
输入输出样例
输入 #1
3 3 1 2 8 2 3 3 3 1 4
输出 #1
4 8 8
If $m = n-1$ , then you need not output anything.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted