結果

問題 No.2992 Range ABCD String Query
ユーザー hiro1729hiro1729
提出日時 2024-12-16 19:17:01
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 497 ms / 6,000 ms
コード長 1,615 bytes
コンパイル時間 3,512 ms
コンパイル使用メモリ 252,324 KB
実行使用メモリ 31,944 KB
最終ジャッジ日時 2024-12-16 23:50:03
合計ジャッジ時間 17,570 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 201 ms
6,820 KB
testcase_01 AC 205 ms
6,816 KB
testcase_02 AC 219 ms
6,820 KB
testcase_03 AC 228 ms
6,820 KB
testcase_04 AC 226 ms
6,816 KB
testcase_05 AC 208 ms
6,816 KB
testcase_06 AC 220 ms
6,816 KB
testcase_07 AC 192 ms
6,816 KB
testcase_08 AC 218 ms
6,816 KB
testcase_09 AC 205 ms
6,816 KB
testcase_10 AC 351 ms
31,076 KB
testcase_11 AC 346 ms
30,524 KB
testcase_12 AC 354 ms
30,700 KB
testcase_13 AC 338 ms
29,740 KB
testcase_14 AC 337 ms
29,124 KB
testcase_15 AC 339 ms
29,448 KB
testcase_16 AC 323 ms
18,584 KB
testcase_17 AC 355 ms
31,648 KB
testcase_18 AC 334 ms
29,092 KB
testcase_19 AC 350 ms
31,760 KB
testcase_20 AC 304 ms
31,868 KB
testcase_21 AC 297 ms
31,944 KB
testcase_22 AC 309 ms
31,872 KB
testcase_23 AC 298 ms
31,868 KB
testcase_24 AC 300 ms
31,944 KB
testcase_25 AC 203 ms
31,900 KB
testcase_26 AC 202 ms
31,912 KB
testcase_27 AC 196 ms
31,868 KB
testcase_28 AC 202 ms
31,784 KB
testcase_29 AC 195 ms
31,928 KB
testcase_30 AC 432 ms
31,840 KB
testcase_31 AC 429 ms
31,844 KB
testcase_32 AC 433 ms
31,796 KB
testcase_33 AC 420 ms
31,804 KB
testcase_34 AC 433 ms
31,808 KB
testcase_35 AC 493 ms
31,860 KB
testcase_36 AC 497 ms
31,912 KB
testcase_37 AC 189 ms
6,816 KB
testcase_38 AC 194 ms
6,820 KB
testcase_39 AC 198 ms
6,816 KB
testcase_40 AC 193 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({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