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

892B. Wrath#愤怒的连环杀人事件(cin/cout的加速)

时间:2017-12-17 15:02:29      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:set   节奏   include   post   problems   输入   pos   iostream   原因   

题目出处:http://codeforces.com/problemset/problem/892/B

题目大意:一队人同时举刀捅死前面一些人后还活着几个

#include<iostream>
#define IO ios::sync_with_stdio(false);\cin.tie(0);\cout.tie(0);
using namespace std;
typedef __int64 LL;
const int maxn = 2e6+10;
int p[maxn]; //库中有max同名 
int main(){
    IO;//输入输出流加速
    int n;cin>>n;
    for(int i=0;i<n;i++) cin>>p[i];
    LL cnt=p[n-1], ans=1;
    for(int i=n-2; i>=0; i--){
        if(!cnt) ans++;
        cnt = (cnt-1)>p[i]?(cnt-1):p[i];
    } 
    cout<<ans<<endl;
    return 0;
}

本题题目解题思路并不难,但是在测试的时候多次超时,然后看了别人的代码,在此体现了cin/cout的慢节奏

解决办法就是加入两行代码

#define IO ios::sync_with_stdio(false);\cin.tie(0);\cout.tie(0);
IO;//输入输出流加速
详细原因百度都可以查到。

892B. Wrath#愤怒的连环杀人事件(cin/cout的加速)

标签:set   节奏   include   post   problems   输入   pos   iostream   原因   

原文地址:http://www.cnblogs.com/hello-OK/p/8051918.html

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