結果

問題 No.468 役に立つ競技プログラミング実践編
ユーザー YamyukiYamyuki
提出日時 2016-12-19 17:44:10
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 243 ms / 2,000 ms
コード長 1,583 bytes
コンパイル時間 634 ms
コンパイル使用メモリ 23,040 KB
実行使用メモリ 22,112 KB
最終ジャッジ日時 2024-12-14 09:00:35
合計ジャッジ時間 4,222 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 3 ms
6,816 KB
testcase_15 AC 4 ms
6,816 KB
testcase_16 AC 4 ms
6,820 KB
testcase_17 AC 4 ms
8,420 KB
testcase_18 AC 3 ms
6,816 KB
testcase_19 AC 4 ms
6,820 KB
testcase_20 AC 4 ms
6,820 KB
testcase_21 AC 4 ms
6,816 KB
testcase_22 AC 4 ms
6,820 KB
testcase_23 AC 4 ms
6,820 KB
testcase_24 AC 234 ms
21,124 KB
testcase_25 AC 238 ms
19,844 KB
testcase_26 AC 243 ms
19,820 KB
testcase_27 AC 238 ms
20,124 KB
testcase_28 AC 238 ms
20,028 KB
testcase_29 AC 241 ms
19,808 KB
testcase_30 AC 237 ms
21,640 KB
testcase_31 AC 237 ms
21,112 KB
testcase_32 AC 240 ms
20,024 KB
testcase_33 AC 238 ms
22,112 KB
testcase_34 AC 50 ms
9,264 KB
testcase_35 AC 2 ms
6,820 KB
testcase_36 AC 2 ms
6,816 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:64:9: warning: implicit declaration of function ‘memset’ [-Wimplicit-function-declaration]
   64 |         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:64:9: warning: incompatible implicit declaration of built-in function ‘memset’ [-Wbuiltin-declaration-mismatch]
   64 |         memset(limit,1,sizeof(limit));
      |         ^~~~~~
main.c:64: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);
      |                 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#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;
		}
	}
	count=1;
	for(i=0;i<n;i++){
		count--;
		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];
	count=1;
	for(i=0;i<n;i++){
		count--;
		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;
}
0