Rated Contest 3 P5 - Silhouettes

View as PDF

Submit solution

Points: 10 (partial)
Time limit: 3.0s
PyPy 3 5.0s
Memory limit: 256M

Author:
Problem types

Pebbles has been worried about shapeshifting monsters in his room. At night when he is trying to sleep, he occasionally wakes up to see N 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 K equally spaced regions, numbered 1 to K 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 T 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 K 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 N spaced integers, indicating the initial and distinct positions of each of the silhouettes on the wall.

The next line will contain N spaced integers, indicating the distinct positions of each of the silhouettes on the wall after T seconds.

Each position will be between 1 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 1 valid series of events that caused the final arrangement.

Subtasks

Subtask Marks Constraints
1 20\% \(1\le N\le10,\: 1\le N \le K\le25,\:T=1\)
2 30\% \(1\le N\le10,\:1\le N \le K\le25\)
3 50\% 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 (2 seconds later) positions are

..x.x

x.x..

Within 2 seconds, both silhouettes must have moved 2 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 T=4.

The starting and ending (4 seconds later) positions are

..x.x

x.x..

Within 4 seconds, it is possible that the silhouette at position 5 moved 4 to the left, and thus, only 1 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 (6 seconds later) positions are

x..x..x.

...x..xx

Within 6 seconds, it is possible that the silhouettes at position 1 moved 6 spaces to the right, and 7 moved 1 spaces to the right.

Alternatively, it is possible that silhouettes at position 4 moved 4 spaces to the right, and 1 moved 3 spaces to the right. This would show that even with just 4 seconds, the minimum number of monsters would still be 2, while with 7 seconds, it drops to 1.

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 (3 seconds later) positions are

.x..x...x.xx..x.xxx.

x..x..x.x.x..xx...xx


Comments

There are no comments at the moment.