This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
#define el '\n'
using namespace std;
int32_t main (){
ios_base::sync_with_stdio(0);
cin.tie(0);
int n , m;
cin >> n >> m;
vector<int> h(n + 5);
for (int i = 1 ; i <= n ; i++) cin >> h[i];
while (m--){
int type , pos , val;
cin >> type >> pos;
if (type == 1){
cin >> val;
h[pos] = val;
}
else {
int cnt = 0;
for (int i = 1 ; i < n ; i++){
if (h[i] < pos && h[i + 1] > pos) cnt++;
else if (h[i] > pos && h[i + 1] < pos) cnt++;
}
cout << cnt << el;
}
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |