A11116 | Dynamic Shortest Path
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given a weighted directed graph, consisting of $n$ vertices and $m$ edges. You should answer $q$ queries of two types:
- 1 v — find the length of shortest path from vertex $1$ to vertex $v$ .
- 2 c $l_{1}\ l_{2}\ ...\ l_{c}$ — add $1$ to weights of edges with indices $l_{1},l_{2},...,l_{c}$ .
- 1 v — find the length of shortest path from vertex $1$ to vertex $v$ .
- 2 c $l_{1}\ l_{2}\ ...\ l_{c}$ — add $1$ to weights of edges with indices $l_{1},l_{2},...,l_{c}$ .
输入格式
The first line of input data contains integers $n$ , $m$ , $q$ ( $1<=n,m<=10^{5}$ , $1<=q<=2000$ ) — the number of vertices and edges in the graph, and the number of requests correspondingly.
Next $m$ lines of input data contain the descriptions of edges: $i$ -th of them contains description of edge with index $i$ — three integers $a_{i}$ , $b_{i}$ , $c_{i}$ ( $1<=a_{i},b_{i}<=n$ , $0<=c_{i}<=10^{9}$ ) — the beginning and the end of edge, and its initial weight correspondingly.
Next $q$ lines of input data contain the description of edges in the format described above ( $1<=v<=n$ , $1<=l_{j}<=m$ ). It's guaranteed that inside single query all $l_{j}$ are distinct. Also, it's guaranteed that a total number of edges in all requests of the second type does not exceed $10^{6}$ .
Next $m$ lines of input data contain the descriptions of edges: $i$ -th of them contains description of edge with index $i$ — three integers $a_{i}$ , $b_{i}$ , $c_{i}$ ( $1<=a_{i},b_{i}<=n$ , $0<=c_{i}<=10^{9}$ ) — the beginning and the end of edge, and its initial weight correspondingly.
Next $q$ lines of input data contain the description of edges in the format described above ( $1<=v<=n$ , $1<=l_{j}<=m$ ). It's guaranteed that inside single query all $l_{j}$ are distinct. Also, it's guaranteed that a total number of edges in all requests of the second type does not exceed $10^{6}$ .
输出格式
For each query of first type print the length of the shortest path from $1$ to $v$ in a separate line. Print -1, if such path does not exists.
输入输出样例
输入 #1
3 2 9 1 2 0 2 3 0 2 1 2 1 3 1 2 2 1 1 1 3 1 2 2 2 1 2 1 3 1 2
输出 #1
1 0 2 1 4 2
输入 #2
5 4 9 2 3 1 2 4 1 3 4 1 1 2 0 1 5 1 4 2 1 2 2 1 2 1 4 2 2 1 3 1 4 2 1 4 1 4
输出 #2
-1 1 2 3 4
The description of changes of the graph in the first sample case:

The description of changes of the graph in the second sample case:


The description of changes of the graph in the second sample case:

C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted