結果

問題 No.206 数の積集合を求めるクエリ
ユーザー tottoripapertottoripaper
提出日時 2015-05-09 00:16:57
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 842 bytes
コンパイル時間 107 ms
コンパイル使用メモリ 24,064 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-05 20:52:31
合計ジャッジ時間 3,232 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

// REgri-La Shower

#include <cstdio>

int L, M, N;
int A[100000], B[100000];
int counter[200010];
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];
    }

    for(int i=0;i<M;i++){
        int b;
        scanf("%d", &b);
        ++B[--b];
    }

    int v, next, t;
    for(int i=0,j;i<N;){
        while(i < N && B[i] == 0){++i;}
        if(i == N){break;}
        
        j = i;
        
        v = 0;
        while(j < N && B[j] == 1){
            v += A[j++];
        }
        counter[0] += v;

        next = j;
        t = 1;
        while(j < 2*N){
            v += A[j++] - A[i++];
            counter[t++] += v;
        }

        i = next;
    }

    scanf("%d", &Q);
    for(int i=0;i<Q;i++){
        printf("%d\n", counter[i]);
    }
}
0