結果

問題 No.206 数の積集合を求めるクエリ
ユーザー furafura
提出日時 2020-07-28 00:18:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 309 ms / 7,000 ms
コード長 746 bytes
コンパイル時間 1,941 ms
コンパイル使用メモリ 198,184 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-11 06:12:12
合計ジャッジ時間 6,159 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 1 ms
4,376 KB
testcase_11 AC 3 ms
4,376 KB
testcase_12 AC 18 ms
4,376 KB
testcase_13 AC 16 ms
4,380 KB
testcase_14 AC 18 ms
4,380 KB
testcase_15 AC 18 ms
4,380 KB
testcase_16 AC 18 ms
4,380 KB
testcase_17 AC 22 ms
4,376 KB
testcase_18 AC 12 ms
4,380 KB
testcase_19 AC 20 ms
4,380 KB
testcase_20 AC 12 ms
4,376 KB
testcase_21 AC 14 ms
4,380 KB
testcase_22 AC 15 ms
4,376 KB
testcase_23 AC 20 ms
4,376 KB
testcase_24 AC 309 ms
4,380 KB
testcase_25 AC 308 ms
4,376 KB
testcase_26 AC 300 ms
4,376 KB
testcase_27 AC 272 ms
4,376 KB
testcase_28 AC 303 ms
4,380 KB
testcase_29 AC 303 ms
4,380 KB
testcase_30 AC 299 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i,n) for(int i=0;i<(n);i++)

using namespace std;

inline int popcount(unsigned long long x){
	x-=(x>>1)&0x5555555555555555LL;
	x=(x&0x3333333333333333LL)+((x>>2)&0x3333333333333333LL);
	x=(x+(x>>4))&0x0f0f0f0f0f0f0f0fLL;
	x=(x*0x0101010101010101LL)>>56;
	return x;
}

int main(){
	int m,n; scanf("%d%d%*d",&m,&n);

	unsigned long long A[1600]={},B[1600]={};
	rep(i,m){ int a; scanf("%d",&a); A[a/64]|=1ULL<<a%64; }
	rep(i,n){ int b; scanf("%d",&b); B[b/64]|=1ULL<<b%64; }

	int q; scanf("%d",&q);
	rep(i,q){
		int d1=i/64,d2=i%64;
		int ans=0;
		for(int x=d1;x<1600;x++){
			auto b=B[x-d1]<<d2;
			if(x>d1 && d2>0) b|=B[x-d1-1]>>(64-d2);
			ans+=popcount(A[x]&b);
		}
		printf("%d\n",ans);
	}

	return 0;
}
0