結果

問題 No.206 数の積集合を求めるクエリ
ユーザー tottoripapertottoripaper
提出日時 2015-05-10 10:48:15
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 560 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 25,912 KB
実行使用メモリ 4,504 KB
最終ジャッジ日時 2023-09-19 09:41:46
合計ジャッジ時間 9,106 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<cstdio>

int L, M, N;
unsigned A[7000], B[7000];
int Q;

int main(){
    scanf("%d %d %d", &L, &M, &N);
    
    for(int i=0;i<L;i++){
        int a;
        scanf("%d", &a);

        A[a>>5] |= 1u << (a&31);
    }
    for(int i=0;i<M;i++){
        int b;
        scanf("%d", &b);

        B[b>>5] |= 1u << (b&31);
    }

    scanf("%d", &Q);
    for(int i=0;i<Q;i++){
        int res = 0;
        for(int j=0;j<(N+31)>>5;j++){
            res += __builtin_popcount(A[j] & B[j]);
            B[j] <<= 1;
        }

        printf("%d\n", res);
    }
}
0