首页 > 其他 > 详细

Codeforces Round #244 (Div. 2) B. Prison Transfer

时间:2014-05-04 12:14:18      阅读:450      评论:0      收藏:0      [点我收藏+]

题目是选出c个连续的囚犯,而且囚犯的级别不能大于t

bubuko.com,布布扣
#include <iostream>
using namespace std;
int main(){
    int n,t,c;
    cin >> n >> t >> c;
    int a,cnt = 0, res =0;;
    for(int i = 0 ; i < n ; ++ i) {
        cin >> a;
        if(a > t ){
            if(cnt > c-1) res+=cnt-c+1;
            cnt = 0;
        }else cnt++;
    }
    if(cnt > c-1) res+=cnt-c+1;
    cout<<res<<endl;
}
bubuko.com,布布扣

 

Codeforces Round #244 (Div. 2) B. Prison Transfer,布布扣,bubuko.com

Codeforces Round #244 (Div. 2) B. Prison Transfer

原文:http://www.cnblogs.com/xiongqiangcs/p/3705464.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!