結果

問題 No.2933 Range ROT Query
ユーザー loop0919loop0919
提出日時 2024-09-06 02:01:13
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,974 bytes
コンパイル時間 3,600 ms
コンパイル使用メモリ 251,136 KB
実行使用メモリ 13,632 KB
最終ジャッジ日時 2024-10-02 00:25:02
合計ジャッジ時間 11,670 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,824 KB
testcase_01 AC 3 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 2 ms
5,248 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using namespace std;
using namespace atcoder;

int sigma = 26;

int op_ord(int x, int y) { return x + y; }
int e_ord() { return 0; }
int mapping_ord(int f, int x) { return (f + x) % sigma; }
int composition_ord(int f, int g) { return (f + g) % sigma; }
int id_ord() { return 0; }

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

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

    vector<int> ord_s(s.size() + 1);
    for (int i = 0; i < s.size(); i++) {
        ord_s[i] = (int)(s[i] - 'a');
    }
    ord_s[s.size()] = -1;
    
    vector<int> ord_t(t.size() + 1);
    for (int i = 0; i < t.size(); i++) {
        ord_t[i] = (int)(t[i] - 'a');
    }
    ord_t[t.size()] = -1;

    lazy_segtree<int, op_ord, e_ord, int, mapping_ord, composition_ord, id_ord> seg_s(ord_s);
    lazy_segtree<int, op_ord, e_ord, int, mapping_ord, composition_ord, id_ord> seg_t(ord_t);

    int q;
    cin >> q;

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

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

            seg_s.apply(l - 1, min(r, min_st), x);

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

            seg_t.apply(l - 1, min(r, min_st), x);

        } else {
            int p;
            cin >> p;

            bool checked = false;

            for (int i = p - 1; i <= min_st; i++) {
                int ord_s = seg_s.get(i);
                int ord_t = seg_t.get(i);
                
                if (ord_s > ord_t) {
                    cout << "Greater" << endl;
                    checked = true;
                    break;
                } else if (ord_s < ord_t) {
                    cout << "Lesser" << endl;
                    checked = true;
                    break;
                }
            }

            if (!checked) {
                cout << "Equals" << endl;
            }
            
        }
    }
}
0