結果

問題 No.206 数の積集合を求めるクエリ
ユーザー lumc_lumc_
提出日時 2018-03-21 19:26:56
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,029 ms / 7,000 ms
コード長 493 bytes
コンパイル時間 1,443 ms
コンパイル使用メモリ 159,616 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-24 19:39:11
合計ジャッジ時間 10,607 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 32 ms
5,376 KB
testcase_13 AC 28 ms
5,376 KB
testcase_14 AC 32 ms
5,376 KB
testcase_15 AC 32 ms
5,376 KB
testcase_16 AC 32 ms
5,376 KB
testcase_17 AC 19 ms
5,376 KB
testcase_18 AC 10 ms
5,376 KB
testcase_19 AC 17 ms
5,376 KB
testcase_20 AC 10 ms
5,376 KB
testcase_21 AC 12 ms
5,376 KB
testcase_22 AC 12 ms
5,376 KB
testcase_23 AC 18 ms
5,376 KB
testcase_24 AC 1,029 ms
5,376 KB
testcase_25 AC 1,025 ms
5,376 KB
testcase_26 AC 1,016 ms
5,376 KB
testcase_27 AC 735 ms
5,376 KB
testcase_28 AC 1,014 ms
5,376 KB
testcase_29 AC 1,015 ms
5,376 KB
testcase_30 AC 1,020 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

const int N = 1e5;
bitset<N> a, b;
int main() {
  ios::sync_with_stdio(false), cin.tie(0);
  int l, m, n; cin >> l >> m >> n;
  for(int i = 0; i < l; i++) {
    int x = 0; cin >> x; x--;
    a[x] = 1;
  }
  for(int i = 0; i < m; i++) {
    int x = 0; cin >> x; x--;
    b[x] = 1;
  }
  int q; cin >> q;
  cout << (a & b).count() << endl;
  for(int i = 1; i < q; i++) {
    b <<= 1;
    cout << (a & b).count() << endl;
  }
}
0