CodeForces 567D One-Dimensional Battle Ships

来源:互联网 发布:怎样查看淘宝信誉等级 编辑:程序博客网 时间:2024/05/01 23:55

题意:有一个一维线段,上面摆了k个船,每个船的长度都为a,然后有一个人来打,问你第几次攻击 就可以使得这个船无论怎么摆都不合法了

思路:一个区间合并的题,对于每一次的攻击,都只会影响到这个点所在区间,然后我们更新一下新出现的两个区间里面能摆多少个船就好了


#include<bits/stdc++.h>using namespace std;set<int>s;map<int,int>vis;int main(){    int n,k,a;scanf("%d%d%d",&n,&k,&a);int ans = (n+1)/(a+1);int m;scanf("%d",&m);s.insert(0);s.insert(n+1);for (int i = 0;i<m;i++){int x;scanf("%d",&x);if (vis[x])continue;vis[x]=1;int c = *s.lower_bound(x);int d = *--s.lower_bound(x);s.insert(x);ans-=(c-d)/(a+1);ans+=(c-x)/(a+1)+(x-d)/(a+1);if (ans <k){printf("%d\n",i+1);return 0;}}printf("-1\n");}


Description

Alice and Bob love playing one-dimensional battle ships. They play on the field in the form of a line consisting of n square cells (that is, on a 1 × n table).

At the beginning of the game Alice puts k ships on the field without telling their positions to Bob. Each ship looks as a 1 × a rectangle (that is, it occupies a sequence of a consecutive squares of the field). The ships cannot intersect and even touch each other.

After that Bob makes a sequence of "shots". He names cells of the field and Alice either says that the cell is empty ("miss"), or that the cell belongs to some ship ("hit").

But here's the problem! Alice like to cheat. May be that is why she responds to each Bob's move with a "miss".

Help Bob catch Alice cheating — find Bob's first move, such that after it you can be sure that Alice cheated.

Input

The first line of the input contains three integers: nk and a (1 ≤ n, k, a ≤ 2·105) — the size of the field, the number of the ships and the size of each ship. It is guaranteed that the nk and a are such that you can put k ships of size a on the field, so that no two ships intersect or touch each other.

The second line contains integer m (1 ≤ m ≤ n) — the number of Bob's moves.

The third line contains m distinct integers x1, x2, ..., xm, where xi is the number of the cell where Bob made the i-th shot. The cells are numbered from left to right from 1 to n.

Output

Print a single integer — the number of such Bob's first move, after which you can be sure that Alice lied. Bob's moves are numbered from 1 to m in the order the were made. If the sought move doesn't exist, then print "-1".

Sample Input

Input
11 3 354 8 6 1 11
Output
3
Input
5 1 321 5
Output
-1
Input
5 1 313
Output
1



0 0
原创粉丝点击