이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define pb push_back
#define mp make_pair
#define f first
#define s second
#define ll long long
#define ld long double
#define all(_v) _v.begin(), _v.end()
#define sz(_v) (int)_v.size()
#define pii pair <int, int>
#define pll pair <ll, ll>
#define veci vector <int>
#define vecll vector <ll>
const int dx[4] = {1, -1, 0, 0};
const int dy[4] = {0, 0, -1, 1};
const double PI = 3.1415926535897932384626433832795;
const double eps = 1e-9;
const int MOD1 = 1e9 + 7;
const int MOD2 = 998244353;
const int MAXN = 1e6 + 10;
int n, m;
int t[MAXN];
int h[MAXN];
void upd(int r, int val) {
for(; r <= 1e6; r += r & -r) t[r] += val;
}
int get(int r) {
int res = 0;
for(; r > 0; r -= r & -r) res += t[r];
return res;
}
void solve() {
cin >> n >> m;
for(int i = 1; i <= n; ++i) {
cin >> h[i];
if(i > 1) upd(min(h[i], h[i - 1]), 1), upd(max(h[i], h[i - 1]) + 1, -1);
}
for(int i = 1; i <= m; ++i) {
int t, x;
cin >> t >> x;
if(t == 1) {
int v;
cin >> v;
if(x > 1) {
upd(min(h[x], h[x - 1]), -1);
upd(max(h[x], h[x - 1]) + 1, 1);
}
if(x < n) {
upd(min(h[x], h[x + 1]), -1);
upd(max(h[x], h[x + 1]) + 1, 1);
}
h[x] = v;
if(x > 1) {
upd(min(h[x], h[x - 1]), 1);
upd(max(h[x], h[x - 1]) + 1, -1);
}
if(x < n) {
upd(min(h[x], h[x + 1]), 1);
upd(max(h[x], h[x + 1]) + 1, -1);
}
} else cout << get(x) << '\n';
}
}
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int CNT_TESTS = 1;
///cin >> CNT_TESTS;
for(int NUMCASE = 1; NUMCASE <= CNT_TESTS; ++NUMCASE) {
solve();
if(NUMCASE != CNT_TESTS) cout << '\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... |