結果
問題 | No.2933 Range ROT Query |
ユーザー | loop0919 |
提出日時 | 2024-08-28 16:27:57 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,375 bytes |
コンパイル時間 | 3,779 ms |
コンパイル使用メモリ | 253,736 KB |
実行使用メモリ | 15,744 KB |
最終ジャッジ日時 | 2024-10-02 00:23:36 |
合計ジャッジ時間 | 23,772 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | RE | - |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | AC | 468 ms
15,360 KB |
testcase_19 | AC | 451 ms
15,360 KB |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | AC | 468 ms
15,360 KB |
testcase_26 | AC | 494 ms
15,360 KB |
testcase_27 | AC | 549 ms
15,360 KB |
testcase_28 | AC | 496 ms
15,360 KB |
testcase_29 | AC | 495 ms
15,360 KB |
testcase_30 | AC | 493 ms
15,488 KB |
testcase_31 | AC | 502 ms
15,360 KB |
testcase_32 | AC | 374 ms
14,592 KB |
testcase_33 | AC | 418 ms
11,520 KB |
testcase_34 | AC | 445 ms
11,264 KB |
testcase_35 | AC | 286 ms
11,648 KB |
testcase_36 | AC | 454 ms
11,392 KB |
testcase_37 | AC | 295 ms
11,264 KB |
testcase_38 | AC | 285 ms
14,720 KB |
testcase_39 | AC | 366 ms
11,648 KB |
testcase_40 | AC | 381 ms
11,648 KB |
testcase_41 | AC | 401 ms
14,848 KB |
testcase_42 | AC | 314 ms
9,600 KB |
testcase_43 | AC | 364 ms
9,472 KB |
testcase_44 | AC | 444 ms
11,264 KB |
testcase_45 | AC | 428 ms
14,976 KB |
testcase_46 | AC | 449 ms
11,136 KB |
testcase_47 | AC | 400 ms
11,264 KB |
testcase_48 | AC | 309 ms
14,848 KB |
testcase_49 | AC | 387 ms
14,848 KB |
testcase_50 | AC | 339 ms
11,520 KB |
testcase_51 | AC | 429 ms
14,592 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/lazysegtree> using namespace std; using namespace atcoder; int sigma = 26; int op(int x, int y) { return x & y; } int e() { return (1 << sigma) - 1; } int mapping(int f, int x) { return ((x << f) & ((1 << sigma) - 1)) | (x >> (sigma - f)); } int composition(int f, int g) { return (f + g) % sigma; } int id_() { return 0;} int op_ord(int x, int y) { return x + y; } int e_ord() { return 0; } int mapping_ord(int f, int x) { return (f + x) % sigma; } int composition_ord(int f, int g) { return (f + g) % sigma; } int id_ord() { return 0; } int main() { string s, t; cin >> s >> t; int min_st = min(s.size(), t.size()); vector<int> diff_bitset(min_st); for (int i = 0; i < min(s.size(), t.size()); i++) { diff_bitset[i] = 1 << ((s[i] - t[i] + 26) % 26); } lazy_segtree<int, op, e, int, mapping, composition, id_> seg_diff_set(diff_bitset); vector<int> ord_s(s.size() + 1); for (int i = 0; i < s.size(); i++) { ord_s[i] = (int)(s[i] - 'a'); } ord_s[s.size()] = -1; vector<int> ord_t(t.size()); for (int i = 0; i < t.size(); i++) { ord_t[i] = (int)(t[i] - 'a'); } ord_t[t.size()] = -1; lazy_segtree<int, op_ord, e_ord, int, mapping_ord, composition_ord, id_ord> seg_s(ord_s); lazy_segtree<int, op_ord, e_ord, int, mapping_ord, composition_ord, id_ord> seg_t(ord_t); int q; cin >> q; while (q--) { int cmd; cin >> cmd; if (cmd == 1) { int l, r, x; cin >> l >> r >> x; seg_diff_set.apply(min(l - 1, min_st), min(r, min_st), x); seg_s.apply(l - 1, r, x); } else if (cmd == 2) { int l, r, x; cin >> l >> r >> x; seg_diff_set.apply(min(l - 1, min_st), min(r, min_st), sigma - x); seg_t.apply(l - 1, r, x); } else { int p; cin >> p; int idx = seg_diff_set.max_right(p - 1, [&](int x) { return x & 1 == 1; }); int s_i = seg_s.get(idx); int t_i = seg_t.get(idx); if (s_i > t_i) { cout << "Greater" << endl; } else if (s_i < t_i) { cout << "Lesser" << endl; } else { cout << "Equals" << endl; } } } }