A11141 | Diverging Directions
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given a directed weighted graph with $n$ nodes and $2n-2$ edges. The nodes are labeled from $1$ to $n$ , while the edges are labeled from $1$ to $2n-2$ . The graph's edges can be split into two parts.
- The first $n-1$ edges will form a rooted spanning tree, with node $1$ as the root. All these edges will point away from the root.
- The last $n-1$ edges will be from node $i$ to node $1$ , for all $2<=i<=n$ .
You are given $q$ queries. There are two types of queries
- $1\ i\ w$ : Change the weight of the $i$ -th edge to $w$
- $2\ u\ v$ : Print the length of the shortest path between nodes $u$ to $v$
Given these queries, print the shortest path lengths.
- The first $n-1$ edges will form a rooted spanning tree, with node $1$ as the root. All these edges will point away from the root.
- The last $n-1$ edges will be from node $i$ to node $1$ , for all $2<=i<=n$ .
You are given $q$ queries. There are two types of queries
- $1\ i\ w$ : Change the weight of the $i$ -th edge to $w$
- $2\ u\ v$ : Print the length of the shortest path between nodes $u$ to $v$
Given these queries, print the shortest path lengths.
输入格式
The first line of input will contain two integers $n,q$ ( $2<=n,q<=200000$ ), the number of nodes, and the number of queries, respectively.
The next $2n-2$ integers will contain 3 integers $a_{i},b_{i},c_{i}$ , denoting a directed edge from node $a_{i}$ to node $b_{i}$ with weight $c_{i}$ .
The first $n-1$ of these lines will describe a rooted spanning tree pointing away from node $1$ , while the last $n-1$ of these lines will have $b_{i}=1$ .
More specifically,
- The edges $(a_{1},b_{1}),(a_{2},b_{2}),...\ (a_{n-1},b_{n-1})$ will describe a rooted spanning tree pointing away from node $1$ .
- $b_{j}=1$ for $n<=j<=2n-2$ .
- $a_{n},a_{n+1},...,a_{2n-2}$ will be distinct and between $2$ and $n$ .
The next $q$ lines will contain 3 integers, describing a query in the format described in the statement.
All edge weights will be between $1$ and $10^{6}$ .
The next $2n-2$ integers will contain 3 integers $a_{i},b_{i},c_{i}$ , denoting a directed edge from node $a_{i}$ to node $b_{i}$ with weight $c_{i}$ .
The first $n-1$ of these lines will describe a rooted spanning tree pointing away from node $1$ , while the last $n-1$ of these lines will have $b_{i}=1$ .
More specifically,
- The edges $(a_{1},b_{1}),(a_{2},b_{2}),...\ (a_{n-1},b_{n-1})$ will describe a rooted spanning tree pointing away from node $1$ .
- $b_{j}=1$ for $n<=j<=2n-2$ .
- $a_{n},a_{n+1},...,a_{2n-2}$ will be distinct and between $2$ and $n$ .
The next $q$ lines will contain 3 integers, describing a query in the format described in the statement.
All edge weights will be between $1$ and $10^{6}$ .
输出格式
For each type 2 query, print the length of the shortest path in its own line.
输入输出样例
输入 #1
5 9 1 3 1 3 2 2 1 4 3 3 5 4 5 1 5 3 1 6 2 1 7 4 1 8 2 1 1 2 1 3 2 3 5 2 5 2 1 1 100 2 1 3 1 8 30 2 4 2 2 2 4
输出 #1
0 1 4 8 100 132 10
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted