0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 00:45:26 +00:00
OI-codes/Luogu/P1567/P1567.cpp

25 lines
439 B
C++
Raw Normal View History

2020-11-15 11:29:24 +00:00
#include <bits/stdc++.h>
using namespace std;
int n, ans, a[1000005], f[1000005];
int main() {
cin >> n;
for (int i = 0; i < n; i++) {
cin >> a[i];
}
for (int i = 1; i < n; i++) {
if (a[i] > a[i - 1]) {
f[i] = f[i - 1] + 1;
2021-11-19 09:01:13 +00:00
} else {
2020-11-15 11:29:24 +00:00
f[i] = 0;
}
}
for (int i = 1; i < n; i++) {
ans = max(ans, f[i]);
}
cout << ++ans << endl;
return 0;
}