結果

問題 No.2992 Range ABCD String Query
ユーザー hiro1729hiro1729
提出日時 2024-12-16 20:17:50
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 529 ms / 6,000 ms
コード長 1,609 bytes
コンパイル時間 2,725 ms
コンパイル使用メモリ 251,464 KB
実行使用メモリ 32,000 KB
最終ジャッジ日時 2024-12-16 23:50:25
合計ジャッジ時間 17,713 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 210 ms
6,820 KB
testcase_01 AC 209 ms
6,816 KB
testcase_02 AC 213 ms
6,816 KB
testcase_03 AC 211 ms
6,816 KB
testcase_04 AC 228 ms
6,820 KB
testcase_05 AC 216 ms
6,816 KB
testcase_06 AC 223 ms
6,820 KB
testcase_07 AC 194 ms
6,820 KB
testcase_08 AC 224 ms
6,820 KB
testcase_09 AC 215 ms
6,816 KB
testcase_10 AC 359 ms
30,972 KB
testcase_11 AC 357 ms
30,468 KB
testcase_12 AC 354 ms
30,768 KB
testcase_13 AC 356 ms
29,524 KB
testcase_14 AC 348 ms
29,120 KB
testcase_15 AC 354 ms
29,480 KB
testcase_16 AC 335 ms
18,576 KB
testcase_17 AC 374 ms
31,700 KB
testcase_18 AC 352 ms
29,120 KB
testcase_19 AC 361 ms
31,880 KB
testcase_20 AC 305 ms
31,780 KB
testcase_21 AC 298 ms
31,836 KB
testcase_22 AC 304 ms
31,920 KB
testcase_23 AC 300 ms
31,796 KB
testcase_24 AC 312 ms
31,808 KB
testcase_25 AC 206 ms
31,784 KB
testcase_26 AC 205 ms
31,808 KB
testcase_27 AC 200 ms
31,808 KB
testcase_28 AC 199 ms
31,804 KB
testcase_29 AC 231 ms
31,776 KB
testcase_30 AC 456 ms
31,868 KB
testcase_31 AC 435 ms
32,000 KB
testcase_32 AC 430 ms
31,784 KB
testcase_33 AC 429 ms
31,804 KB
testcase_34 AC 434 ms
31,940 KB
testcase_35 AC 529 ms
31,900 KB
testcase_36 AC 528 ms
31,896 KB
testcase_37 AC 186 ms
6,816 KB
testcase_38 AC 191 ms
6,816 KB
testcase_39 AC 196 ms
6,820 KB
testcase_40 AC 198 ms
6,820 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({l.AA + r.AC, l.AB + r.BC, l.AC + r.CC});
	rt.AD = min({l.AA + r.AD, l.AB + r.BD, 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({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