結果
問題 | No.961 Vibrant Fillumination |
ユーザー | chocorusk |
提出日時 | 2019-12-24 02:14:37 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 3,633 bytes |
コンパイル時間 | 1,704 ms |
コンパイル使用メモリ | 130,796 KB |
実行使用メモリ | 814,784 KB |
最終ジャッジ日時 | 2024-09-22 17:11:29 |
合計ジャッジ時間 | 15,216 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 8 ms
16,512 KB |
testcase_01 | AC | 7 ms
16,640 KB |
testcase_02 | AC | 247 ms
24,828 KB |
testcase_03 | AC | 253 ms
24,080 KB |
testcase_04 | AC | 260 ms
23,980 KB |
testcase_05 | AC | 246 ms
23,868 KB |
testcase_06 | AC | 272 ms
23,860 KB |
testcase_07 | AC | 250 ms
23,988 KB |
testcase_08 | AC | 244 ms
23,860 KB |
testcase_09 | AC | 250 ms
24,000 KB |
testcase_10 | AC | 155 ms
28,380 KB |
testcase_11 | AC | 162 ms
28,432 KB |
testcase_12 | AC | 154 ms
28,224 KB |
testcase_13 | AC | 153 ms
28,352 KB |
testcase_14 | AC | 163 ms
29,336 KB |
testcase_15 | AC | 155 ms
27,460 KB |
testcase_16 | AC | 166 ms
29,628 KB |
testcase_17 | AC | 152 ms
27,516 KB |
testcase_18 | AC | 156 ms
28,464 KB |
testcase_19 | AC | 156 ms
28,204 KB |
testcase_20 | AC | 159 ms
28,304 KB |
testcase_21 | AC | 158 ms
27,616 KB |
testcase_22 | AC | 158 ms
27,592 KB |
testcase_23 | AC | 160 ms
27,308 KB |
testcase_24 | AC | 160 ms
27,988 KB |
testcase_25 | AC | 159 ms
28,592 KB |
testcase_26 | AC | 117 ms
24,064 KB |
testcase_27 | AC | 123 ms
27,904 KB |
testcase_28 | AC | 121 ms
24,072 KB |
testcase_29 | AC | 125 ms
28,032 KB |
testcase_30 | AC | 98 ms
23,920 KB |
testcase_31 | AC | 83 ms
22,656 KB |
testcase_32 | AC | 113 ms
25,216 KB |
testcase_33 | AC | 7 ms
16,640 KB |
testcase_34 | MLE | - |
testcase_35 | MLE | - |
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 <cstdio> #include <cstring> #include <iostream> #include <string> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <complex> #include <unordered_map> #include <unordered_set> #include <random> #include <cassert> #include <fstream> #include <utility> #include <functional> #include <time.h> #include <stack> #include <array> #define popcount __builtin_popcount using namespace std; typedef long long int ll; typedef pair<int, int> P; typedef pair<P, ll> Pl; template<typename T> struct BIT{ //1-indexed using F=function<T(T, T)>; const F f; vector<T> bit; int size; BIT(int n, const F f):f(f), size(n), bit(n+1, 0){} T sum(int i){ T s=0; while(i>0){ s=f(s, bit[i]); i-=(i&(-i)); } return s; } void add(int i, T x){ while(i<=size){ bit[i]=f(bit[i], x); i+=(i&(-i)); } } }; int n, Q; ll h[50050]; vector<int> ind[50050]; int a[50050], b[50050], c[50050], d[50050], e[50050]; ll ans[50050]; int q[50050]; vector<int> vq[100010]; vector<int> vl[100010], vr[100010]; void calc(int e){ BIT<int> bit(2*n, [](int a, int b){ return a+b;}); for(auto k:ind[e]){ vl[a[k]].push_back(k); vr[c[k]].push_back(k); } for(int i=0; i<2*n; i++){ for(auto k:vl[i]){ bit.add(b[k]+1, 1); bit.add(d[k]+1, -1); } for(auto k:vr[i]){ bit.add(b[k]+1, -1); bit.add(d[k]+1, 1); } for(auto k:vq[i]){ if(bit.sum(q[k]+1)>0) ans[k]^=h[e]; } vl[i].clear(); vr[i].clear(); } } int sum[500][500]; vector<Pl> vl2[100010], vr2[100010]; void calc2(int e){ if(ind[e].empty()) return; vector<int> vx(2*ind[e].size()), vy(2*ind[e].size()); int j=0; for(int j=0; j<ind[e].size(); j++){ int k=ind[e][j]; vx[2*j]=a[k], vx[2*j+1]=c[k], vy[2*j]=b[k], vy[2*j+1]=d[k]; } sort(vx.begin(), vx.end()); vx.erase(unique(vx.begin(), vx.end()), vx.end()); sort(vy.begin(), vy.end()); vy.erase(unique(vy.begin(), vy.end()), vy.end()); int nx=vx.size(), ny=vy.size(); for(int i=0; i<nx; i++) fill(sum[i], sum[i]+ny, 0); for(auto k:ind[e]){ int a1=lower_bound(vx.begin(), vx.end(), a[k])-vx.begin(); int b1=lower_bound(vy.begin(), vy.end(), b[k])-vy.begin(); int c1=lower_bound(vx.begin(), vx.end(), c[k])-vx.begin(); int d1=lower_bound(vy.begin(), vy.end(), d[k])-vy.begin(); sum[a1][b1]++; sum[a1][d1]--; sum[c1][b1]--; sum[c1][d1]++; } for(int i=0; i<nx; i++) for(int j=1; j<ny; j++) sum[i][j]+=sum[i][j-1]; for(int i=1; i<nx; i++) for(int j=0; j<ny; j++) sum[i][j]+=sum[i-1][j]; for(int i=0; i<nx-1; i++){ for(int j=0; j<ny-1; j++){ if(sum[i][j]>0){ vl2[vx[i]].push_back({{vy[j], vy[j+1]}, h[e]}); vr2[vx[i+1]].push_back({{vy[j], vy[j+1]}, h[e]}); } } } } void calc3(){ BIT<ll> bit(2*n, [](ll x, ll y){ return (x^y);}); for(int i=0; i<2*n; i++){ for(auto p:vl2[i]){ bit.add(p.first.first+1, p.second); bit.add(p.first.second+1, p.second); } for(auto p:vr2[i]){ bit.add(p.first.first+1, p.second); bit.add(p.first.second+1, p.second); } for(auto k:vq[i]){ ans[k]^=bit.sum(q[k]+1); } } } int main() { cin>>n; for(int i=0; i<n; i++) scanf("%lld", &h[i]); for(int i=0; i<n; i++){ scanf("%d %d %d %d %d", &a[i], &b[i], &c[i], &d[i], &e[i]); e[i]--; ind[e[i]].push_back(i); } cin>>Q; for(int i=0; i<Q; i++){ int pi; scanf("%d %d", &pi, &q[i]); vq[pi].push_back(i); } for(int i=0; i<n; i++){ if(ind[i].size()>=200) calc(i); else calc2(i); } calc3(); for(int i=0; i<Q; i++){ printf("%lld\n", ans[i]); } return 0; }