結果

問題 No.468 役に立つ競技プログラミング実践編
ユーザー kotatsugamekotatsugame
提出日時 2019-11-20 01:53:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 258 ms / 2,000 ms
コード長 925 bytes
コンパイル時間 704 ms
コンパイル使用メモリ 81,492 KB
実行使用メモリ 20,836 KB
最終ジャッジ日時 2024-10-04 19:19:05
合計ジャッジ時間 5,956 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
10,204 KB
testcase_01 AC 4 ms
10,148 KB
testcase_02 AC 3 ms
10,260 KB
testcase_03 AC 4 ms
10,168 KB
testcase_04 AC 3 ms
10,848 KB
testcase_05 AC 3 ms
10,680 KB
testcase_06 AC 4 ms
11,328 KB
testcase_07 AC 3 ms
9,752 KB
testcase_08 AC 4 ms
10,736 KB
testcase_09 AC 3 ms
10,156 KB
testcase_10 AC 4 ms
10,808 KB
testcase_11 AC 3 ms
10,972 KB
testcase_12 AC 3 ms
10,904 KB
testcase_13 AC 3 ms
10,600 KB
testcase_14 AC 5 ms
10,604 KB
testcase_15 AC 5 ms
10,096 KB
testcase_16 AC 5 ms
10,500 KB
testcase_17 AC 5 ms
10,200 KB
testcase_18 AC 6 ms
10,308 KB
testcase_19 AC 5 ms
9,984 KB
testcase_20 AC 5 ms
10,164 KB
testcase_21 AC 5 ms
11,148 KB
testcase_22 AC 5 ms
10,736 KB
testcase_23 AC 5 ms
10,320 KB
testcase_24 AC 252 ms
20,648 KB
testcase_25 AC 251 ms
20,628 KB
testcase_26 AC 254 ms
20,836 KB
testcase_27 AC 251 ms
20,756 KB
testcase_28 AC 255 ms
20,816 KB
testcase_29 AC 252 ms
20,460 KB
testcase_30 AC 255 ms
20,580 KB
testcase_31 AC 255 ms
20,596 KB
testcase_32 AC 258 ms
20,836 KB
testcase_33 AC 256 ms
20,636 KB
testcase_34 AC 82 ms
17,752 KB
testcase_35 AC 4 ms
11,056 KB
testcase_36 AC 3 ms
10,312 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:10:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   10 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
#include<queue>
using namespace std;
int N,M;
vector<pair<int,int> >G[1<<17],rG[1<<17];
int cnt[1<<17],rcnt[1<<17];
int d[1<<17],rd[1<<17];
main()
{
	cin>>N>>M;
	for(int i=0;i<M;i++)
	{
		int a,b,c;cin>>a>>b>>c;
		G[a].push_back(make_pair(b,c));
		rG[b].push_back(make_pair(a,c));
		cnt[b]++;
		rcnt[a]++;
	}
	for(int i=0;i<N;i++)rd[i]=1e9;
	queue<int>P;
	P.push(0);
	while(!P.empty())
	{
		int u=P.front();P.pop();
		for(pair<int,int>p:G[u])
		{
			int v=p.first;
			int c=p.second+d[u];
			if(d[v]<c)d[v]=c;
			cnt[v]--;
			if(cnt[v]==0)P.push(v);
		}
	}
	rd[N-1]=d[N-1];
	P.push(N-1);
	while(!P.empty())
	{
		int u=P.front();P.pop();
		for(pair<int,int>p:rG[u])
		{
			int v=p.first;
			int c=rd[u]-p.second;
			if(rd[v]>c)rd[v]=c;
			rcnt[v]--;
			if(rcnt[v]==0)P.push(v);
		}
	}
	int C=0;
	for(int i=0;i<N;i++)C+=d[i]<rd[i];
	cout<<d[N-1]<<" "<<C<<"/"<<N<<endl;
}
0