Codeforces 645C 2분
5040 단어 codeforces
Farmer John wants to book a set of k + 1 currently unoccupied rooms for him and his cows. He wants his cows to stay as safe as possible, so he wishes to minimize the maximum distance from his room to the room of his cow. The distance between rooms i and j is defined as |j - i|. Help Farmer John protect his cows by calculating this minimum possible distance. Input
The first line of the input contains two integers n and k (1 ≤ k < n ≤ 100 000) — the number of rooms in the hotel and the number of cows travelling with Farmer John.
The second line contains a string of length n describing the rooms. The i-th character of the string will be ‘0’ if the i-th room is free, and ‘1’ if the i-th room is occupied. It is guaranteed that at least k + 1 characters of this string are ‘0’, so there exists at least one possible choice of k + 1 rooms for Farmer John and his cows to stay in. Output
Print the minimum possible distance between Farmer John’s room and his farthest cow. Examples Input
7 2 0100100
Output
2
Input
5 1 01010
Output
2
Input
3 2 000
Output
1
Note
In the first sample, Farmer John can book room 3 for himself, and rooms 1 and 4 for his cows. The distance to the farthest cow is 2. Note that it is impossible to make this distance 1, as there is no block of three consecutive unoccupied rooms.
In the second sample, Farmer John can book room 1 for himself and room 3 for his single cow. The distance between him and his cow is 2.
In the third sample, Farmer John books all three available rooms, taking the middle room for himself so that both cows are next to him. His distance from the farthest cow is 1. 제목: 어떤 사람이 k개의 암소를 데리고 집을 차리러 갔는데 0의 방만 살 수 있었다. 이 사람이 사는 방과 가장 먼 소의 거리가 가장 작고 가장 작은 거리를 찾아내라고 요구했다.분석: 앞의 i개의 방이 몇 개의 빈방이 있는지 접두사와 구해낸다.그리고 k+1개의 빈 방을 찾아야 합니다. k+1개를 찾아내면 이 사람은 당연히 중간에서 사는 것이 가장 좋지만 중간에 1이 될 수 있으니 판단해야 합니다.
#include<bits/stdc++.h>
using namespace std;
const int N=1e5+2;
typedef long long ll;
int n,m;
int a[N];
char s[N];
int main()
{
//freopen("f.txt","r",stdin);
cin>>n>>m;
scanf("%s",s);
a[0]=0;
for(int i=1;i<=n;i++){
if(s[i-1]=='0')a[i]=a[i-1]+1;
else a[i]=a[i-1];
}
int ans=n;
for(int i=1;i<=n;i++){
if(s[i-1]=='0'){
int *p=lower_bound(a+i,a+1+n,a[i]+m);
if(*p==0)break;
int k=p-(a+i);
int t=k/2+i;
int tt=t;
while(s[tt-1]!='0')tt++;
ans=min(ans,max(tt-i,i+k-tt));
tt=t;
while(s[tt-1]!='0')tt--;
ans=min(ans,max(tt-i,i+k-tt));
}
}
cout<<ans<<endl;
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Codeforces Round #715 Div. 2C The Sports Festival: 구간 DP전형구간 DP의 초전형. 이하, 0-indexed. 입력을 정렬하여 어디서나 시작하고 최적으로 좌우로 계속 유지하면 좋다는 것을 알 수 있습니다. {2000})$의 주문이 된다. 우선, 입력을 소트하여 n개의 요소를 $...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.