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>
using namespace std;
signed main() {
ios::sync_with_stdio(0);
cin.tie(0);
int n, m;
cin >> n >> m;
int h[n];
for (int i = 0; i < n; i++) {
cin >> h[i];
}
for (int test = m; test--;) {
int x;
cin >> x;
if (x == 1) {
int pos, val;
cin >> pos >> val;
h[pos - 1] = val;
} else {
int H;
cin >> H;
int ans = 0;
for (int i = 0; i < n; i++) {
if (h[i] <= H) ans++;
}
cout << ans << '\n';
}
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |