#P8188. [USACO22FEB] Email Filing S
[USACO22FEB] Email Filing S
题目描述
Farmer John has fallen behind on organizing his inbox. The way his screen is organized, there is a vertical list of folders on the left side of the screen and a vertical list of emails on the right side of the screen. There are total folders, numbered . His inbox currently contains emails numbered ; the th email needs to be filed into folder .
FJ's screen is rather small, so he can only view folders and emails at once. Initially, his screen starts out displaying folders on the left and emails on the right. To access other folders and emails, he needs to scroll through these respective lists. For example, if he scrolls down one position in the list of folders, his screen will display folders , and then scrolling down one position further it will display folders . When FJ drags an email into a folder, the email disappears from the email list, and the emails after the one that disappeared shift up by one position. For example, if emails are currently displayed and FJ drags email 3 into its appropriate folder, the email list will now show emails . FJ can only drag an email into the folder to which it needs to be filled.
Unfortunately, the scroll wheel on FJ's mouse is broken, and he can only scroll downwards, not upwards. The only way he can achieve some semblance of upward scrolling is if he is viewing the last set of emails in his email list, and he files one of these. In this case, the email list will again show the last emails that haven't yet been filed, effectively scrolling the top email up by one. If there are fewer than emails remaining, then all of them will be displayed.
Please help FJ determine if it is possible to file all of his emails.
输入格式
The first line of input contains , the number of subcases in this input, all of which must be solved correctly to solve the input case. The subcases then follow. For each subcase, the first line of input contains and . The next line contains .
It is guaranteed that the sum of over all subcases does not exceed , and that the sum of over all subcases does not exceed .
输出格式
Output lines, each one either containing either YES or NO, specifying whether FJ can successfully file all his emails in each of the subcases.
题目大意
题目描述
Farmer John 在整理他的收件箱时落后了。他的屏幕布局如下:屏幕左侧是文件夹的垂直列表,右侧是邮件的垂直列表。总共有 个文件夹,编号为 ()。他的收件箱目前包含 封邮件,编号为 ();第 封邮件需要归档到文件夹 ()。
FJ 的屏幕很小,因此他一次只能查看 个文件夹和 封邮件()。初始时,他的屏幕显示左侧的文件夹 和右侧的邮件 。为了访问其他文件夹和邮件,他需要滚动这些列表。例如,如果他在文件夹列表中向下滚动一个位置,屏幕将显示文件夹 ,再向下滚动一个位置则显示文件夹 。当 FJ 将一封邮件拖入文件夹时,该邮件会从邮件列表中消失,其后的邮件会向前移动一个位置。例如,如果当前显示的邮件是 ,而 FJ 将邮件 拖入其对应的文件夹,邮件列表将显示 。FJ 只能将邮件拖入其需要归档的文件夹。
不幸的是,FJ 的鼠标滚轮坏了,他只能向下滚动,不能向上滚动。唯一能实现类似向上滚动的效果是,当他查看邮件列表的最后 封邮件时,如果他归档了其中一封邮件,邮件列表将再次显示尚未归档的最后 封邮件,从而将最上面的邮件向上滚动一个位置。如果剩余的邮件少于 封,则显示所有剩余的邮件。
请帮助 FJ 判断是否能够归档所有邮件。
输入格式
输入的第一行包含 (),表示输入中的子用例数量,所有子用例都必须正确解决才能解决整个输入用例。接下来的 行是每个子用例的输入。对于每个子用例,第一行包含 、 和 。第二行包含 。
保证所有子用例的 之和不超过 ,所有子用例的 之和不超过 。
输出格式
输出 行,每行包含 YES
或 NO
,表示 FJ 是否能够成功归档所有邮件。
数据范围
- 在输入 2-10 中,所有子用例的 之和不超过 。
- 在输入 11-12 中,没有额外限制。
6
5 5 1
1 2 3 4 5
5 5 1
1 2 3 5 4
5 5 1
1 2 4 5 3
5 5 2
1 2 4 5 3
3 10 2
1 3 2 1 3 2 1 3 2 1
3 10 1
1 3 2 1 3 2 1 3 2 1
YES
YES
NO
YES
YES
NO
提示
【数据范围】
- In inputs 2-10, the sum of over all subcases does not exceed .
- In inputs 11-12, no additional constraints.