結果

問題 No.1473 おでぶなおばけさん
ユーザー kotatsugamekotatsugame
提出日時 2021-04-09 21:37:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 183 ms / 2,000 ms
コード長 1,060 bytes
コンパイル時間 856 ms
コンパイル使用メモリ 79,504 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-06-25 04:33:56
合計ジャッジ時間 7,921 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,528 KB
testcase_01 AC 4 ms
6,528 KB
testcase_02 AC 182 ms
11,000 KB
testcase_03 AC 147 ms
10,624 KB
testcase_04 AC 91 ms
8,892 KB
testcase_05 AC 32 ms
7,424 KB
testcase_06 AC 165 ms
10,624 KB
testcase_07 AC 170 ms
11,008 KB
testcase_08 AC 183 ms
10,964 KB
testcase_09 AC 173 ms
10,968 KB
testcase_10 AC 93 ms
8,432 KB
testcase_11 AC 91 ms
9,388 KB
testcase_12 AC 93 ms
8,832 KB
testcase_13 AC 57 ms
7,808 KB
testcase_14 AC 42 ms
7,552 KB
testcase_15 AC 77 ms
8,564 KB
testcase_16 AC 89 ms
8,260 KB
testcase_17 AC 10 ms
6,656 KB
testcase_18 AC 14 ms
6,784 KB
testcase_19 AC 83 ms
9,084 KB
testcase_20 AC 114 ms
9,984 KB
testcase_21 AC 128 ms
9,728 KB
testcase_22 AC 133 ms
10,488 KB
testcase_23 AC 118 ms
9,856 KB
testcase_24 AC 110 ms
9,976 KB
testcase_25 AC 157 ms
10,624 KB
testcase_26 AC 165 ms
10,552 KB
testcase_27 AC 55 ms
8,064 KB
testcase_28 AC 177 ms
11,008 KB
testcase_29 AC 135 ms
9,836 KB
testcase_30 AC 155 ms
10,320 KB
testcase_31 AC 171 ms
11,136 KB
testcase_32 AC 156 ms
10,864 KB
testcase_33 AC 125 ms
10,112 KB
testcase_34 AC 62 ms
8,576 KB
testcase_35 AC 71 ms
8,688 KB
testcase_36 AC 108 ms
9,344 KB
testcase_37 AC 126 ms
9,752 KB
testcase_38 AC 25 ms
7,108 KB
testcase_39 AC 89 ms
8,448 KB
testcase_40 AC 89 ms
8,420 KB
testcase_41 AC 78 ms
8,024 KB
testcase_42 AC 77 ms
8,024 KB
testcase_43 AC 112 ms
9,992 KB
testcase_44 AC 114 ms
9,988 KB
testcase_45 AC 111 ms
9,984 KB
testcase_46 AC 106 ms
9,728 KB
testcase_47 AC 128 ms
10,240 KB
testcase_48 AC 112 ms
9,856 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:10:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   10 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<queue>
#include<vector>
#include<algorithm>
using namespace std;
int N,M;
vector<pair<int,int> >G[1<<17];
int dist[1<<17];
int cnt[1<<17];
main()
{
	cin>>N>>M;
	for(int i=0;i<M;i++)
	{
		int u,v,d;cin>>u>>v>>d;
		u--,v--;
		G[u].push_back(make_pair(v,d));
		G[v].push_back(make_pair(u,d));
	}
	dist[0]=2e9;
	priority_queue<pair<int,int> >P;
	P.push(make_pair(dist[0],0));
	while(!P.empty())
	{
		int cost=P.top().first;
		int u=P.top().second;
		P.pop();
		if(dist[u]>cost)continue;
		for(pair<int,int>e:G[u])
		{
			int v=e.first;
			int nxt=min(cost,e.second);
			if(dist[v]<nxt)
			{
				dist[v]=nxt;
				P.push(make_pair(nxt,v));
			}
		}
	}
	int W=dist[N-1];
	for(int i=0;i<N;i++)cnt[i]=1e9;
	cnt[0]=0;
	P.push(make_pair(0,0));
	while(!P.empty())
	{
		int cost=-P.top().first;
		int u=P.top().second;
		P.pop();
		if(cnt[u]<cost)continue;
		for(pair<int,int>e:G[u])if(e.second>=W)
		{
			int v=e.first;
			if(cnt[v]>cost+1)
			{
				cnt[v]=cost+1;
				P.push(make_pair(-cnt[v],v));
			}
		}
	}
	cout<<W<<" "<<cnt[N-1]<<endl;
}
0