結果

問題 No.2992 Range ABCD String Query
ユーザー Iroha_3856Iroha_3856
提出日時 2024-12-16 19:19:38
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 537 ms / 6,000 ms
コード長 1,517 bytes
コンパイル時間 2,880 ms
コンパイル使用メモリ 251,620 KB
実行使用メモリ 32,016 KB
最終ジャッジ日時 2024-12-16 23:50:15
合計ジャッジ時間 18,386 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 211 ms
6,820 KB
testcase_01 AC 212 ms
6,816 KB
testcase_02 AC 222 ms
6,820 KB
testcase_03 AC 217 ms
6,820 KB
testcase_04 AC 229 ms
6,816 KB
testcase_05 AC 210 ms
6,820 KB
testcase_06 AC 222 ms
6,816 KB
testcase_07 AC 201 ms
6,820 KB
testcase_08 AC 225 ms
6,816 KB
testcase_09 AC 216 ms
6,816 KB
testcase_10 AC 376 ms
31,060 KB
testcase_11 AC 375 ms
30,632 KB
testcase_12 AC 375 ms
30,720 KB
testcase_13 AC 364 ms
29,508 KB
testcase_14 AC 367 ms
29,092 KB
testcase_15 AC 365 ms
29,468 KB
testcase_16 AC 366 ms
18,400 KB
testcase_17 AC 386 ms
31,800 KB
testcase_18 AC 366 ms
29,168 KB
testcase_19 AC 388 ms
31,928 KB
testcase_20 AC 311 ms
31,864 KB
testcase_21 AC 318 ms
31,896 KB
testcase_22 AC 313 ms
31,868 KB
testcase_23 AC 310 ms
31,900 KB
testcase_24 AC 316 ms
31,956 KB
testcase_25 AC 213 ms
31,864 KB
testcase_26 AC 215 ms
31,936 KB
testcase_27 AC 214 ms
31,808 KB
testcase_28 AC 224 ms
31,840 KB
testcase_29 AC 212 ms
31,944 KB
testcase_30 AC 445 ms
31,800 KB
testcase_31 AC 446 ms
31,776 KB
testcase_32 AC 446 ms
31,992 KB
testcase_33 AC 447 ms
31,836 KB
testcase_34 AC 437 ms
31,908 KB
testcase_35 AC 531 ms
32,016 KB
testcase_36 AC 537 ms
31,956 KB
testcase_37 AC 203 ms
6,820 KB
testcase_38 AC 201 ms
6,816 KB
testcase_39 AC 202 ms
6,816 KB
testcase_40 AC 206 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/segtree>
using namespace std;
using namespace atcoder;
using ll = long long;
const int inf = 1e6;

struct S {
	int AA, AB, AC, AD, BB, BC, BD, CC, CD, DD;
};

S op(S l, S r) {
	return S{l.AA + r.AA, min({l.AA + r.AB, l.AB + r.BB}), min({l.AA + r.AC, l.AB + r.BC, l.AC + r.CC}), min({l.AA + r.AD, l.AB + r.BD, l.AC + r.CD, l.AD + r.DD}), l.BB + r.BB, min({l.BB + r.BC, l.BC + r.CC}), min({l.BB + r.BD, l.BC + r.CD, l.BD + r.DD}), l.CC + r.CC, min({l.CC + r.CD, l.CD + r.DD}), l.DD + r.DD};
}

S e() {
	return S{0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
}

int main() {
	int N, Q;
	cin >> N >> Q;
	string S_;
	cin >> S_;
	vector<S> v(N);
	for (int i = 0; i < N; i++) {
		if (S_[i] == 'A') {
			v[i] = S{0, 0, 0, 0, 1, 1, 1, 1, 1, 1};
		}
		if (S_[i] == 'B') {
			v[i] = S{1, 0, 0, 0, 0, 0, 0, 1, 1, 1};
		}
		if (S_[i] == 'C') {
			v[i] = S{1, 1, 0, 0, 1, 0, 0, 0, 0, 1};
		}
		if (S_[i] == 'D') {
			v[i] = S{1, 1, 1, 0, 1, 1, 0, 1, 0, 0};
		}
	}
	segtree<S, op, e> seg(v);
	for (int i = 0; i < Q; i++) {
		int t;
		cin >> t;
		if (t == 1) {
			int x;
			char c;
			cin >> x >> c;
			x--;
			if (c == 'A') {
				seg.set(x, S{0, 0, 0, 0, 1, 1, 1, 1, 1, 1});
			}
			if (c == 'B') {
				seg.set(x, S{1, 0, 0, 0, 0, 0, 0, 1, 1, 1});
			}
			if (c == 'C') {
				seg.set(x, S{1, 1, 0, 0, 1, 0, 0, 0, 0, 1});
			}
			if (c == 'D') {
				seg.set(x, S{1, 1, 1, 0, 1, 1, 0, 1, 0, 0});
			}
		} else {
			int l, r;
			cin >> l >> r;
			l--; r--;
			cout << seg.prod(l, r + 1).AD << '\n';
		}
	}
}
0