結果

問題 No.2992 Range ABCD String Query
ユーザー hiro1729hiro1729
提出日時 2024-12-16 19:10:56
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 551 ms / 6,000 ms
コード長 1,979 bytes
コンパイル時間 3,908 ms
コンパイル使用メモリ 252,008 KB
実行使用メモリ 32,000 KB
最終ジャッジ日時 2024-12-16 23:49:43
合計ジャッジ時間 19,116 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 213 ms
5,248 KB
testcase_01 AC 221 ms
5,248 KB
testcase_02 AC 234 ms
5,248 KB
testcase_03 AC 226 ms
5,248 KB
testcase_04 AC 234 ms
5,248 KB
testcase_05 AC 215 ms
5,248 KB
testcase_06 AC 231 ms
5,248 KB
testcase_07 AC 201 ms
5,248 KB
testcase_08 AC 240 ms
5,248 KB
testcase_09 AC 222 ms
5,248 KB
testcase_10 AC 405 ms
30,976 KB
testcase_11 AC 392 ms
30,464 KB
testcase_12 AC 400 ms
30,592 KB
testcase_13 AC 385 ms
29,568 KB
testcase_14 AC 390 ms
29,184 KB
testcase_15 AC 402 ms
29,440 KB
testcase_16 AC 375 ms
18,432 KB
testcase_17 AC 423 ms
31,616 KB
testcase_18 AC 399 ms
29,120 KB
testcase_19 AC 401 ms
31,744 KB
testcase_20 AC 329 ms
31,796 KB
testcase_21 AC 332 ms
31,872 KB
testcase_22 AC 332 ms
31,872 KB
testcase_23 AC 340 ms
32,000 KB
testcase_24 AC 357 ms
31,872 KB
testcase_25 AC 255 ms
31,872 KB
testcase_26 AC 249 ms
31,864 KB
testcase_27 AC 250 ms
31,872 KB
testcase_28 AC 250 ms
32,000 KB
testcase_29 AC 247 ms
31,872 KB
testcase_30 AC 481 ms
31,872 KB
testcase_31 AC 482 ms
31,836 KB
testcase_32 AC 485 ms
31,872 KB
testcase_33 AC 482 ms
31,872 KB
testcase_34 AC 473 ms
31,872 KB
testcase_35 AC 549 ms
31,872 KB
testcase_36 AC 551 ms
31,976 KB
testcase_37 AC 197 ms
5,248 KB
testcase_38 AC 197 ms
5,248 KB
testcase_39 AC 202 ms
5,248 KB
testcase_40 AC 204 ms
5,248 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.AA + r.BB, l.AB + r.BB});
	rt.AC = min({l.AA + r.AC, l.AA + r.BC, l.AA + r.CC, l.AB + r.BC, l.AB + r.CC, l.AC + r.CC});
	rt.AD = min({l.AA + r.AD, l.AA + r.BD, l.AA + r.CD, l.AA + r.DD, l.AB + r.BD, l.AB + r.CD, l.AB + r.DD, l.AC + r.CD, l.AC + r.DD, l.AD + r.DD});
	rt.BB = l.BB + r.BB;
	rt.BC = min({l.BB + r.BC, l.BB + r.CC, l.BC + r.CC});
	rt.BD = min({l.BB + r.BD, l.BB + r.CD, l.BB + r.DD, l.BC + r.CD, l.BC + r.DD, l.BD + r.DD});
	rt.CC = l.CC + r.CC;
	rt.CD = min({l.CC + r.CD, l.CC + r.DD, 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, inf, inf, inf, 1, inf, inf, 1, inf, 1};
		}
		if (S_[i] == 'B') {
			v[i] = S{1, inf, inf, inf, 0, inf, inf, 1, inf, 1};
		}
		if (S_[i] == 'C') {
			v[i] = S{1, inf, inf, inf, 1, inf, inf, 0, inf, 1};
		}
		if (S_[i] == 'D') {
			v[i] = S{1, inf, inf, inf, 1, inf, inf, 1, inf, 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, inf, inf, inf, 1, inf, inf, 1, inf, 1});
			}
			if (c == 'B') {
				seg.set(x, S{1, inf, inf, inf, 0, inf, inf, 1, inf, 1});
			}
			if (c == 'C') {
				seg.set(x, S{1, inf, inf, inf, 1, inf, inf, 0, inf, 1});
			}
			if (c == 'D') {
				seg.set(x, S{1, inf, inf, inf, 1, inf, inf, 1, inf, 0});
			}
		} else {
			int l, r;
			cin >> l >> r;
			l--; r--;
			S s = seg.prod(l, r + 1);
			cout << min({s.AA, s.AB, s.AC, s.AD, s.BB, s.BC, s.BD, s.CC, s.CD, s.DD}) << '\n';
		}
	}
}
0