洛谷笔记 - P1567 统计天数

首先必须吐槽 Windows,咱也不知道是 TDM-GCC 的毛病还是 Windows 抽风,本地编译版本死活打不开……

就算打开了也没办法输入输出,CPU 连动都不动…… 一会就闪退了

消灭 Windows 暴政世界属于 Linux

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include<iostream>
using namespace std;
int main(){
int a,max,ans=1,temp[1000000];
cin>>a;
for(int i=1;i<=a;i++){
cin>>temp[i];
if(i>=2){
if(temp[i]>temp[i-1]){
ans++;
if(ans>max){
max=ans;
}
}else if(temp[i]<temp[i-1]){
ans=1;
}
}
}
cout<<max<<endl;
return 0;
}

欢迎加入 #archlinux-cn / #archlinux-cn @ freenode