A13979 | Longest Simple Cycle
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You have $n$ chains, the $i$ -th chain consists of $c_i$ vertices. Vertices in each chain are numbered independently from $1$ to $c_i$ along the chain. In other words, the $i$ -th chain is the undirected graph with $c_i$ vertices and $(c_i - 1)$ edges connecting the $j$ -th and the $(j + 1)$ -th vertices for each $1 \le j < c_i$ .
Now you decided to unite chains in one graph in the following way:
1. the first chain is skipped;
2. the $1$ -st vertex of the $i$ -th chain is connected by an edge with the $a_i$ -th vertex of the $(i - 1)$ -th chain;
3. the last ( $c_i$ -th) vertex of the $i$ -th chain is connected by an edge with the $b_i$ -th vertex of the $(i - 1)$ -th chain.
Picture of the first test case. Dotted lines are the edges added during uniting processCalculate the length of the longest simple cycle in the resulting graph.
A simple cycle is a chain where the first and last vertices are connected as well. If you travel along the simple cycle, each vertex of this cycle will be visited exactly once.
Now you decided to unite chains in one graph in the following way:
1. the first chain is skipped;
2. the $1$ -st vertex of the $i$ -th chain is connected by an edge with the $a_i$ -th vertex of the $(i - 1)$ -th chain;
3. the last ( $c_i$ -th) vertex of the $i$ -th chain is connected by an edge with the $b_i$ -th vertex of the $(i - 1)$ -th chain.
Picture of the first test case. Dotted lines are the edges added during uniting processCalculate the length of the longest simple cycle in the resulting graph.
A simple cycle is a chain where the first and last vertices are connected as well. If you travel along the simple cycle, each vertex of this cycle will be visited exactly once.
输入格式
The first line contains a single integer $t$ ( $1 \le t \le 1000$ ) — the number of test cases.
The first line of each test case contains the single integer $n$ ( $2 \le n \le 10^5$ ) — the number of chains you have.
The second line of each test case contains $n$ integers $c_1, c_2, \dots, c_n$ ( $2 \le c_i \le 10^9$ ) — the number of vertices in the corresponding chains.
The third line of each test case contains $n$ integers $a_1, a_2, \dots, a_n$ ( $a_1 = -1$ ; $1 \le a_i \le c_{i - 1}$ ).
The fourth line of each test case contains $n$ integers $b_1, b_2, \dots, b_n$ ( $b_1 = -1$ ; $1 \le b_i \le c_{i - 1}$ ).
Both $a_1$ and $b_1$ are equal to $-1$ , they aren't used in graph building and given just for index consistency. It's guaranteed that the sum of $n$ over all test cases doesn't exceed $10^5$ .
The first line of each test case contains the single integer $n$ ( $2 \le n \le 10^5$ ) — the number of chains you have.
The second line of each test case contains $n$ integers $c_1, c_2, \dots, c_n$ ( $2 \le c_i \le 10^9$ ) — the number of vertices in the corresponding chains.
The third line of each test case contains $n$ integers $a_1, a_2, \dots, a_n$ ( $a_1 = -1$ ; $1 \le a_i \le c_{i - 1}$ ).
The fourth line of each test case contains $n$ integers $b_1, b_2, \dots, b_n$ ( $b_1 = -1$ ; $1 \le b_i \le c_{i - 1}$ ).
Both $a_1$ and $b_1$ are equal to $-1$ , they aren't used in graph building and given just for index consistency. It's guaranteed that the sum of $n$ over all test cases doesn't exceed $10^5$ .
输出格式
For each test case, print the length of the longest simple cycle.
输入输出样例
输入 #1
3 4 3 4 3 3 -1 1 2 2 -1 2 2 3 2 5 6 -1 5 -1 1 3 3 5 2 -1 1 1 -1 3 5
输出 #1
7 11 8
In the first test case, the longest simple cycle is shown below:
We can't increase it with the first chain, since in such case it won't be simple — the vertex $2$ on the second chain will break simplicity.
We can't increase it with the first chain, since in such case it won't be simple — the vertex $2$ on the second chain will break simplicity.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted