A14538 | Four Vertices
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given an undirected weighted graph, consisting of $n$ vertices and $m$ edges.
Some queries happen with this graph:
- Delete an existing edge from the graph.
- Add a non-existing edge to the graph.
At the beginning and after each query, you should find four different vertices $a$ , $b$ , $c$ , $d$ such that there exists a path between $a$ and $b$ , there exists a path between $c$ and $d$ , and the sum of lengths of two shortest paths from $a$ to $b$ and from $c$ to $d$ is minimal. The answer to the query is the sum of the lengths of these two shortest paths. The length of the path is equal to the sum of weights of edges in this path.
Some queries happen with this graph:
- Delete an existing edge from the graph.
- Add a non-existing edge to the graph.
At the beginning and after each query, you should find four different vertices $a$ , $b$ , $c$ , $d$ such that there exists a path between $a$ and $b$ , there exists a path between $c$ and $d$ , and the sum of lengths of two shortest paths from $a$ to $b$ and from $c$ to $d$ is minimal. The answer to the query is the sum of the lengths of these two shortest paths. The length of the path is equal to the sum of weights of edges in this path.
输入格式
The first line contains two integers $n$ and $m$ $(4 \le n, m \le 10^5)$ — the number of vertices and edges in the graph respectively.
Each of the next $m$ lines contain three integers $v$ , $u$ , $w$ ( $1 \le v, u \le n, v \neq u$ , $1 \le w \le 10^9$ ) — this triple means that there is an edge between vertices $v$ and $u$ with weight $w$ .
The next line contains a single integer $q$ $(0 \le q \le 10^5)$ — the number of queries.
The next $q$ lines contain the queries of two types:
- $0$ $v$ $u$ — this query means deleting an edge between $v$ and $u$ $(1 \le v, u \le n, v \neq u)$ . It is guaranteed that such edge exists in the graph.
- $1$ $v$ $u$ $w$ — this query means adding an edge between vertices $v$ and $u$ with weight $w$ ( $1 \le v, u \le n, v \neq u$ , $1 \le w \le 10^9$ ). It is guaranteed that there was no such edge in the graph.
It is guaranteed that the initial graph does not contain multiple edges.
At the beginning and after each query, the graph doesn't need to be connected.
It is guaranteed that at each moment the number of edges will be at least $4$ . It can be proven, that at each moment there exist some four vertices $a$ , $b$ , $c$ , $d$ such that there exists a path between vertices $a$ and $b$ , and there exists a path between vertices $c$ and $d$ .
Each of the next $m$ lines contain three integers $v$ , $u$ , $w$ ( $1 \le v, u \le n, v \neq u$ , $1 \le w \le 10^9$ ) — this triple means that there is an edge between vertices $v$ and $u$ with weight $w$ .
The next line contains a single integer $q$ $(0 \le q \le 10^5)$ — the number of queries.
The next $q$ lines contain the queries of two types:
- $0$ $v$ $u$ — this query means deleting an edge between $v$ and $u$ $(1 \le v, u \le n, v \neq u)$ . It is guaranteed that such edge exists in the graph.
- $1$ $v$ $u$ $w$ — this query means adding an edge between vertices $v$ and $u$ with weight $w$ ( $1 \le v, u \le n, v \neq u$ , $1 \le w \le 10^9$ ). It is guaranteed that there was no such edge in the graph.
It is guaranteed that the initial graph does not contain multiple edges.
At the beginning and after each query, the graph doesn't need to be connected.
It is guaranteed that at each moment the number of edges will be at least $4$ . It can be proven, that at each moment there exist some four vertices $a$ , $b$ , $c$ , $d$ such that there exists a path between vertices $a$ and $b$ , and there exists a path between vertices $c$ and $d$ .
输出格式
Print $q + 1$ integers — the minimal sum of lengths of shortest paths between chosen pairs of vertices before the queries and after each of them.
输入输出样例
输入 #1
6 6 1 3 6 4 3 1 1 4 1 2 6 4 2 4 2 5 4 3 4 1 2 5 2 0 1 4 0 3 4 1 6 1 3
输出 #1
4 3 3 7 5
Before the queries you can choose vertices $(a, b) = (3, 2)$ and $(c, d) = (1, 4)$ . The sum of lengths of two shortest paths is $3 + 1 = 4$ .
After the first query you can choose vertices $(a, b) = (2, 5)$ and $(c, d) = (1, 4)$ . The sum of lengths of two shortest paths is $2 + 1 = 3$ .
After the second query you can choose vertices $(a, b) = (3, 4)$ and $(c, d) = (2, 5)$ . The sum of lengths of two shortest paths is $1 + 2 = 3$ .
After the third query, you can choose vertices $(a, b) = (2, 6)$ and $(c, d) = (4, 5)$ . The sum of lengths of two shortest paths is $4 + 3 = 7$ .
After the last query you can choose vertices $(a, b) = (1, 6)$ and $(c, d) = (2, 5)$ . The sum of lengths of two shortest paths is $3 + 2 = 5$ .
After the first query you can choose vertices $(a, b) = (2, 5)$ and $(c, d) = (1, 4)$ . The sum of lengths of two shortest paths is $2 + 1 = 3$ .
After the second query you can choose vertices $(a, b) = (3, 4)$ and $(c, d) = (2, 5)$ . The sum of lengths of two shortest paths is $1 + 2 = 3$ .
After the third query, you can choose vertices $(a, b) = (2, 6)$ and $(c, d) = (4, 5)$ . The sum of lengths of two shortest paths is $4 + 3 = 7$ .
After the last query you can choose vertices $(a, b) = (1, 6)$ and $(c, d) = (2, 5)$ . The sum of lengths of two shortest paths is $3 + 2 = 5$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted