codeforces 738D
Posted _LinesYao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了codeforces 738D相关的知识,希望对你有一定的参考价值。
题意:一行1*n的格子放船只,船数为a,船的长度为b,每格为0或1,1表示该格并不是船只的一部分,找出最少的格子数使得射击这些格子至少能打中一艘船。
思路:船的长度为b,即每段连续的长度为b的0的串都可以放下一只船,射击点为最后一个格子时最优,找出所有的可以放船的位置res个,选择其中的res-a+1个位置。
#include<bits/stdc++.h> using namespace std; char str[200005]; int op[200005]={0}; int main() { int n,a,b,k,cnt=0,tmp,l,t=0; scanf("%d%d%d%d%s",&n,&a,&b,&k,str);for(int i=0;i<n;++i) { if(str[i]==‘0‘) ++t; if(str[i]==‘1‘) t=0; if(t==b) { op[cnt++]=i+1; t=0; } } cnt-=a-1; printf("%d\n",cnt); for(int i=0;i<cnt;++i) { printf("%d%c",op[i],(i==cnt-1)?‘\n‘:‘ ‘); } return 0; }
以上是关于codeforces 738D的主要内容,如果未能解决你的问题,请参考以下文章
[Codeforces Round #522 (Div. 2, based on Technocup 2019 Elimination Round 3)][C. Playing Piano](代码片段
Codeforces 86C Genetic engineering(AC自动机+DP)
CodeForces 1005D Polycarp and Div 3(思维贪心dp)