結果

問題 No.2933 Range ROT Query
ユーザー loop0919loop0919
提出日時 2024-09-06 11:11:47
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 468 ms / 3,000 ms
コード長 2,439 bytes
コンパイル時間 3,274 ms
コンパイル使用メモリ 255,316 KB
実行使用メモリ 12,532 KB
最終ジャッジ日時 2024-10-02 00:26:52
合計ジャッジ時間 21,396 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 364 ms
12,404 KB
testcase_13 AC 434 ms
12,524 KB
testcase_14 AC 359 ms
12,396 KB
testcase_15 AC 356 ms
12,396 KB
testcase_16 AC 354 ms
12,528 KB
testcase_17 AC 376 ms
12,404 KB
testcase_18 AC 383 ms
12,528 KB
testcase_19 AC 468 ms
12,400 KB
testcase_20 AC 466 ms
12,396 KB
testcase_21 AC 431 ms
12,400 KB
testcase_22 AC 360 ms
12,400 KB
testcase_23 AC 359 ms
12,528 KB
testcase_24 AC 365 ms
12,400 KB
testcase_25 AC 387 ms
12,528 KB
testcase_26 AC 435 ms
12,404 KB
testcase_27 AC 410 ms
12,532 KB
testcase_28 AC 412 ms
12,396 KB
testcase_29 AC 411 ms
12,400 KB
testcase_30 AC 413 ms
12,404 KB
testcase_31 AC 414 ms
12,404 KB
testcase_32 AC 308 ms
12,060 KB
testcase_33 AC 350 ms
9,480 KB
testcase_34 AC 363 ms
9,252 KB
testcase_35 AC 240 ms
9,644 KB
testcase_36 AC 372 ms
9,156 KB
testcase_37 AC 243 ms
9,184 KB
testcase_38 AC 233 ms
12,348 KB
testcase_39 AC 304 ms
9,732 KB
testcase_40 AC 308 ms
9,544 KB
testcase_41 AC 333 ms
12,296 KB
testcase_42 AC 258 ms
8,116 KB
testcase_43 AC 298 ms
8,172 KB
testcase_44 AC 361 ms
9,448 KB
testcase_45 AC 336 ms
12,264 KB
testcase_46 AC 366 ms
9,076 KB
testcase_47 AC 334 ms
9,352 KB
testcase_48 AC 256 ms
11,896 KB
testcase_49 AC 365 ms
12,160 KB
testcase_50 AC 272 ms
9,156 KB
testcase_51 AC 365 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(vector<int>(s.size() + 1, 0));
    segtree<int, op_imos, e_imos> t_imos(vector<int>(t.size() + 1, 0));

    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