結果

問題 No.2933 Range ROT Query
ユーザー loop0919loop0919
提出日時 2024-09-09 18:26:17
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 448 ms / 3,000 ms
コード長 2,516 bytes
コンパイル時間 3,344 ms
コンパイル使用メモリ 254,920 KB
実行使用メモリ 9,344 KB
最終ジャッジ日時 2024-10-02 00:29:08
合計ジャッジ時間 21,107 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 378 ms
9,344 KB
testcase_13 AC 373 ms
9,344 KB
testcase_14 AC 389 ms
9,344 KB
testcase_15 AC 376 ms
9,344 KB
testcase_16 AC 372 ms
9,216 KB
testcase_17 AC 405 ms
9,344 KB
testcase_18 AC 408 ms
9,344 KB
testcase_19 AC 448 ms
9,216 KB
testcase_20 AC 424 ms
9,216 KB
testcase_21 AC 412 ms
9,216 KB
testcase_22 AC 411 ms
9,344 KB
testcase_23 AC 410 ms
9,216 KB
testcase_24 AC 403 ms
9,344 KB
testcase_25 AC 407 ms
9,344 KB
testcase_26 AC 446 ms
9,344 KB
testcase_27 AC 413 ms
9,344 KB
testcase_28 AC 415 ms
9,216 KB
testcase_29 AC 416 ms
9,344 KB
testcase_30 AC 418 ms
9,344 KB
testcase_31 AC 419 ms
9,344 KB
testcase_32 AC 294 ms
8,576 KB
testcase_33 AC 332 ms
6,912 KB
testcase_34 AC 339 ms
6,820 KB
testcase_35 AC 229 ms
6,912 KB
testcase_36 AC 361 ms
6,912 KB
testcase_37 AC 235 ms
6,816 KB
testcase_38 AC 223 ms
8,576 KB
testcase_39 AC 286 ms
7,040 KB
testcase_40 AC 301 ms
7,040 KB
testcase_41 AC 314 ms
8,832 KB
testcase_42 AC 234 ms
6,816 KB
testcase_43 AC 271 ms
6,816 KB
testcase_44 AC 325 ms
6,820 KB
testcase_45 AC 302 ms
8,704 KB
testcase_46 AC 338 ms
6,820 KB
testcase_47 AC 350 ms
6,820 KB
testcase_48 AC 283 ms
8,576 KB
testcase_49 AC 343 ms
8,704 KB
testcase_50 AC 276 ms
7,040 KB
testcase_51 AC 368 ms
8,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using namespace std;
using namespace atcoder;

const int sigma = 26;
const int emptyset = -1;
const int wildcard = 9999;

int op(int x, int y) {
    if (x == emptyset || y == emptyset) {
        return emptyset;
    } else if (x == wildcard) {
        return y;
    } else if (y == wildcard) {
        return x;
    } else if (x == y){
        return x;
    } else {
        return emptyset;
    }
}

int e() { return wildcard; }

int mapping(int f, int x) {
    if (x == emptyset || x == wildcard) {
        return x;
    } else {
        return (f + x) % sigma;
    }
}

int composition(int f, int g) { return (f + g) % sigma; }
int id_() { return 0; }

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

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

    vector<int> diff(min_s_t);
    for (int i = 0; i < min_s_t; i++) {
        diff[i] = (s[i] - t[i] + sigma) % sigma;
    }

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

    fenwick_tree<int> s_imos(s.size() + 1);
    fenwick_tree<int> 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_s_t), min(r, min_s_t), x);
            s_imos.add(l - 1, x);
            s_imos.add(r, sigma - x);

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

            seg.apply(min(l - 1, min_s_t), min(r, min_s_t), sigma - x);
            t_imos.add(l - 1, x);
            t_imos.add(r, sigma - x);

        } else {
            int p;
            cin >> p;

            int idx = seg.max_right(p - 1, [&](int v) { return (v == 0 || v == wildcard); });

            if (idx < min_s_t) {
                int s_val = (int)(s_imos.sum(0, idx + 1) + s[idx] - 'a') % sigma;
                int t_val = (int)(t_imos.sum(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