結果

問題 No.206 数の積集合を求めるクエリ
ユーザー tottoripapertottoripaper
提出日時 2015-05-10 11:07:10
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 3,817 ms / 7,000 ms
コード長 679 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 24,064 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-05 21:31:35
合計ジャッジ時間 21,833 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 4 ms
5,376 KB
testcase_14 AC 4 ms
5,376 KB
testcase_15 AC 4 ms
5,376 KB
testcase_16 AC 4 ms
5,376 KB
testcase_17 AC 22 ms
5,376 KB
testcase_18 AC 12 ms
5,376 KB
testcase_19 AC 21 ms
5,376 KB
testcase_20 AC 11 ms
5,376 KB
testcase_21 AC 15 ms
5,376 KB
testcase_22 AC 15 ms
5,376 KB
testcase_23 AC 21 ms
5,376 KB
testcase_24 AC 2,649 ms
5,376 KB
testcase_25 AC 2,793 ms
5,376 KB
testcase_26 AC 3,817 ms
5,376 KB
testcase_27 AC 2,175 ms
5,376 KB
testcase_28 AC 2,640 ms
5,376 KB
testcase_29 AC 3,298 ms
5,376 KB
testcase_30 AC 2,628 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:10:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   10 |     scanf("%d %d %d", &L, &M, &N);
      |     ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
main.cpp:14:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   14 |         scanf("%d", &a);
      |         ~~~~~^~~~~~~~~~
main.cpp:21:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   21 |         scanf("%d", &b);
      |         ~~~~~^~~~~~~~~~
main.cpp:26:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   26 |     scanf("%d", &Q);
      |     ~~~~~^~~~~~~~~~

ソースコード

diff #

// Wrongri-La Shower

#include<cstdio>

int L, M, N;
unsigned int A[14000], B[14000];
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-1>>5] |= 1u << (a-1&31);
    }
    
    for(int i=0;i<M;i++){
        int b;
        scanf("%d", &b);

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

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

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