mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 14:38:48 +00:00
22 lines
355 B
C++
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;
|
||
|
}
|