日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

Codeforces Round #Pi (Div. 2) D. One-Dimensional Battle Ships set区间分解

發(fā)布時(shí)間:2025/4/16 编程问答 42 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Codeforces Round #Pi (Div. 2) D. One-Dimensional Battle Ships set区间分解 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

D. One-Dimensional Battle Ships
Time Limit: 20 Sec

Memory Limit: 256 MB

題目連接

http://codeforces.com/contest/567/problem/D

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:?n,?k?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?n,?k?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 from1?to?m?in the order the were made. If the sought move doesn't exist, then print "-1".

Sample Input

11 3 3
5
4 8 6 1 11

Sample Output

3

HINT

?

題意

有一個(gè)一維線段,上面擺了k個(gè)船,每個(gè)船的長(zhǎng)度都為a,然后有一個(gè)人來打,問你第幾次攻擊 就可以使得這個(gè)船無論怎么擺都不合法了

題解

一個(gè)區(qū)間合并的題,對(duì)于每一次的攻擊,都只會(huì)影響到這個(gè)點(diǎn)所在區(qū)間,然后我們更新一下新出現(xiàn)的兩個(gè)區(qū)間里面能擺多少個(gè)船就好了

做法很多,可以set,也可以線段樹,也可以離線做一下

代碼

#include <cstdio> #include <cmath> #include <cstring> #include <ctime> #include <iostream> #include <algorithm> #include <set> #include <vector> #include <sstream> #include <queue> #include <typeinfo> #include <fstream> #include <map> #include <stack> typedef long long ll; using namespace std; //freopen("D.in","r",stdin); //freopen("D.out","w",stdout); #define sspeed ios_base::sync_with_stdio(0);cin.tie(0) #define test freopen("test.txt","r",stdin) #define maxn 2000001 #define mod 1000000007 #define eps 1e-9 const int inf=0x3f3f3f3f; const ll infll = 0x3f3f3f3f3f3f3f3fLL; inline ll read() {ll x=0,f=1;char ch=getchar();while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();}while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();}return x*f; } //**************************************************************************************set<int> S; map<int,int> vis; int main() {int n=read(),k=read(),a=read();int ans=(n+1)/(a+1);int kiss=read();S.insert(0);S.insert(n+1);for(int i=0;i<kiss;i++){int x=read();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;}}cout<<"-1"<<endl; }

?

轉(zhuǎn)載于:https://www.cnblogs.com/qscqesze/p/4706305.html

總結(jié)

以上是生活随笔為你收集整理的Codeforces Round #Pi (Div. 2) D. One-Dimensional Battle Ships set区间分解的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。