結果
問題 | No.2933 Range ROT Query |
ユーザー | eve__fuyuki |
提出日時 | 2024-10-17 17:29:04 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,904 bytes |
コンパイル時間 | 2,573 ms |
コンパイル使用メモリ | 210,504 KB |
実行使用メモリ | 9,216 KB |
最終ジャッジ日時 | 2024-10-17 17:29:20 |
合計ジャッジ時間 | 16,308 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | AC | 152 ms
9,088 KB |
testcase_13 | AC | 154 ms
9,216 KB |
testcase_14 | AC | 154 ms
9,216 KB |
testcase_15 | AC | 153 ms
9,216 KB |
testcase_16 | AC | 175 ms
9,216 KB |
testcase_17 | AC | 172 ms
9,088 KB |
testcase_18 | AC | 173 ms
9,216 KB |
testcase_19 | AC | 171 ms
9,216 KB |
testcase_20 | AC | 174 ms
9,216 KB |
testcase_21 | AC | 84 ms
9,216 KB |
testcase_22 | AC | 83 ms
9,216 KB |
testcase_23 | AC | 83 ms
9,216 KB |
testcase_24 | AC | 84 ms
9,216 KB |
testcase_25 | AC | 86 ms
9,216 KB |
testcase_26 | AC | 165 ms
9,216 KB |
testcase_27 | AC | 166 ms
9,216 KB |
testcase_28 | AC | 165 ms
9,088 KB |
testcase_29 | AC | 168 ms
9,216 KB |
testcase_30 | AC | 173 ms
9,216 KB |
testcase_31 | AC | 164 ms
9,216 KB |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | RE | - |
testcase_47 | RE | - |
testcase_48 | RE | - |
testcase_49 | RE | - |
testcase_50 | RE | - |
testcase_51 | RE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; void fast_io() { ios_base::sync_with_stdio(false); cin.tie(nullptr); } #include <atcoder/fenwicktree> #include <atcoder/lazysegtree> using namespace atcoder; int msk = (1 << 26) - 1; int op(int a, int b) { return a & b; } int e() { return 1; } int mapping(int f, int a) { // left cyclic shift by f return ((a << f) | (a >> (26 - f))) & msk; } int composition(int f, int g) { return (f + g) % 26; } int id() { return 0; } bool f(int x) { return x == 1; } int main() { fast_io(); string s, t; cin >> s >> t; int n = s.size(), m = t.size(); int M = min(n, m); vector<int> seg_data(M); for (int i = 0; i < M; i++) { int diff = (s[i] + 26 - t[i]) % 26; seg_data[i] = 1 << diff; } fenwick_tree<long long> fw(n + 1); { for (int i = 0; i < n; i++) { if (i == 0) { fw.add(i, s[i] - 'a'); } else { fw.add(i, (s[i] + 26 - s[i - 1]) % 26); } } } lazy_segtree<int, op, e, int, mapping, composition, id> seg(seg_data); int q; cin >> q; for (; q--;) { int com; cin >> com; if (com == 1) { int l, r, x; cin >> l >> r >> x; l--; seg.apply(l, min(r, M), x); fw.add(l, x); fw.add(r, -x); } if (com == 2) { int l, r, x; cin >> l >> r >> x; l--; seg.apply(l, min(r, M), 26 - x); } if (com == 3) { int p; cin >> p; int r = seg.max_right<f>(p - 1); if (r < M) { int s = fw.sum(0, r + 1) % 26; int ts = seg.get(r); int diff = -1; for (int i = 0; i < 26; i++) { if ((ts >> i) & 1) { diff = i; break; } } assert(diff != -1); char sr = 'a' + s; char tr = 'a' + (s - diff + 26) % 26; if (sr < tr) { cout << "Lesser\n"; } else { cout << "Greater\n"; } continue; } if (n < m) { cout << "Lesser\n"; } else if (n > m) { cout << "Greater\n"; } else { cout << "Equals\n"; } } } }