結果

問題 No.2933 Range ROT Query
ユーザー KudeKude
提出日時 2024-10-12 16:32:44
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,247 ms / 3,000 ms
コード長 2,561 bytes
コンパイル時間 3,555 ms
コンパイル使用メモリ 283,240 KB
実行使用メモリ 24,828 KB
最終ジャッジ日時 2024-10-12 16:33:20
合計ジャッジ時間 33,433 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 579 ms
24,740 KB
testcase_13 AC 606 ms
24,704 KB
testcase_14 AC 577 ms
24,576 KB
testcase_15 AC 591 ms
24,704 KB
testcase_16 AC 564 ms
24,728 KB
testcase_17 AC 711 ms
24,740 KB
testcase_18 AC 694 ms
24,696 KB
testcase_19 AC 738 ms
24,560 KB
testcase_20 AC 731 ms
24,656 KB
testcase_21 AC 265 ms
24,744 KB
testcase_22 AC 267 ms
24,828 KB
testcase_23 AC 273 ms
24,736 KB
testcase_24 AC 459 ms
24,576 KB
testcase_25 AC 440 ms
24,692 KB
testcase_26 AC 740 ms
24,624 KB
testcase_27 AC 710 ms
24,744 KB
testcase_28 AC 729 ms
24,704 KB
testcase_29 AC 740 ms
24,704 KB
testcase_30 AC 715 ms
24,744 KB
testcase_31 AC 742 ms
24,704 KB
testcase_32 AC 746 ms
23,164 KB
testcase_33 AC 885 ms
23,296 KB
testcase_34 AC 906 ms
22,784 KB
testcase_35 AC 590 ms
23,424 KB
testcase_36 AC 984 ms
23,800 KB
testcase_37 AC 624 ms
22,584 KB
testcase_38 AC 583 ms
24,192 KB
testcase_39 AC 794 ms
24,392 KB
testcase_40 AC 805 ms
24,352 KB
testcase_41 AC 849 ms
24,192 KB
testcase_42 AC 806 ms
14,464 KB
testcase_43 AC 896 ms
14,592 KB
testcase_44 AC 1,174 ms
22,904 KB
testcase_45 AC 1,077 ms
24,296 KB
testcase_46 AC 1,247 ms
22,528 KB
testcase_47 AC 312 ms
22,556 KB
testcase_48 AC 271 ms
23,424 KB
testcase_49 AC 311 ms
23,524 KB
testcase_50 AC 265 ms
23,468 KB
testcase_51 AC 372 ms
22,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
namespace {
#pragma GCC diagnostic ignored "-Wunused-function"
#include<atcoder/all>
#pragma GCC diagnostic warning "-Wunused-function"
using namespace std;
using namespace atcoder;
#define rep(i,n) for(int i = 0; i < (int)(n); i++)
#define rrep(i,n) for(int i = (int)(n) - 1; i >= 0; i--)
#define all(x) begin(x), end(x)
#define rall(x) rbegin(x), rend(x)
template<class T> bool chmax(T& a, const T& b) { if (a < b) { a = b; return true; } else return false; }
template<class T> bool chmin(T& a, const T& b) { if (b < a) { a = b; return true; } else return false; }
using ll = long long;
using P = pair<int,int>;
using VI = vector<int>;
using VVI = vector<VI>;
using VL = vector<ll>;
using VVL = vector<VL>;

// add diff
struct S {
  bool v[26];
};

S op(S x, S y) {
  S res;
  rep(i, 26) res.v[i] = x.v[i] & y.v[i];
  return res;
}
S e() {
  S res;
  rep(i, 26) res.v[i] = true;
  return res;
}

int composition(int f, int g) { return f + g; }
int id() { return 0; }
S mapping(int f, S x) {
  f %= 26;
  if (f < 0) f += 26;
  if (f == 0) return x;
  rotate(x.v, x.v + f, x.v + 26);
  return x;
}


} int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  string s, t;
  cin >> s >> t;
  int q;
  cin >> q;
  int mx = max(s.size(), t.size());
  vector<S> init(mx);
  rep(i, mx) {
    S v;
    if (i >= ssize(s) || i >= ssize(t)) {
      rep(i, 26) v.v[i] = false;
    } else {
      rep(i, 26) v.v[i] = false;
      int diff = (t[i] - s[i] + 52) % 26;
      v.v[diff] = true;
    }
    init[i] = v;
  }
  lazy_segtree<S, op, e, int, mapping, composition, id> seg(init);
  fenwick_tree<int> add_s(ssize(s) + 1), add_t(ssize(t) + 1);
  while (q--) {
    int type;
    cin >> type;
    if (type == 1) {
      int l, r, x;
      cin >> l >> r >> x;
      l--;
      seg.apply(l, r, x);
      add_s.add(l, x);
      add_s.add(r, -x);
    } else if (type == 2) {
      int l, r, x;
      cin >> l >> r >> x;
      l--;
      seg.apply(l, r, -x);
      add_t.add(l, x);
      add_t.add(r, -x);
    } else {
      int p;
      cin >> p;
      p--;
      int r = seg.max_right(p, [](const S& s) {
        return s.v[0];
      });
      if (r == ssize(s)) {
        if (r == ssize(t)) {
          cout << "Equals\n";
        } else {
          cout << "Lesser\n";
        }
      } else if (r == ssize(t)) {
        cout << "Greater\n";
      } else {
        int sx = (s[r] - 'a' + add_s.sum(0, r + 1)) % 26;
        int tx = (t[r] - 'a' + add_t.sum(0, r + 1)) % 26;
        cout << (sx < tx ? "Lesser\n" : "Greater\n");
      }
    }
  }
}
0