結果

問題 No.2992 Range ABCD String Query
ユーザー hiro1729hiro1729
提出日時 2024-12-16 20:20:16
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 529 ms / 6,000 ms
コード長 1,623 bytes
コンパイル時間 3,159 ms
コンパイル使用メモリ 252,820 KB
実行使用メモリ 31,984 KB
最終ジャッジ日時 2024-12-16 23:50:37
合計ジャッジ時間 18,692 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 213 ms
6,816 KB
testcase_01 AC 216 ms
6,816 KB
testcase_02 AC 240 ms
6,816 KB
testcase_03 AC 225 ms
6,816 KB
testcase_04 AC 242 ms
6,820 KB
testcase_05 AC 216 ms
6,820 KB
testcase_06 AC 234 ms
6,820 KB
testcase_07 AC 204 ms
6,816 KB
testcase_08 AC 237 ms
6,816 KB
testcase_09 AC 221 ms
6,820 KB
testcase_10 AC 410 ms
31,032 KB
testcase_11 AC 416 ms
30,672 KB
testcase_12 AC 414 ms
30,636 KB
testcase_13 AC 396 ms
29,708 KB
testcase_14 AC 397 ms
29,156 KB
testcase_15 AC 413 ms
29,500 KB
testcase_16 AC 380 ms
18,468 KB
testcase_17 AC 403 ms
31,628 KB
testcase_18 AC 387 ms
29,188 KB
testcase_19 AC 400 ms
31,836 KB
testcase_20 AC 339 ms
31,984 KB
testcase_21 AC 334 ms
31,912 KB
testcase_22 AC 319 ms
31,952 KB
testcase_23 AC 325 ms
31,980 KB
testcase_24 AC 326 ms
31,864 KB
testcase_25 AC 229 ms
31,804 KB
testcase_26 AC 242 ms
31,936 KB
testcase_27 AC 235 ms
31,872 KB
testcase_28 AC 235 ms
31,840 KB
testcase_29 AC 231 ms
31,780 KB
testcase_30 AC 475 ms
31,940 KB
testcase_31 AC 459 ms
31,920 KB
testcase_32 AC 454 ms
31,836 KB
testcase_33 AC 461 ms
31,864 KB
testcase_34 AC 468 ms
31,916 KB
testcase_35 AC 525 ms
31,836 KB
testcase_36 AC 529 ms
31,780 KB
testcase_37 AC 198 ms
6,816 KB
testcase_38 AC 195 ms
6,816 KB
testcase_39 AC 203 ms
6,816 KB
testcase_40 AC 200 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) {
	S rt;
	rt.AA = l.AA + r.AA;
	rt.AB = min(l.AA + r.AB, l.AB + r.BB);
	rt.AC = min(min(l.AA + r.AC, l.AB + r.BC), l.AC + r.CC);
	rt.AD = min(min(l.AA + r.AD, l.AB + r.BD), min(l.AC + r.CD, l.AD + r.DD));
	rt.BB = l.BB + r.BB;
	rt.BC = min(l.BB + r.BC, l.BC + r.CC);
	rt.BD = min(min(l.BB + r.BD, l.BC + r.CD), l.BD + r.DD);
	rt.CC = l.CC + r.CC;
	rt.CD = min(l.CC + r.CD, l.CD + r.DD);
	rt.DD = l.DD + r.DD;
	return rt;
}

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