結果
問題 | No.961 Vibrant Fillumination |
ユーザー | ei1333333 |
提出日時 | 2019-12-24 02:26:56 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 5,146 bytes |
コンパイル時間 | 2,848 ms |
コンパイル使用メモリ | 221,704 KB |
実行使用メモリ | 24,860 KB |
最終ジャッジ日時 | 2024-09-19 07:02:48 |
合計ジャッジ時間 | 38,721 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 627 ms
24,736 KB |
testcase_03 | AC | 750 ms
24,608 KB |
testcase_04 | AC | 619 ms
24,736 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | AC | 678 ms
24,740 KB |
testcase_09 | AC | 681 ms
24,604 KB |
testcase_10 | AC | 815 ms
24,740 KB |
testcase_11 | AC | 881 ms
24,740 KB |
testcase_12 | AC | 805 ms
24,840 KB |
testcase_13 | AC | 838 ms
24,732 KB |
testcase_14 | AC | 919 ms
24,736 KB |
testcase_15 | AC | 808 ms
24,608 KB |
testcase_16 | AC | 919 ms
24,652 KB |
testcase_17 | AC | 774 ms
24,580 KB |
testcase_18 | AC | 951 ms
24,728 KB |
testcase_19 | AC | 869 ms
24,736 KB |
testcase_20 | AC | 785 ms
24,628 KB |
testcase_21 | AC | 806 ms
24,700 KB |
testcase_22 | AC | 746 ms
24,640 KB |
testcase_23 | AC | 772 ms
24,608 KB |
testcase_24 | AC | 731 ms
24,648 KB |
testcase_25 | AC | 777 ms
24,676 KB |
testcase_26 | AC | 503 ms
24,836 KB |
testcase_27 | AC | 563 ms
24,608 KB |
testcase_28 | RE | - |
testcase_29 | AC | 641 ms
24,736 KB |
testcase_30 | AC | 231 ms
23,200 KB |
testcase_31 | RE | - |
testcase_32 | AC | 328 ms
21,796 KB |
testcase_33 | RE | - |
testcase_34 | AC | 711 ms
24,664 KB |
testcase_35 | AC | 781 ms
24,736 KB |
testcase_36 | AC | 682 ms
24,856 KB |
testcase_37 | AC | 727 ms
24,740 KB |
testcase_38 | AC | 762 ms
24,736 KB |
testcase_39 | AC | 664 ms
24,740 KB |
testcase_40 | AC | 766 ms
24,736 KB |
testcase_41 | AC | 710 ms
24,740 KB |
testcase_42 | AC | 749 ms
24,712 KB |
testcase_43 | AC | 722 ms
24,736 KB |
testcase_44 | AC | 695 ms
24,732 KB |
testcase_45 | AC | 711 ms
24,736 KB |
testcase_46 | AC | 663 ms
24,832 KB |
testcase_47 | AC | 690 ms
24,860 KB |
testcase_48 | AC | 738 ms
24,720 KB |
testcase_49 | AC | 744 ms
24,608 KB |
ソースコード
#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"; } }