A12699 | Tokitsukaze and Discard Items
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Recently, Tokitsukaze found an interesting game. Tokitsukaze had $n$ items at the beginning of this game. However, she thought there were too many items, so now she wants to discard $m$ ( $1 \le m \le n$ ) special items of them.
These $n$ items are marked with indices from $1$ to $n$ . In the beginning, the item with index $i$ is placed on the $i$ -th position. Items are divided into several pages orderly, such that each page contains exactly $k$ positions and the last positions on the last page may be left empty.
Tokitsukaze would do the following operation: focus on the first special page that contains at least one special item, and at one time, Tokitsukaze would discard all special items on this page. After an item is discarded or moved, its old position would be empty, and then the item below it, if exists, would move up to this empty position. The movement may bring many items forward and even into previous pages, so Tokitsukaze would keep waiting until all the items stop moving, and then do the operation (i.e. check the special page and discard the special items) repeatedly until there is no item need to be discarded.
Consider the first example from the statement: $n=10$ , $m=4$ , $k=5$ , $p=[3, 5, 7, 10]$ . The are two pages. Initially, the first page is special (since it is the first page containing a special item). So Tokitsukaze discards the special items with indices $3$ and $5$ . After, the first page remains to be special. It contains $[1, 2, 4, 6, 7]$ , Tokitsukaze discards the special item with index $7$ . After, the second page is special (since it is the first page containing a special item). It contains $[9, 10]$ , Tokitsukaze discards the special item with index $10$ .Tokitsukaze wants to know the number of operations she would do in total.
These $n$ items are marked with indices from $1$ to $n$ . In the beginning, the item with index $i$ is placed on the $i$ -th position. Items are divided into several pages orderly, such that each page contains exactly $k$ positions and the last positions on the last page may be left empty.
Tokitsukaze would do the following operation: focus on the first special page that contains at least one special item, and at one time, Tokitsukaze would discard all special items on this page. After an item is discarded or moved, its old position would be empty, and then the item below it, if exists, would move up to this empty position. The movement may bring many items forward and even into previous pages, so Tokitsukaze would keep waiting until all the items stop moving, and then do the operation (i.e. check the special page and discard the special items) repeatedly until there is no item need to be discarded.
Consider the first example from the statement: $n=10$ , $m=4$ , $k=5$ , $p=[3, 5, 7, 10]$ . The are two pages. Initially, the first page is special (since it is the first page containing a special item). So Tokitsukaze discards the special items with indices $3$ and $5$ . After, the first page remains to be special. It contains $[1, 2, 4, 6, 7]$ , Tokitsukaze discards the special item with index $7$ . After, the second page is special (since it is the first page containing a special item). It contains $[9, 10]$ , Tokitsukaze discards the special item with index $10$ .Tokitsukaze wants to know the number of operations she would do in total.
输入格式
The first line contains three integers $n$ , $m$ and $k$ ( $1 \le n \le 10^{18}$ , $1 \le m \le 10^5$ , $1 \le m, k \le n$ ) — the number of items, the number of special items to be discarded and the number of positions in each page.
The second line contains $m$ distinct integers $p_1, p_2, \ldots, p_m$ ( $1 \le p_1 < p_2 < \ldots < p_m \le n$ ) — the indices of special items which should be discarded.
The second line contains $m$ distinct integers $p_1, p_2, \ldots, p_m$ ( $1 \le p_1 < p_2 < \ldots < p_m \le n$ ) — the indices of special items which should be discarded.
输出格式
Print a single integer — the number of operations that Tokitsukaze would do in total.
输入输出样例
输入 #1
10 4 5 3 5 7 10
输出 #1
3
输入 #2
13 4 5 7 8 9 10
输出 #2
1
For the first example:
- In the first operation, Tokitsukaze would focus on the first page $[1, 2, 3, 4, 5]$ and discard items with indices $3$ and $5$ ;
- In the second operation, Tokitsukaze would focus on the first page $[1, 2, 4, 6, 7]$ and discard item with index $7$ ;
- In the third operation, Tokitsukaze would focus on the second page $[9, 10]$ and discard item with index $10$ .
For the second example, Tokitsukaze would focus on the second page $[6, 7, 8, 9, 10]$ and discard all special items at once.
- In the first operation, Tokitsukaze would focus on the first page $[1, 2, 3, 4, 5]$ and discard items with indices $3$ and $5$ ;
- In the second operation, Tokitsukaze would focus on the first page $[1, 2, 4, 6, 7]$ and discard item with index $7$ ;
- In the third operation, Tokitsukaze would focus on the second page $[9, 10]$ and discard item with index $10$ .
For the second example, Tokitsukaze would focus on the second page $[6, 7, 8, 9, 10]$ and discard all special items at once.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted