結果

問題 No.468 役に立つ競技プログラミング実践編
ユーザー tailstails
提出日時 2016-12-18 00:28:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 377 ms / 2,000 ms
コード長 702 bytes
コンパイル時間 1,552 ms
コンパイル使用メモリ 170,460 KB
実行使用メモリ 35,532 KB
最終ジャッジ日時 2024-12-14 04:46:09
合計ジャッジ時間 6,688 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
12,216 KB
testcase_01 AC 4 ms
12,156 KB
testcase_02 AC 4 ms
12,432 KB
testcase_03 AC 4 ms
12,540 KB
testcase_04 AC 4 ms
13,764 KB
testcase_05 AC 4 ms
12,664 KB
testcase_06 AC 5 ms
13,768 KB
testcase_07 AC 4 ms
13,896 KB
testcase_08 AC 4 ms
12,612 KB
testcase_09 AC 5 ms
12,416 KB
testcase_10 AC 5 ms
13,768 KB
testcase_11 AC 5 ms
12,184 KB
testcase_12 AC 5 ms
13,772 KB
testcase_13 AC 5 ms
13,768 KB
testcase_14 AC 6 ms
12,188 KB
testcase_15 AC 6 ms
14,004 KB
testcase_16 AC 6 ms
12,380 KB
testcase_17 AC 7 ms
12,676 KB
testcase_18 AC 7 ms
13,896 KB
testcase_19 AC 6 ms
13,896 KB
testcase_20 AC 6 ms
13,896 KB
testcase_21 AC 7 ms
12,568 KB
testcase_22 AC 7 ms
12,460 KB
testcase_23 AC 7 ms
13,896 KB
testcase_24 AC 345 ms
34,884 KB
testcase_25 AC 344 ms
35,016 KB
testcase_26 AC 345 ms
34,816 KB
testcase_27 AC 339 ms
35,532 KB
testcase_28 AC 345 ms
34,780 KB
testcase_29 AC 336 ms
34,756 KB
testcase_30 AC 346 ms
34,796 KB
testcase_31 AC 377 ms
34,704 KB
testcase_32 AC 351 ms
34,888 KB
testcase_33 AC 365 ms
34,684 KB
testcase_34 AC 100 ms
26,088 KB
testcase_35 AC 5 ms
13,892 KB
testcase_36 AC 4 ms
12,404 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:35:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   35 | main(){
      | ^~~~

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int a[500010],b[500010],c[500010];
int n,m;
list<int> xa[100010];
list<int> xb[100010];
int db[100010];
int ta[100010];
int u[100010];
int y;

void f(int a,int t){
//cout << "(a,t)=("<<a<<","<<t<<")"<<endl;
	if(ta[a]<t){
		ta[a]=t;
	}
	if(--db[a]==0){
		for(auto i:xa[a]){
			f(b[i],ta[a]+c[i]);
		}
	}
}

void g(int b,int t){
	if(u[b]++) return;
	--y;
	for(auto i:xb[b]){
		if(ta[a[i]]==t-c[i]){
			g(a[i],t-c[i]);
		}
	}
}

main(){
	cin>>n>>m;
	for(int i=0;i<m;++i){
		cin>>a[i]>>b[i]>>c[i];
		xa[a[i]].push_back(i);
		xb[b[i]].push_back(i);
		++db[b[i]];
	}
	db[0]=1;
	f(0,0);
	y=n;
	g(n-1,ta[n-1]);
	cout << ta[n-1] << " " << y << "/" << n << endl;
}
0