码迷,mamicode.com
首页 > 其他好文 > 详细

CodeForces 738D Sea Battle

时间:2017-02-13 13:46:41      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:att   div   span   tor   void   struct   ret   pre   cstring   

抽屉原理。

先统计最多有$sum$个船可以放,假设打了$sum-a$枪都没打中$a$个船中的任意一个,那么再打$1$枪必中。

#pragma comment(linker, "/STACK:1024000000,1024000000")
#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
#include<vector>
#include<map>
#include<set>
#include<queue>
#include<stack>
#include<ctime>
#include<iostream>
using namespace std;
typedef long long LL;
const double pi=acos(-1.0);
void File()
{
    freopen("D:\\in.txt","r",stdin);
    freopen("D:\\out.txt","w",stdout);
}
template <class T>
inline void read(T &x)
{
    char c = getchar();
    x = 0;
    while(!isdigit(c)) c = getchar();
    while(isdigit(c))
    {
        x = x * 10 + c - 0;
        c = getchar();
    }
}

int n,a,b,k;
char s[200010];
struct X
{
    int L;
    int cnt;
}t[200010];
int sz,cnt;
int sum;

int main()
{
    cin>>n>>a>>b>>k;
    cin>>s;

    for(int i=0;s[i];)
    {
        if(s[i]==0)
        {
            int j;
            for(j=i;s[j];j++)
            {
                if(s[j]==0) continue;
                break;
            }
            j--;

            t[sz].L=i;
            t[sz].cnt=j-i+1;
            sz++;
            i=j+1;
        }
        else i++;
    }

    for(int i=0;i<sz;i++) sum=sum+t[i].cnt/b;

    int now=0;

    printf("%d\n",sum-a+1);

    for(int i=0;i<sz;i++)
    {
        for(int j=1;j<=t[i].cnt/b;j++)
        {
            printf("%d ",t[i].L+j*b);
            now++;
            if(now==sum-a+1) break;
        }
        if(now==sum-a+1) break;
    }

    return 0;
}

 

CodeForces 738D Sea Battle

标签:att   div   span   tor   void   struct   ret   pre   cstring   

原文地址:http://www.cnblogs.com/zufezzt/p/6393311.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!