結果

問題 No.2540 同値性判定
ユーザー KudeKude
提出日時 2023-11-10 23:31:20
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 3,854 bytes
コンパイル時間 3,365 ms
コンパイル使用メモリ 282,692 KB
実行使用メモリ 62,008 KB
最終ジャッジ日時 2023-11-10 23:32:02
合計ジャッジ時間 40,499 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,352 KB
testcase_01 AC 2 ms
13,480 KB
testcase_02 AC 2 ms
13,352 KB
testcase_03 AC 2 ms
13,480 KB
testcase_04 AC 1 ms
13,352 KB
testcase_05 AC 1 ms
13,480 KB
testcase_06 AC 2 ms
13,352 KB
testcase_07 AC 2 ms
13,480 KB
testcase_08 AC 2 ms
58,916 KB
testcase_09 AC 2 ms
13,352 KB
testcase_10 AC 2 ms
13,352 KB
testcase_11 WA -
testcase_12 AC 3 ms
13,352 KB
testcase_13 AC 5 ms
13,480 KB
testcase_14 AC 38 ms
9,008 KB
testcase_15 AC 61 ms
51,728 KB
testcase_16 AC 429 ms
51,728 KB
testcase_17 AC 834 ms
51,728 KB
testcase_18 AC 810 ms
51,728 KB
testcase_19 AC 806 ms
51,728 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
evil_00.txt TLE -
evil_01.txt TLE -
evil_02.txt TLE -
evil_03.txt TLE -
evil_04.txt WA -
evil_05.txt AC 220 ms
51,728 KB
evil_06.txt AC 163 ms
51,728 KB
evil_07.txt AC 166 ms
51,728 KB
evil_08.txt TLE -
evil_09.txt TLE -
evil_10.txt TLE -
evil_11.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

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>;

template <class F, F (*composition)(F, F), F (*id)()> struct dual_segtree {
  public:
    dual_segtree() : dual_segtree(0) {}
    explicit dual_segtree(int n) : dual_segtree(std::vector<F>(n, id())) {}
    explicit dual_segtree(const std::vector<F>& v) : _n(int(v.size())) {
        auto ceil_log2 = [](int n) {
            int x = 0;
            while ((1U << x) < (unsigned int)(n)) x++;
            return x;
        };
        log = ceil_log2(_n);
        size = 1 << log;
        lz = std::vector<F>(2 * size, id());
        for (int i = 0; i < _n; i++) lz[size + i] = v[i];
    }

    void set(int p, F x) {
        assert(0 <= p && p < _n);
        p += size;
        for (int i = log; i >= 1; i--) push(p >> i);
        lz[p] = x;
    }

    F get(int p) {
        assert(0 <= p && p < _n);
        p += size;
        for (int i = log; i >= 1; i--) push(p >> i);
        return lz[p];
    }

    void apply(int p, F f) {
        assert(0 <= p && p < _n);
        p += size;
        for (int i = log; i >= 1; i--) push(p >> i);
        lz[p] = composition(f, lz[p]);
    }
    void apply(int l, int r, F f) {
        assert(0 <= l && l <= r && r <= _n);
        if (l == r) return;

        l += size;
        r += size;

        for (int i = log; i >= 1; i--) {
            if (((l >> i) << i) != l) push(l >> i);
            if (((r >> i) << i) != r) push((r - 1) >> i);
        }

        while (l < r) {
            if (l & 1) all_apply(l++, f);
            if (r & 1) all_apply(--r, f);
            l >>= 1;
            r >>= 1;
        }
    }

    void push_all() {
        for (int i = 1; i < size; i++) push(i);
    }
    F get_raw(int p) {
        assert(0 <= p && p < _n);
        return lz[size + p];
    }

  private:
    int _n, size, log;
    std::vector<F> lz;

    void all_apply(int k, F f) {
        lz[k] = composition(f, lz[k]);
    }
    void push(int k) {
        all_apply(2 * k, lz[k]);
        all_apply(2 * k + 1, lz[k]);
        lz[k] = id();
    }
};

using ull = unsigned long long;
struct F {
  ull a, b;
};
F composition(F f, F g) {
  // fa(gax+gb)+fb
  return F{f.a & g.a, (f.a & g.b) ^ f.b};
}
F id() { return {~0ULL, 0}; }

} int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  int n, q;
  cin >> n >> q;
  ull p[6]{};
  rep(s, 1 << 6) {
    rep(k, 6) p[k] |= ull(s >> k & 1) << s;
  }
  vector<F> init(n);
  rep(i, n) init[i] = F{0ULL, p[i % 6]};
  dual_segtree<F, composition, id> seg(init);
  rep(_, q) {
    int h, l1, r1, l2, r2;
    string o;
    cin >> h >> o >> l1 >> r1 >> l2 >> r2;
    r1++, r2++;
    ull y = seg.get(h).b;
    F f;
    if (o == "land") {
      f = F{y, 0};
    } else if (o == "lor") {
      f = F{~0ULL, y};
    } else {
      assert(o == "Rightarrow");
      f = F{y ^ ~0ULL, ~0ULL};
    }
    seg.apply(l1, r1, f);
    static vector<ull> seen;
    seen.clear();
    for (int i = l2; i < r2; i++) {
      seen.emplace_back(seg.get(i).b);
    }
    sort(all(seen));
    bool ok = false;
    rep(i, ssize(seen) - 1) {
      if (seen[i] == seen[i+1]) {
        ok = true;
        break;
      }
    }
    cout << (ok ? "Yes\n" : "No\n");
  }
}
0