結果

問題 No.2933 Range ROT Query
ユーザー loop0919loop0919
提出日時 2024-09-06 14:06:14
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 458 ms / 3,000 ms
コード長 2,407 bytes
コンパイル時間 2,952 ms
コンパイル使用メモリ 253,432 KB
実行使用メモリ 12,528 KB
最終ジャッジ日時 2024-10-02 00:27:16
合計ジャッジ時間 20,601 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 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 1 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 358 ms
12,400 KB
testcase_13 AC 390 ms
12,528 KB
testcase_14 AC 387 ms
12,528 KB
testcase_15 AC 360 ms
12,512 KB
testcase_16 AC 359 ms
12,524 KB
testcase_17 AC 381 ms
12,400 KB
testcase_18 AC 392 ms
12,404 KB
testcase_19 AC 390 ms
12,528 KB
testcase_20 AC 387 ms
12,528 KB
testcase_21 AC 360 ms
12,404 KB
testcase_22 AC 353 ms
12,400 KB
testcase_23 AC 417 ms
12,528 KB
testcase_24 AC 414 ms
12,300 KB
testcase_25 AC 382 ms
12,404 KB
testcase_26 AC 417 ms
12,396 KB
testcase_27 AC 449 ms
12,400 KB
testcase_28 AC 458 ms
12,524 KB
testcase_29 AC 447 ms
12,400 KB
testcase_30 AC 442 ms
12,404 KB
testcase_31 AC 427 ms
12,524 KB
testcase_32 AC 315 ms
12,060 KB
testcase_33 AC 355 ms
9,608 KB
testcase_34 AC 368 ms
9,248 KB
testcase_35 AC 243 ms
9,640 KB
testcase_36 AC 413 ms
9,288 KB
testcase_37 AC 284 ms
9,284 KB
testcase_38 AC 239 ms
12,348 KB
testcase_39 AC 304 ms
9,600 KB
testcase_40 AC 319 ms
9,548 KB
testcase_41 AC 340 ms
12,300 KB
testcase_42 AC 265 ms
7,996 KB
testcase_43 AC 312 ms
8,040 KB
testcase_44 AC 379 ms
9,452 KB
testcase_45 AC 392 ms
12,140 KB
testcase_46 AC 371 ms
9,076 KB
testcase_47 AC 341 ms
9,472 KB
testcase_48 AC 268 ms
12,020 KB
testcase_49 AC 337 ms
12,284 KB
testcase_50 AC 273 ms
9,212 KB
testcase_51 AC 370 ms
11,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/lazysegtree>
#include <atcoder/segtree>

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_imos(int x, int y) { return (x + y) % sigma; }
int e_imos() { return 0; }

int main() {
    string s, t;
    cin >> s >> t;

    int min_st = min(s.size(), t.size());

    vector<int> diff(min_st);
    for (int i = 0; i < min(s.size(), t.size()); i++) {
        diff[i] = 1 << ((s[i] - t[i] + sigma) % sigma);
    }

    lazy_segtree<int, op, e, int, mapping, composition, id_> seg(diff);

    segtree<int, op_imos, e_imos> s_imos(s.size() + 1);
    segtree<int, op_imos, e_imos> t_imos(t.size() + 1);

    int q;
    cin >> q;

    while (q--) {
        int cmd;
        cin >> cmd;

        if (cmd == 1) {
            int l, r, x;
            cin >> l >> r >> x;

            seg.apply(min(l - 1, min_st), min(r, min_st), x);
            s_imos.set(l - 1, (s_imos.get(l - 1) + x) % sigma);
            s_imos.set(r, (s_imos.get(r) - x + sigma) % sigma);

        } else if (cmd == 2) {
            int l, r, x;
            cin >> l >> r >> x;

            seg.apply(min(l - 1, min_st), min(r, min_st), sigma - x);
            t_imos.set(l - 1, (t_imos.get(l - 1) + x) % sigma);
            t_imos.set(r, (t_imos.get(r) - x + sigma) % sigma);

        } else {
            int p;
            cin >> p;

            int idx = seg.max_right(p - 1, [&](int x) { return x & 1 == 1; });

            if (idx < min_st) {
                int s_val = (int)(s_imos.prod(0, idx + 1) + s[idx] - 'a') % sigma;
                int t_val = (int)(t_imos.prod(0, idx + 1) + t[idx] - 'a') % sigma;
                
                if (s_val > t_val) {
                    cout << "Greater" << endl;
                } else {
                    cout << "Lesser" << endl;
                }

            } else {
                if (s.size() > t.size()) {
                    cout << "Greater" << endl;
                } else if (s.size() < t.size()) {
                    cout << "Lesser" << endl;
                } else {
                    cout << "Equals" << endl;
                }
            }
        }
    }
}
0