結果
問題 | No.472 平均順位 |
ユーザー | akakimidori |
提出日時 | 2017-05-06 03:08:13 |
言語 | C90 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 242 ms / 2,000 ms |
コード長 | 1,116 bytes |
コンパイル時間 | 1,345 ms |
コンパイル使用メモリ | 22,784 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-14 10:47:17 |
合計ジャッジ時間 | 3,114 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 0 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 0 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 3 ms
5,376 KB |
testcase_09 | AC | 9 ms
5,376 KB |
testcase_10 | AC | 9 ms
5,376 KB |
testcase_11 | AC | 31 ms
5,376 KB |
testcase_12 | AC | 24 ms
5,376 KB |
testcase_13 | AC | 125 ms
5,376 KB |
testcase_14 | AC | 231 ms
5,376 KB |
testcase_15 | AC | 119 ms
5,376 KB |
testcase_16 | AC | 242 ms
5,376 KB |
testcase_17 | AC | 236 ms
5,376 KB |
testcase_18 | AC | 15 ms
5,376 KB |
testcase_19 | AC | 78 ms
5,376 KB |
コンパイルメッセージ
main.c: In function ‘run’: main.c:29:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 29 | scanf("%d%d",&n,&p); | ^~~~~~~~~~~~~~~~~~~ main.c:33:5: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 33 | scanf("%d%d%d",a+POS(0,i),a+POS(1,i),a+POS(2,i)); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include<stdio.h> #include<stdlib.h> #define MIN(a,b) ((a)<(b)?(a):(b)) #define MAX(a,b) ((a)>(b)?(a):(b)) #define POS(i,j) ((i)*n+(j)) void initMAX(int *array,int n){ int i; for(i=0;i<n;i++){ array[i]=~(1<<31); } return; } void print_array(int *array,int n){ int i; for(i=0;i<n;i++){ printf("%d ",array[i]); } printf("\n"); return; } void run(void){ const int f=4; int n,p; scanf("%d%d",&n,&p); int *a=(int *)malloc(sizeof(int)*4*n); int i; for(i=0;i<n;i++){ scanf("%d%d%d",a+POS(0,i),a+POS(1,i),a+POS(2,i)); a[POS(3,i)]=1; } int *now=(int *)calloc(3*n+1,sizeof(int)); int *next=(int *)calloc(3*n+1,sizeof(int)); for(i=0;i<f;i++){ now[i]=a[POS(i,0)]; } //print_array(now,f); for(i=1;i<n;i++){ initMAX(next,3*n+1); int j; for(j=0;j<=MIN(p,3*i);j++){ int k; for(k=0;k<f;k++){ next[j+k]=MIN(next[j+k],now[j]+a[POS(k,i)]); } } //print_array(next,3*(i+1)+1); int *swap=next; next=now; now=swap; } printf("%.5lf\n",(double)now[p]/n); return; } int main(void){ run(); return 0; }