結果
問題 | No.961 Vibrant Fillumination |
ユーザー | ei1333333 |
提出日時 | 2019-12-24 02:07:22 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 4,817 bytes |
コンパイル時間 | 2,767 ms |
コンパイル使用メモリ | 222,368 KB |
実行使用メモリ | 26,520 KB |
最終ジャッジ日時 | 2024-09-19 06:28:05 |
合計ジャッジ時間 | 30,210 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 518 ms
23,960 KB |
testcase_03 | AC | 528 ms
23,836 KB |
testcase_04 | AC | 524 ms
23,860 KB |
testcase_05 | AC | 473 ms
23,832 KB |
testcase_06 | AC | 511 ms
23,836 KB |
testcase_07 | AC | 492 ms
23,832 KB |
testcase_08 | AC | 521 ms
23,872 KB |
testcase_09 | AC | 502 ms
23,828 KB |
testcase_10 | AC | 670 ms
23,832 KB |
testcase_11 | AC | 648 ms
23,828 KB |
testcase_12 | AC | 622 ms
23,960 KB |
testcase_13 | AC | 622 ms
23,956 KB |
testcase_14 | AC | 666 ms
23,832 KB |
testcase_15 | AC | 585 ms
23,836 KB |
testcase_16 | AC | 653 ms
23,836 KB |
testcase_17 | AC | 609 ms
23,832 KB |
testcase_18 | AC | 616 ms
23,736 KB |
testcase_19 | AC | 611 ms
23,832 KB |
testcase_20 | AC | 639 ms
23,848 KB |
testcase_21 | AC | 610 ms
23,828 KB |
testcase_22 | AC | 598 ms
23,828 KB |
testcase_23 | AC | 576 ms
23,960 KB |
testcase_24 | AC | 583 ms
23,828 KB |
testcase_25 | AC | 585 ms
23,904 KB |
testcase_26 | AC | 417 ms
23,956 KB |
testcase_27 | AC | 439 ms
23,960 KB |
testcase_28 | AC | 482 ms
23,836 KB |
testcase_29 | AC | 539 ms
23,604 KB |
testcase_30 | AC | 2,515 ms
20,988 KB |
testcase_31 | TLE | - |
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 | -- | - |
ソースコード
#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 = 1333; int main() { int N; cin >> N; vector< int64 > H(N); cin >> H; vector< int > A(N), B(N), C(N), D(N), E(N); vector< vector< int > > vs(N); vector< int > xs; vector< int > sz(N); for(int i = 0; i < N; i++) { cin >> A[i] >> B[i] >> C[i] >> D[i] >> E[i]; --E[i]; sz[E[i]]++; xs.emplace_back(A[i]); xs.emplace_back(C[i]); } int Q; cin >> Q; vector< int > X(Q), Y(Q); for(int i = 0; i < Q; i++) { cin >> X[i] >> Y[i]; } 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(2 * N), As(2 * N), Ds(2 * N), Bs(2 * N); for(int i = 0; i < N; i++) { As[A[i]].emplace_back(i); Cs[C[i]].emplace_back(i); Bs[B[i]].emplace_back(i); Ds[D[i]].emplace_back(i); } auto include = [&](int idx, 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 = xs[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, x, y)) { exist[j] = true; if(color[E[j]]++ == 0) hashed ^= H[E[j]]; } } for(auto &p : h) { while(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, x, y)) { exist[q] = true; if(color[E[q]]++ == 0) hashed ^= H[E[q]]; } } } while(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, 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, 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"; } }