結果

問題 No.961 Vibrant Fillumination
ユーザー ei1333333ei1333333
提出日時 2019-12-24 02:26:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 5,146 bytes
コンパイル時間 2,649 ms
コンパイル使用メモリ 223,004 KB
実行使用メモリ 24,708 KB
最終ジャッジ日時 2023-10-19 10:52:10
合計ジャッジ時間 47,281 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 845 ms
24,708 KB
testcase_03 AC 869 ms
24,708 KB
testcase_04 AC 806 ms
24,708 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 831 ms
24,708 KB
testcase_09 AC 850 ms
24,708 KB
testcase_10 AC 1,046 ms
24,708 KB
testcase_11 AC 1,083 ms
24,708 KB
testcase_12 AC 1,080 ms
24,708 KB
testcase_13 AC 1,043 ms
24,708 KB
testcase_14 AC 1,075 ms
24,708 KB
testcase_15 AC 943 ms
24,708 KB
testcase_16 AC 1,063 ms
24,708 KB
testcase_17 AC 920 ms
24,708 KB
testcase_18 AC 1,105 ms
24,708 KB
testcase_19 AC 1,058 ms
24,708 KB
testcase_20 AC 1,000 ms
24,708 KB
testcase_21 AC 989 ms
24,708 KB
testcase_22 AC 957 ms
24,708 KB
testcase_23 AC 962 ms
24,708 KB
testcase_24 AC 1,039 ms
24,708 KB
testcase_25 AC 1,031 ms
24,708 KB
testcase_26 AC 687 ms
24,708 KB
testcase_27 AC 728 ms
24,708 KB
testcase_28 RE -
testcase_29 AC 814 ms
24,708 KB
testcase_30 AC 250 ms
23,124 KB
testcase_31 RE -
testcase_32 AC 360 ms
21,804 KB
testcase_33 RE -
testcase_34 AC 946 ms
24,708 KB
testcase_35 AC 956 ms
24,708 KB
testcase_36 AC 928 ms
24,708 KB
testcase_37 AC 918 ms
24,708 KB
testcase_38 AC 976 ms
24,708 KB
testcase_39 AC 849 ms
24,708 KB
testcase_40 AC 966 ms
24,708 KB
testcase_41 AC 837 ms
24,708 KB
testcase_42 AC 938 ms
24,708 KB
testcase_43 AC 942 ms
24,708 KB
testcase_44 AC 944 ms
24,708 KB
testcase_45 AC 912 ms
24,708 KB
testcase_46 AC 830 ms
24,708 KB
testcase_47 AC 878 ms
24,708 KB
testcase_48 AC 918 ms
24,708 KB
testcase_49 AC 939 ms
24,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using int64 = long long;
const int mod = 998244353;

const int64 infll = (1LL << 62) - 1;
const int inf = (1 << 30) - 1;

struct IoSetup {
  IoSetup() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    cout << fixed << setprecision(10);
    cerr << fixed << setprecision(10);
  }
} iosetup;


template< typename T1, typename T2 >
ostream &operator<<(ostream &os, const pair< T1, T2 > &p) {
  os << p.first << " " << p.second;
  return os;
}

template< typename T1, typename T2 >
istream &operator>>(istream &is, pair< T1, T2 > &p) {
  is >> p.first >> p.second;
  return is;
}

template< typename T >
ostream &operator<<(ostream &os, const vector< T > &v) {
  for(int i = 0; i < (int) v.size(); i++) {
    os << v[i] << (i + 1 != v.size() ? " " : "");
  }
  return os;
}

template< typename T >
istream &operator>>(istream &is, vector< T > &v) {
  for(T &in : v) is >> in;
  return is;
}

template< typename T1, typename T2 >
inline bool chmax(T1 &a, T2 b) { return a < b && (a = b, true); }

template< typename T1, typename T2 >
inline bool chmin(T1 &a, T2 b) { return a > b && (a = b, true); }

template< typename T = int64 >
vector< T > make_v(size_t a) {
  return vector< T >(a);
}

template< typename T, typename... Ts >
auto make_v(size_t a, Ts... ts) {
  return vector< decltype(make_v< T >(ts...)) >(a, make_v< T >(ts...));
}

template< typename T, typename V >
typename enable_if< is_class< T >::value == 0 >::type fill_v(T &t, const V &v) {
  t = v;
}

template< typename T, typename V >
typename enable_if< is_class< T >::value != 0 >::type fill_v(T &t, const V &v) {
  for(auto &e : t) fill_v(e, v);
}

template< typename F >
struct FixPoint : F {
  FixPoint(F &&f) : F(forward< F >(f)) {}

  template< typename... Args >
  decltype(auto) operator()(Args &&... args) const {
    return F::operator()(*this, forward< Args >(args)...);
  }
};

template< typename F >
inline decltype(auto) MFP(F &&f) {
  return FixPoint< F >{forward< F >(f)};
}

const int SQRT = 1000;

int main() {
  int N;
  cin >> N;
  vector< int64 > H(N);
  cin >> H;
  vector< int > B(N), D(N), E(N);
  vector< pair< int, int > > A(N), C(N);
  vector< vector< int > > vs(N);
  vector< pair< int, int > > xs;
  vector< int > sz(N);
  for(int i = 0; i < N; i++) {
    cin >> A[i].first >> B[i] >> C[i].first >> D[i] >> E[i];
    --E[i];
    sz[E[i]]++;
    A[i].second = i + 1;
    C[i].second = -(i + 1);
    xs.emplace_back(A[i]);
    xs.emplace_back(C[i]);
  }
  int Q;
  cin >> Q;
  vector< pair< int, int > > X(Q);
  vector< int > Y(Q);
  for(int i = 0; i < Q; i++) {
    cin >> X[i].first >> Y[i];
    X[i].second = inf;
  }


  sort(begin(xs), end(xs));

  vector< vector< pair< int, int > > > hs((xs.size() + SQRT - 1) / SQRT);
  for(int i = 0; i < Q; i++) {
    int pos = lower_bound(begin(xs), end(xs), X[i]) - begin(xs);
    hs[pos / SQRT].emplace_back(Y[i], i);
  }

  vector< vector< int > > Cs(xs.size()), As(xs.size()), Ds(2 * N), Bs(2 * N);
  for(int i = 0; i < N; i++) {
    int pos = lower_bound(begin(xs), end(xs), A[i]) - begin(xs);
    As[pos].emplace_back(i);
    pos = lower_bound(begin(xs), end(xs), C[i]) - begin(xs);
    Cs[pos].emplace_back(i);
    Bs[B[i]].emplace_back(i);
    Ds[D[i]].emplace_back(i);
  }


  auto include = [&](int idx, pair< int, int > x, int y) {
    return A[idx] <= x && x < C[idx] && B[idx] <= y && y < D[idx];
  };


  vector< int64 > ans(Q);

  for(int i = 0; i < hs.size(); i++) {
    auto &h = hs[i];
    sort(begin(h), end(h));

    int x = i * SQRT;
    int y = 0;

    vector< int > color(N);

    int64 hashed = 0;
    vector< int > exist(N);
    for(int j = 0; j < N; j++) {
      if(include(j, xs[x], y)) {
        exist[j] = true;
        if(color[E[j]]++ == 0) hashed ^= H[E[j]];
      }
    }
    for(auto &p : h) {
      while(xs[x] < X[p.second]) {
        ++x;
        for(auto &q : Cs[x]) {
          if(exist[q]) {
            exist[q] = false;
            if(--color[E[q]] == 0) hashed ^= H[E[q]];
          }
        }

        for(auto &q : As[x]) {
          if(!exist[q] && include(q, xs[x], y)) {
            exist[q] = true;
            if(color[E[q]]++ == 0) hashed ^= H[E[q]];
          }
        }

      }

      while(xs[x] > X[p.second]) {

        for(auto &q : As[x]) {
          if(exist[q]) {
            exist[q] = false;
            if(--color[E[q]] == 0) hashed ^= H[E[q]];
          }
        }

        for(auto &q : Cs[x]) {
          if(!exist[q] && include(q, xs[x - 1], y)) {
            exist[q] = true;
            if(color[E[q]]++ == 0) hashed ^= H[E[q]];
          }
        }


        --x;
      }

      while(y < p.first) {
        ++y;
        for(auto &q : Ds[y]) {
          if(exist[q]) {
            exist[q] = false;
            if(--color[E[q]] == 0) hashed ^= H[E[q]];
          }
        }

        for(auto &q : Bs[y]) {
          if(!exist[q] && include(q, xs[x], y)) {
            exist[q] = true;
            if(color[E[q]]++ == 0) hashed ^= H[E[q]];
          }
        }
      }

      ans[p.second] = hashed;
    }
  }

  for(int i = 0; i < Q; i++) {
    cout << ans[i] << "\n";
  }
}

0