답안 #570714

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
570714 2022-05-31T06:40:05 Z saarang123 Simple game (IZhO17_game) C++17
0 / 100
0 ms 212 KB
#include <bits/stdc++.h>
using namespace std;
using ll = long long;

const int MXN = 100 * 1000 + 3;
int bit[MXN * 10], a[MXN], n, q;

void upd(int x, int v = 1) {
	for(; x <= n; x += (x & -x))
		bit[x] += v;
}

void upd(int l, int r, int v) {
	upd(l, v);
	upd(r + 1, -v);
}

int qry(int x) {
	int res = 0;
	for(; x > 0; x -= (x & -x))
		res += bit[x];
	return res;
}

signed main() {
    std::ios::sync_with_stdio(0);
    std::cin.tie(0);
    cin >> n >> q;
    for(int i = 1; i <= n; i++) {
    	cin >> a[i];
    	if(i > 1) {
    		int x = min(a[i - 1], a[i]);
    		int y = max(a[i - 1], a[i]);
    		upd(x, y, 1);
    	}
    }
    while(q--) {
    	int tp; cin >> tp;
    	if(tp == 1) {
    		// int i, val;
    		// cin >> i >> val;
    		// if(i > 1) {
	    	// 	int x = min(a[i - 1], a[i]);
	    	// 	int y = max(a[i - 1], a[i]);
	    	// 	upd(x, y, -1);
    		// }
    		// if(i < n) {
    		// 	int x = min(a[i + 1], a[i]);
	    	// 	int y = max(a[i + 1], a[i]);
	    	// 	upd(x, y, -1);
    		// }
    		// a[i] = val;
    		// if(i > 1) {
	    	// 	int x = min(a[i - 1], a[i]);
	    	// 	int y = max(a[i - 1], a[i]);
	    	// 	upd(x, y, 1);
    		// }
    		// if(i < n) {
    		// 	int x = min(a[i + 1], a[i]);
	    	// 	int y = max(a[i + 1], a[i]);
	    	// 	upd(x, y, 1);
    		// }
    	} else {
    		int h; cin >> h;
    		cout << qry(h) << '\n';
    	}
    }
    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -