結果

問題 No.1441 MErGe
ユーザー uzzyuzzy
提出日時 2021-03-27 01:02:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 460 ms / 1,000 ms
コード長 1,753 bytes
コンパイル時間 2,772 ms
コンパイル使用メモリ 194,240 KB
実行使用メモリ 16,000 KB
最終ジャッジ日時 2024-05-06 18:55:38
合計ジャッジ時間 12,056 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 5 ms
6,940 KB
testcase_04 AC 5 ms
6,944 KB
testcase_05 AC 9 ms
6,940 KB
testcase_06 AC 9 ms
6,944 KB
testcase_07 AC 9 ms
6,940 KB
testcase_08 AC 73 ms
7,552 KB
testcase_09 AC 71 ms
7,424 KB
testcase_10 AC 118 ms
7,296 KB
testcase_11 AC 110 ms
6,944 KB
testcase_12 AC 126 ms
7,424 KB
testcase_13 AC 401 ms
15,360 KB
testcase_14 AC 413 ms
15,488 KB
testcase_15 AC 403 ms
14,848 KB
testcase_16 AC 389 ms
15,360 KB
testcase_17 AC 376 ms
14,976 KB
testcase_18 AC 223 ms
12,800 KB
testcase_19 AC 263 ms
14,208 KB
testcase_20 AC 200 ms
12,416 KB
testcase_21 AC 181 ms
11,264 KB
testcase_22 AC 244 ms
10,752 KB
testcase_23 AC 450 ms
16,000 KB
testcase_24 AC 441 ms
15,852 KB
testcase_25 AC 447 ms
15,872 KB
testcase_26 AC 450 ms
15,872 KB
testcase_27 AC 460 ms
16,000 KB
testcase_28 AC 243 ms
15,872 KB
testcase_29 AC 245 ms
16,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize ("O2")
#pragma GCC target ("avx2")
#include<bits/stdc++.h>
//#include<atcoder/all>
//using namespace atcoder;

using namespace std;
typedef long long ll;
#define rep(i, n) for(int i = 0; i < (n); i++)
#define rep1(i, n) for(int i = 1; i <= (n); i++)
#define co(x) cout << (x) << "\n"
#define cosp(x) cout << (x) << " "
#define ce(x) cerr << (x) << "\n"
#define cesp(x) cerr << (x) << " "
#define pb push_back
#define mp make_pair
#define chmin(x, y) x = min(x, y)
#define chmax(x, y) x = max(x, y)
#define Would
#define you
#define please

const int bm = 200201;
int BIT[bm];
void add(int A, int B) {
	if (A == 0) return;
	while (A <= bm) {
		BIT[A] += B;
		A += A & -A;
	}
}
int query(int A) {
	int ret = 0;
	while (A > 0) {
		ret += BIT[A];
		A -= A & -A;
	}
	return ret;
}

int main() {
	cin.tie(0);
	ios::sync_with_stdio(false);


	int N, Q;
	cin >> N >> Q;
	int A[200200];
	ll S[200200] = {};
	rep1(i, N) cin >> A[i];
	rep(i, N) S[i + 1] = S[i] + A[i + 1];

	rep1(i, N) {
		add(i, 1);
	}

	set<int> ST;
	rep1(i, N) ST.insert(i);

	int kazu = N;
	rep(q, Q) {
		int t, l, r;
		cin >> t >> l >> r;

		int L, R;
		int k1 = 0, k2 = N + 1;
		while (k1 + 1 < k2) {
			int k = (k1 + k2) / 2;
			int tmp = query(k);
			if (tmp >= l) k2 = k;
			else k1 = k;
		}
		L = k2;
		k1 = 0;
		k2 = N + 1;
		while (k1 + 1 < k2) {
			int k = (k1 + k2) / 2;
			int tmp = query(k);
			if (tmp > r) k2 = k;
			else k1 = k;
		}
		R = k2;
		

		if (t == 1) {
			auto itr1 = ST.lower_bound(L);
			auto itr2 = ST.lower_bound(R);
			vector<int> are;
			itr1++;
			while (itr1 != itr2) {
				add(*itr1, -1);
				are.pb(*itr1);
				itr1++;
			}
			for (auto t : are) ST.erase(t);
		}
		else {
			co(S[R - 1] - S[L - 1]);
		}
	}

	Would you please return 0;
}
0