結果

問題 No.206 数の積集合を求めるクエリ
ユーザー akakimidoriakakimidori
提出日時 2016-12-12 01:57:43
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 5,194 ms / 7,000 ms
コード長 1,131 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 22,528 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-29 12:14:35
合計ジャッジ時間 29,128 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 0 ms
5,248 KB
testcase_11 AC 0 ms
5,248 KB
testcase_12 AC 6 ms
5,248 KB
testcase_13 AC 5 ms
5,248 KB
testcase_14 AC 6 ms
5,248 KB
testcase_15 AC 7 ms
5,248 KB
testcase_16 AC 1 ms
5,248 KB
testcase_17 AC 29 ms
5,248 KB
testcase_18 AC 15 ms
5,248 KB
testcase_19 AC 28 ms
5,248 KB
testcase_20 AC 11 ms
5,248 KB
testcase_21 AC 19 ms
5,248 KB
testcase_22 AC 21 ms
5,248 KB
testcase_23 AC 31 ms
5,248 KB
testcase_24 AC 5,194 ms
5,248 KB
testcase_25 AC 4,899 ms
5,248 KB
testcase_26 AC 2,617 ms
5,248 KB
testcase_27 AC 2,162 ms
5,248 KB
testcase_28 AC 4,907 ms
5,248 KB
testcase_29 AC 3,216 ms
5,248 KB
testcase_30 AC 3,714 ms
5,248 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘run’:
main.c:48:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   48 |   scanf("%d%d%d",&l,&m,&n);
      |   ^~~~~~~~~~~~~~~~~~~~~~~~
main.c:54:5: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   54 |     scanf("%d",&index);
      |     ^~~~~~~~~~~~~~~~~~
main.c:60:5: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   60 |     scanf("%d",b+i);
      |     ^~~~~~~~~~~~~~~
main.c:66:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   66 |   scanf("%d",&q);
      |   ^~~~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>
#include<stdlib.h>
#include<time.h>

void qsort8(int *a,int n){
  if(n<=8) return;

  int p=rand()%n;
  int pivot=a[p];
  a[p]=a[0];
  int l=1;
  int r=n-1;
  while(l<=r){
    if(a[l]<pivot){
      a[l-1]=a[l];
      l++;
    } else {
      int swap=a[r];
      a[r]=a[l];
      a[l]=swap;
      r--;
    }
  }
  a[r]=pivot;
  qsort8(a,r);
  qsort8(a+r+1,n-r-1);
  return;
}

void sort(int *a,int n){
  qsort8(a,n);

  int i;
  for(i=1;i<n;i++){
    int p=a[i];
    int j=i-1;
    while(j>=0 && a[j]>p){
      a[j+1]=a[j];
      j--;
    }
    a[j+1]=p;
  }
  return;
}

void run(void){
  int l,m,n;
  scanf("%d%d%d",&l,&m,&n);

  char *a=(char *)calloc(n+1,sizeof(char));
  int i;
  for(i=0;i<l;i++){
    int index;
    scanf("%d",&index);
    a[index]=1;
  }

  int *b=(int *)malloc(sizeof(int)*m);
  for(i=0;i<m;i++){
    scanf("%d",b+i);
  }
  srand((unsigned)time(NULL));
  sort(b,m);

  int q;
  scanf("%d",&q);
  for(i=0;i<q;i++){
    int count=0;
    int k;
    for(k=0;k<m && b[k]+i<=n;k++){
      count+=a[b[k]+i];
    }
    printf("%d\n",count);
  }
  return;
}

int main(void){
  run();
  return 0;
}
0