結果

問題 No.2933 Range ROT Query
ユーザー amesyuamesyu
提出日時 2024-09-09 12:24:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 375 ms / 3,000 ms
コード長 1,668 bytes
コンパイル時間 1,192 ms
コンパイル使用メモリ 99,672 KB
実行使用メモリ 8,576 KB
最終ジャッジ日時 2024-10-02 00:28:34
合計ジャッジ時間 16,953 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 1 ms
5,248 KB
testcase_12 AC 298 ms
8,320 KB
testcase_13 AC 299 ms
8,576 KB
testcase_14 AC 298 ms
8,320 KB
testcase_15 AC 300 ms
8,448 KB
testcase_16 AC 299 ms
8,448 KB
testcase_17 AC 327 ms
8,320 KB
testcase_18 AC 327 ms
8,448 KB
testcase_19 AC 328 ms
8,448 KB
testcase_20 AC 333 ms
8,448 KB
testcase_21 AC 375 ms
8,448 KB
testcase_22 AC 348 ms
8,320 KB
testcase_23 AC 373 ms
8,320 KB
testcase_24 AC 351 ms
8,448 KB
testcase_25 AC 354 ms
8,576 KB
testcase_26 AC 348 ms
8,448 KB
testcase_27 AC 351 ms
8,448 KB
testcase_28 AC 352 ms
8,320 KB
testcase_29 AC 358 ms
8,448 KB
testcase_30 AC 356 ms
8,320 KB
testcase_31 AC 350 ms
8,320 KB
testcase_32 AC 268 ms
7,936 KB
testcase_33 AC 278 ms
6,820 KB
testcase_34 AC 281 ms
6,144 KB
testcase_35 AC 190 ms
6,272 KB
testcase_36 AC 299 ms
6,144 KB
testcase_37 AC 199 ms
6,272 KB
testcase_38 AC 188 ms
7,808 KB
testcase_39 AC 235 ms
6,272 KB
testcase_40 AC 246 ms
6,272 KB
testcase_41 AC 259 ms
7,936 KB
testcase_42 AC 190 ms
5,888 KB
testcase_43 AC 221 ms
6,144 KB
testcase_44 AC 263 ms
6,144 KB
testcase_45 AC 245 ms
7,936 KB
testcase_46 AC 266 ms
6,144 KB
testcase_47 AC 316 ms
6,272 KB
testcase_48 AC 233 ms
7,936 KB
testcase_49 AC 319 ms
8,064 KB
testcase_50 AC 246 ms
6,144 KB
testcase_51 AC 348 ms
7,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <atcoder/lazysegtree>
#include <atcoder/fenwicktree>

int op(int x, int y) {
	if(x == -2) return y;
	if(y == -2) return x;
	if(x == y) return x;
	else return -1;
}

int e() {
	return -2;
}

int mapping(int f, int x) {
	if(x < 0) return -1;
	return (f + x + 26) % 26;
}

int composition(int f, int g) {
	return (f + g + 26) % 26;
}

int ide() {
	return 0;
}

bool f(int x) {
	return x == 0 || x == -2;
}

int main() {
	std::string S, T;
	std::cin >> S >> T;
	int N = (int)std::min(S.size(), T.size());

	std::vector<int> init(N);
	for(int i=0;i<N;++i) {
		init[i] = (S[i] - T[i] + 26) % 26;
	}

	atcoder::lazy_segtree<int, op, e, int, mapping, composition, ide> seg(init);
	atcoder::fenwick_tree<int> fw(N + 1);
	for(int i=0;i<N;++i) {
		int x = S[i] - 'a';
		fw.add(i, x);
		fw.add(i+1, -x);
	}
	
	int Q;
	std::cin >> Q;

	while(Q--) {

		int t;
		std::cin >> t;

		if(t == 1) {
			int l, r, x;
			std::cin >> l >> r >> x;
			if(N < l) continue;
			r = std::min(r, N);
			seg.apply(l-1, r, x);
			fw.add(l-1, x);
			fw.add(r, -x);
		} else if(t == 2) {
			int l, r, x;
			std::cin >> l >> r >> x;
			if(N < l) continue;
			r = std::min(r, N);
			seg.apply(l-1, r, -x);
		} else {
			int p, q;
			std::cin >> p; p--;
			q = seg.max_right<f>(p);

			if(q == N) {
				if(S.size() == T.size()) std::cout << "Equals";
				else if(S.size() < T.size()) std::cout << "Lesser";
				else std::cout << "Greater";
			} else {
				int s = fw.sum(0, q + 1) % 26;
				int t = (s - seg.get(q) + 26) % 26;
				if(s < t) std::cout << "Lesser";
				else std::cout << "Greater";
			}

			std::cout << std::endl;
		}
	}
} 

0