A12605 | Nauuo and Cards
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Nauuo is a girl who loves playing cards.
One day she was playing cards but found that the cards were mixed with some empty ones.
There are $n$ cards numbered from $1$ to $n$ , and they were mixed with another $n$ empty cards. She piled up the $2n$ cards and drew $n$ of them. The $n$ cards in Nauuo's hands are given. The remaining $n$ cards in the pile are also given in the order from top to bottom.
In one operation she can choose a card in her hands and play it — put it at the bottom of the pile, then draw the top card from the pile.
Nauuo wants to make the $n$ numbered cards piled up in increasing order (the $i$ -th card in the pile from top to bottom is the card $i$ ) as quickly as possible. Can you tell her the minimum number of operations?
One day she was playing cards but found that the cards were mixed with some empty ones.
There are $n$ cards numbered from $1$ to $n$ , and they were mixed with another $n$ empty cards. She piled up the $2n$ cards and drew $n$ of them. The $n$ cards in Nauuo's hands are given. The remaining $n$ cards in the pile are also given in the order from top to bottom.
In one operation she can choose a card in her hands and play it — put it at the bottom of the pile, then draw the top card from the pile.
Nauuo wants to make the $n$ numbered cards piled up in increasing order (the $i$ -th card in the pile from top to bottom is the card $i$ ) as quickly as possible. Can you tell her the minimum number of operations?
输入格式
The first line contains a single integer $n$ ( $1\le n\le 2\cdot 10^5$ ) — the number of numbered cards.
The second line contains $n$ integers $a_1,a_2,\ldots,a_n$ ( $0\le a_i\le n$ ) — the initial cards in Nauuo's hands. $0$ represents an empty card.
The third line contains $n$ integers $b_1,b_2,\ldots,b_n$ ( $0\le b_i\le n$ ) — the initial cards in the pile, given in order from top to bottom. $0$ represents an empty card.
It is guaranteed that each number from $1$ to $n$ appears exactly once, either in $a_{1..n}$ or $b_{1..n}$ .
The second line contains $n$ integers $a_1,a_2,\ldots,a_n$ ( $0\le a_i\le n$ ) — the initial cards in Nauuo's hands. $0$ represents an empty card.
The third line contains $n$ integers $b_1,b_2,\ldots,b_n$ ( $0\le b_i\le n$ ) — the initial cards in the pile, given in order from top to bottom. $0$ represents an empty card.
It is guaranteed that each number from $1$ to $n$ appears exactly once, either in $a_{1..n}$ or $b_{1..n}$ .
输出格式
The output contains a single integer — the minimum number of operations to make the $n$ numbered cards piled up in increasing order.
输入输出样例
输入 #1
3 0 2 0 3 0 1
输出 #1
2
输入 #2
3 0 2 0 1 0 3
输出 #2
4
输入 #3
11 0 0 0 5 0 0 0 4 0 0 11 9 2 6 0 8 1 7 0 3 0 10
输出 #3
18
Example 1
We can play the card $2$ and draw the card $3$ in the first operation. After that, we have $[0,3,0]$ in hands and the cards in the pile are $[0,1,2]$ from top to bottom.
Then, we play the card $3$ in the second operation. The cards in the pile are $[1,2,3]$ , in which the cards are piled up in increasing order.
Example 2
Play an empty card and draw the card $1$ , then play $1$ , $2$ , $3$ in order.
We can play the card $2$ and draw the card $3$ in the first operation. After that, we have $[0,3,0]$ in hands and the cards in the pile are $[0,1,2]$ from top to bottom.
Then, we play the card $3$ in the second operation. The cards in the pile are $[1,2,3]$ , in which the cards are piled up in increasing order.
Example 2
Play an empty card and draw the card $1$ , then play $1$ , $2$ , $3$ in order.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted