結果

問題 No.961 Vibrant Fillumination
ユーザー 👑 kmjpkmjp
提出日時 2019-12-24 09:00:05
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 1,240 ms / 5,000 ms
コード長 2,740 bytes
コンパイル時間 1,978 ms
コンパイル使用メモリ 181,244 KB
実行使用メモリ 40,544 KB
最終ジャッジ日時 2023-10-23 23:52:56
合計ジャッジ時間 23,071 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
32,376 KB
testcase_01 AC 10 ms
32,376 KB
testcase_02 AC 330 ms
31,904 KB
testcase_03 AC 329 ms
31,980 KB
testcase_04 AC 331 ms
31,924 KB
testcase_05 AC 338 ms
31,896 KB
testcase_06 AC 331 ms
31,904 KB
testcase_07 AC 323 ms
31,984 KB
testcase_08 AC 309 ms
31,956 KB
testcase_09 AC 329 ms
33,800 KB
testcase_10 AC 206 ms
38,464 KB
testcase_11 AC 209 ms
40,340 KB
testcase_12 AC 206 ms
38,536 KB
testcase_13 AC 209 ms
38,484 KB
testcase_14 AC 203 ms
38,452 KB
testcase_15 AC 207 ms
38,500 KB
testcase_16 AC 209 ms
40,336 KB
testcase_17 AC 208 ms
38,516 KB
testcase_18 AC 207 ms
38,540 KB
testcase_19 AC 205 ms
38,468 KB
testcase_20 AC 209 ms
38,508 KB
testcase_21 AC 205 ms
38,496 KB
testcase_22 AC 209 ms
38,488 KB
testcase_23 AC 206 ms
36,744 KB
testcase_24 AC 204 ms
36,740 KB
testcase_25 AC 208 ms
38,484 KB
testcase_26 AC 191 ms
33,492 KB
testcase_27 AC 188 ms
38,132 KB
testcase_28 AC 193 ms
33,516 KB
testcase_29 AC 193 ms
38,320 KB
testcase_30 AC 169 ms
38,564 KB
testcase_31 AC 135 ms
31,456 KB
testcase_32 AC 191 ms
39,096 KB
testcase_33 AC 10 ms
32,372 KB
testcase_34 AC 204 ms
38,264 KB
testcase_35 AC 951 ms
40,544 KB
testcase_36 AC 1,240 ms
35,652 KB
testcase_37 AC 957 ms
37,140 KB
testcase_38 AC 819 ms
35,132 KB
testcase_39 AC 757 ms
35,228 KB
testcase_40 AC 631 ms
37,132 KB
testcase_41 AC 562 ms
37,412 KB
testcase_42 AC 501 ms
37,172 KB
testcase_43 AC 482 ms
37,088 KB
testcase_44 AC 432 ms
35,140 KB
testcase_45 AC 408 ms
35,300 KB
testcase_46 AC 390 ms
36,668 KB
testcase_47 AC 365 ms
35,112 KB
testcase_48 AC 398 ms
36,764 KB
testcase_49 AC 381 ms
35,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#undef _P
#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
//-------------------------------------------------------

int N;
ll H[505050];
int X1[505050],Y1[505050];
int X2[505050],Y2[505050];
vector<ll> Ys[101010];
int C[505050];

int Q;
int QX[101010],QY[101010];
ll ret[101010];
vector<int> add[101010],del[101010],query[101010];
int cnt[101010];

template<class V, int ME> class BITxor {
public:
	V bit[1<<ME];
	V operator()(int e) {if(e<0) return 0;V s=0;e++;while(e) s^=bit[e-1],e-=e&-e; return s;}
	void add(int e,V v) { e++; while(e<=1<<ME) bit[e-1]^=v,e+=e&-e;}
};
BITxor<ll,20> btx;

template<class V, int ME> class BITsum {
public:
	V bit[1<<ME];
	V operator()(int e) {if(e<0) return 0;V s=0;e++;while(e) s+=bit[e-1],e-=e&-e; return s;}
	void add(int e,V v) { e++; while(e<=1<<ME) bit[e-1]+=v,e+=e&-e;}
};
BITsum<int,20> bts;

int id[101010];

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N;
	FOR(i,N) cin>>H[i];
	FOR(i,N) {
		cin>>X1[i]>>Y1[i]>>X2[i]>>Y2[i]>>C[i];
		C[i]--;
		Ys[C[i]].push_back(Y1[i]);
		Ys[C[i]].push_back(Y2[i]);
		add[X1[i]].push_back(i);
		del[X2[i]].push_back(i);
	}
	
	FOR(i,N) {
		sort(ALL(Ys[i]));
		Ys[i].erase(unique(ALL(Ys[i])),Ys[i].end());
		id[i+1]=id[i]+Ys[i].size();
	}
	FOR(i,N) {
		Y1[i]=lower_bound(ALL(Ys[C[i]]),Y1[i])-Ys[C[i]].begin();
		Y2[i]=lower_bound(ALL(Ys[C[i]]),Y2[i])-Ys[C[i]].begin();
	}
	cin>>Q;
	FOR(i,Q) {
		cin>>QX[i]>>QY[i];
		query[QX[i]].push_back(i);
	}
	FOR(x,101000) {
		FORR(a,add[x]) if(Ys[C[a]].size()<=200) {
			for(y=Y1[a];y<Y2[a];y++) if(++cnt[y+id[C[a]]]==1) {
				btx.add(Ys[C[a]][y],H[C[a]]);
				btx.add(Ys[C[a]][y+1],H[C[a]]);
			}
		}
		FORR(a,del[x]) if(Ys[C[a]].size()<=200) {
			for(y=Y1[a];y<Y2[a];y++) if(--cnt[y+id[C[a]]]==0) {
				btx.add(Ys[C[a]][y],H[C[a]]);
				btx.add(Ys[C[a]][y+1],H[C[a]]);
			}
		}
		FORR(q,query[x]) ret[q]=btx(QY[q]);
	}
	FOR(i,101000) if(Ys[i].size()>200) {
		FOR(x,101000) {
			FORR(a,add[x]) if(C[a]==i) {
				bts.add(Ys[i][Y1[a]],1);
				bts.add(Ys[i][Y2[a]],-1);
			}
			FORR(a,del[x]) if(C[a]==i) {
				bts.add(Ys[i][Y1[a]],-1);
				bts.add(Ys[i][Y2[a]],1);
			}
			FORR(q,query[x]) if(bts(QY[q])>0) ret[q]^=H[i];
		}
		
	}
	FOR(i,Q) cout<<ret[i]<<endl;
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0