結果

問題 No.230 Splarraay スプラレェーイ
ユーザー pekempeypekempey
提出日時 2017-01-04 19:21:59
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,171 bytes
コンパイル時間 3,354 ms
コンパイル使用メモリ 190,392 KB
実行使用メモリ 5,632 KB
最終ジャッジ日時 2024-05-10 00:34:35
合計ジャッジ時間 4,523 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 25 ms
5,376 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize ("O3")
#pragma GCC target ("avx")
#include <bits/stdc++.h>
using namespace std;
// #define getchar getchar_unlocked

int in() {
	int n;
	int c;
	while ((c = getchar()) < '0') if (c == EOF) return -1;
	n = c - '0';
	while ((c = getchar()) >= '0') n = n * 10 + c - '0';
	return n;
}

struct RSQ {
	// (k level decomposition)
	static const int L = 4;
	static const int S = 18;

	struct Tuple {
		int sum = 0;
		int lazy = -1;
	};

	Tuple dat[L][S * S * S * S];

	void setLazy(int h, int k, int s, int v) {
		dat[h][k].lazy = v;
		dat[h][k].sum = v * s;
	}

	void push(int k) {
		for (int i = 0; i < L - 1; i++) {
			int s = 1;
			for (int j = 0; j < L - i - 1; j++) {
				s *= S;
			}
			int b = k / s;
			if (dat[i][b].lazy != -1) {
				for (int j = b * S; j < b * S + S; j++) {
					setLazy(i + 1, j, s / S, dat[i][b].lazy);
				}
			}
		}
	}

	void fix(int k) {
		int b = k / S;
		for (int i = L - 2; i >= 0; i--) {
			if (dat[i][b].lazy == -1) {
				dat[i][b].sum = 0;
				for (int j = b * S; j < b * S + S; j++) {
					dat[i][b].sum += dat[i + 1][j].sum;
				}
			}
			b /= S;
		}
	}

	void fill(int l, int r, int k) {
		int ll = l;
		int rr = r - 1;
		push(l);
		push(r - 1);
		int s = 1;
		for (int i = L - 1; i >= 0; i--) {
			while (l < r && l % S != 0) setLazy(i, l++, s, k);
			while (l < r && r % S != 0) setLazy(i, --r, s, k);
			l /= S;
			r /= S;
			s *= S;
		}
		fix(ll);
		fix(rr);
	}

	int query(int l, int r) {
		push(l);
		push(r - 1);
		int ret = 0;
		for (int i = L - 1; i >= 0; i--) {
			while (l < r && l % S != 0) ret += dat[i][l++].sum;
			while (l < r && r % S != 0) ret += dat[i][--r].sum;
			l /= S;
			r /= S;
		}
		return ret;
	}
};

RSQ rsq[2];

int main() {
	int n = in();
	int q = in();

	long long scoreA = 0;
	long long scoreB = 0;
	while (q--) {
		int x = in() - 1;
		int l = in();
		int r = in() + 1;
		if (x == -1) {
			int a = rsq[0].query(l, r);
			int b = rsq[1].query(l, r);
			if (a > b) scoreA += a;
			if (a < b) scoreB += b;
		} else {
			rsq[x ^ 0].fill(l, r, 1);
			rsq[x ^ 1].fill(l, r, 0);
		}
	}
	scoreA += rsq[0].query(0, n);
	scoreB += rsq[1].query(0, n);
	cout << scoreA << " " << scoreB << endl;
}
0