結果

問題 No.2933 Range ROT Query
ユーザー loop0919loop0919
提出日時 2024-09-06 11:05:40
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,320 bytes
コンパイル時間 3,217 ms
コンパイル使用メモリ 253,812 KB
実行使用メモリ 12,660 KB
最終ジャッジ日時 2024-10-02 00:26:32
合計ジャッジ時間 23,397 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 2 ms
6,816 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 431 ms
12,404 KB
testcase_13 AC 434 ms
12,332 KB
testcase_14 AC 435 ms
12,400 KB
testcase_15 AC 431 ms
12,404 KB
testcase_16 AC 434 ms
12,404 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 426 ms
12,332 KB
testcase_22 AC 418 ms
12,528 KB
testcase_23 AC 412 ms
12,420 KB
testcase_24 AC 427 ms
12,420 KB
testcase_25 AC 411 ms
12,404 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
権限があれば一括ダウンロードができます

ソースコード

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(vector<int>(s.size() + 1));
    segtree<int, op_imos, e_imos> t_imos(vector<int>(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, x);
            s_imos.set(r, sigma - x);

        } 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, x);
            t_imos.set(r, sigma - x);

        } 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