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

22 lines
355 B
C++

#include <bits/stdc++.h>
using namespace std;
int main() {
int n, t, l = 0, q = 0, ans = 0;
cin >> n;
for (int i = 0; i < n; i++) {
cin >> t;
if (t < q) {
l = 1;
}
if (t > q && l == 1) {
l = 0;
ans++;
}
q = t;
}
cout << ans << endl;
return 0;
}