Pebbles has been worried about shapeshifting monsters in his room. At night when he is trying to sleep, he occasionally wakes up to see dark figures by the wall. The window illuminates the silhouettes of various things he has in his room, such as a desk or chair. He notices after closing his eyes for a few seconds that when he looks back, it appears that some of them have moved! He is convinced that there are monsters in his room, and so he would like to count the number of them that might be in his room. Unfortunately, turning on the lights seems to return everything back to normal, so he has to use another method to find out which silhouettes could be from shapeshifting monsters. In order to not alarm himself, he will try to count the minimum number of possible monsters that could be in his room.
In order to take count, he decides to write down the position of each silhouette he sees in his room when he initially turns off the light. He separates the wall in which the silhouettes are in front of into equally spaced regions, numbered
to
from left to right, and writes down the position of each silhouette as one of the regions on the wall. He then closes his eyes for
seconds, and then looks back at the wall. He then marks down the current positions of each silhouette in the same manner as before. He knows that a monster can only move to one adjacent region per second, and that it will never end up on the same region as another silhouette when observed, nor will it ever be outside of the
regions.
Help Pebbles deduce the minimum number of monsters that could have been in his room.
Input Specification
The first line will contain \(N\:(1\le N\le10^5)\) and \(T\:(1\le T\le10^9)\) separated by a space, indicating the number silhouettes and the number of seconds Pebbles closes his eyes for.
The next line will contain spaced integers, indicating the initial and distinct positions of each of the silhouettes on the wall.
The next line will contain spaced integers, indicating the distinct positions of each of the silhouettes on the wall after
seconds.
Each position will be between and \(K\:(1\le N \le K\le10^9)\) inclusive, and the positions will be sorted in increasing order.
Output Specification
Output the minimum number of silhouettes that must have been monsters. It is guaranteed that there exists at least valid series of events that caused the final arrangement.
Subtasks
Subtask | Marks | Constraints |
---|---|---|
\(1\le N\le10,\: 1\le N \le K\le25,\:T=1\) | ||
\(1\le N\le10,\:1\le N \le K\le25\) | ||
No additional constraints |
The first batch is the 5 sample cases below and are worth 0 points. You may hard-code the samples if you have a solution that only works for subtasks.
Sample Input 1
2 2
3 5
1 3
Sample Output 1
2
Explanation for Sample Output 1
Let .
represent an empty region on the wall, and x
represent a region with a silhouette.
The starting and ending ( seconds later) positions are
..x.x
x.x..
Within seconds, both silhouettes must have moved
to the left. It is not possible that either one was not a monster.
Sample Input 2
2 4
3 5
1 3
Sample Output 2
1
Explanation for Sample Output 2
This is the same as the previous example, but with .
The starting and ending ( seconds later) positions are
..x.x
x.x..
Within seconds, it is possible that the silhouette at position
moved
to the left, and thus, only
silhouette had to have been a monster.
Sample Input 3
3 6
1 4 7
4 7 8
Sample Output 3
2
Explanation for Sample Output 3
The starting and ending ( seconds later) positions are
x..x..x.
...x..xx
Within seconds, it is possible that the silhouettes at position
moved
spaces to the right, and
moved
spaces to the right.
Alternatively, it is possible that silhouettes at position moved
spaces to the right, and
moved
spaces to the right. This would show that even with just
seconds, the minimum number of monsters would still be
, while with
seconds, it drops to
.
Sample Input 4
3 6
4 7 8
1 4 7
Sample Output 4
2
Explanation for Sample Output 4
This is the same as the previous example, except with start and end locations swapped. Since the monsters could have moved right or left, output will always be identical just by switching start and end locations.
Sample Input 5
9 3
2 5 9 11 12 15 17 18 19
1 4 7 9 11 14 15 19 20
Sample Output 5
6
Explanation for Sample Output 5
The starting and ending ( seconds later) positions are
.x..x...x.xx..x.xxx.
x..x..x.x.x..xx...xx
Comments