結果
問題 | No.206 数の積集合を求めるクエリ |
ユーザー | startcpp |
提出日時 | 2015-05-08 22:47:42 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,133 bytes |
コンパイル時間 | 557 ms |
コンパイル使用メモリ | 79,088 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-05 19:05:55 |
合計ジャッジ時間 | 6,984 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
5,248 KB |
testcase_01 | AC | 5 ms
5,376 KB |
testcase_02 | AC | 4 ms
5,376 KB |
testcase_03 | AC | 5 ms
5,376 KB |
testcase_04 | AC | 6 ms
5,376 KB |
testcase_05 | AC | 6 ms
5,376 KB |
testcase_06 | AC | 5 ms
5,376 KB |
testcase_07 | AC | 5 ms
5,376 KB |
testcase_08 | AC | 6 ms
5,376 KB |
testcase_09 | AC | 5 ms
5,376 KB |
testcase_10 | AC | 5 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 53 ms
5,376 KB |
testcase_18 | AC | 29 ms
5,376 KB |
testcase_19 | AC | 48 ms
5,376 KB |
testcase_20 | AC | 28 ms
5,376 KB |
testcase_21 | AC | 35 ms
5,376 KB |
testcase_22 | AC | 34 ms
5,376 KB |
testcase_23 | AC | 49 ms
5,376 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
ソースコード
//久しぶりに一から解く //unsigned intにしないと死にます!! #include<iostream> #include<string> #include<algorithm> #include<functional> #include<vector> #include<stack> #include<queue> #include<set> #include<map> #include<cstdio> #include<cstdlib> #include<cstring> #include<cmath> using namespace std; int l, m, n; int a[100000], b[100000]; int q; unsigned int ua[4000], ub[4000]; signed main() { int i, j; cin >> l >> m >> n; for (i = 0; i < l; i++) { cin >> a[i]; ua[(a[i]/32)] += (1<<(a[i]%32)); } for (i = 0; i < m; i++) { cin >> b[i]; ub[(b[i]/32)] += (1<<(b[i]%32)); } cin >> q; int bitcnt[65536] = {0}; for (i = 0; i < 65536; i++) { for (j = 0; j < 16; j++) { if ((i>>j)&1) { bitcnt[i]++; } } } int len = n/32 + 3; static int ans[100000] = {0}; for (i = 0; i < q; i++) { for (j = 0; j < len; j++) { unsigned int t = ua[j]&ub[j]; ans[i] += bitcnt[(t>>16)] + bitcnt[(t&(unsigned int)65535)]; } for (j = 0; j < len; j++) { ub[j-1] += (ub[j]>>31); ub[j] = (ub[j]<<1); } } for (i = 0; i < q; i++) { cout << ans[i] << endl; } return 0; }