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

CodeForces 427B Prison Transfer

时间:2016-07-24 14:57:53      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:

题意:给定 n, t, c 和 n 个数,问你在这 n 个数中有多少连续的 c 个数,并且这个 c 个数不大于 t。

析:很简单么,是滑动窗口,从第一个开始遍历,如果找到 c 个数,那么让区间前端点加1,如果找不到,那么就区间前端等于后区间+1.

代码如下:

 #include <bits/stdc++.h>

using namespace std;
typedef long long LL;
const int maxn = 2e5 + 15;
const int INF = 0x3f3f3f3f;
int a[maxn];

int main(){
    int n, t, c;
    while(cin >> n >> t >> c){
        for(int i = 0; i < n; ++i)  scanf("%d", &a[i]);
        int s = 0, e = 0;
        int cnt = 0;
        int ans = 0;
        while(e < n){
            while(a[e] <= t && cnt < c && e < n)  ++cnt, ++e;

            if(cnt == c){
                --cnt;
                ++ans;
            }
            else{
                ++e;
                cnt = 0;
            }
        }
        cout << ans << endl;
    }
    return 0;
}

 

CodeForces 427B Prison Transfer

标签:

原文地址:http://www.cnblogs.com/dwtfukgv/p/5700707.html

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