結果
問題 | No.468 役に立つ競技プログラミング実践編 |
ユーザー | Yamyuki |
提出日時 | 2016-12-19 17:37:18 |
言語 | C90 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,563 bytes |
コンパイル時間 | 300 ms |
コンパイル使用メモリ | 22,912 KB |
実行使用メモリ | 21,864 KB |
最終ジャッジ日時 | 2024-05-08 07:01:49 |
合計ジャッジ時間 | 4,263 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 49 ms
8,992 KB |
testcase_35 | AC | 2 ms
5,376 KB |
testcase_36 | AC | 2 ms
5,376 KB |
コンパイルメッセージ
main.c:13:6: warning: built-in function ‘index’ declared as non-function [-Wbuiltin-declaration-mismatch] 13 | long index[100000]; | ^~~~~ main.c: In function ‘main’: main.c:63:9: warning: implicit declaration of function ‘memset’ [-Wimplicit-function-declaration] 63 | memset(limit,1,sizeof(limit)); | ^~~~~~ main.c:3:1: note: include ‘<string.h>’ or provide a declaration of ‘memset’ 2 | #include<stdlib.h> +++ |+#include <string.h> 3 | #define max(x,y) ((x)>(y)?(x):(y)) main.c:63:9: warning: incompatible implicit declaration of built-in function ‘memset’ [-Wbuiltin-declaration-mismatch] 63 | memset(limit,1,sizeof(limit)); | ^~~~~~ main.c:63:9: note: include ‘<string.h>’ or provide a declaration of ‘memset’ main.c:27:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 27 | scanf("%ld %ld",&n,&m); | ^~~~~~~~~~~~~~~~~~~~~~ main.c:29:17: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 29 | scanf("%ld %ld %d",&pass[i].f,&pass[i].e,&pass[i].cost); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include<stdio.h> #include<stdlib.h> #define max(x,y) ((x)>(y)?(x):(y)) #define min(x,y) ((x)<(y)?(x):(y)) long n,m,work[100000]; typedef struct{ int cost; long f,e; } node; node pass[500000]; long index[100000]; long next[100000]; long time[100000]; long limit[100000]; int cmp_1(const void *a,const void*b){ return ((node*)a)->f-((node*)b)->f; } int cmp_2(const void*a,const void*b){ return ((node*)a)->e-((node*)b)->e; } int main(){ long i,j,count,cri; scanf("%ld %ld",&n,&m); for(i=0;i<m;i++){ scanf("%ld %ld %d",&pass[i].f,&pass[i].e,&pass[i].cost); work[pass[i].e]++; } qsort(pass,m,sizeof(node),cmp_1); j=0; for(i=0;i<m && j<n-1;i++){ if(pass[i].f!=j){ j++; index[j]=i; } } for(i=0;i<n;i++){ count=0; for(j=index[next[i]];pass[j].f==next[i];j++){ time[pass[j].e]=max(time[pass[j].e],time[next[i]]+(long)pass[j].cost); work[pass[j].e]--; if(work[pass[j].e]==0){ count++; next[i+count]=pass[j].e; } } } printf("%ld ",time[n-1]); qsort(pass,m,sizeof(node),cmp_2); j=0; for(i=0;i<m;i++){ if(pass[i].e!=j){ j++; index[j]=i; } work[pass[i].f]++; } cri=1; next[0]=n-1; memset(limit,1,sizeof(limit)); limit[n-1]=time[n-1]; for(i=0;i<n;i++){ count=0; for(j=index[next[i]];pass[j].e==next[i];j++){ limit[pass[j].f]=min(limit[pass[j].f],limit[next[i]]-(long)pass[j].cost); work[pass[j].f]--; if(work[pass[j].f]==0){ if(time[pass[j].f]==limit[pass[j].f]){ cri++; } count++; next[i+count]=pass[j].f; } } } printf("%ld/%ld\n",n-cri,n); return 0; }