結果

問題 No.1473 おでぶなおばけさん
ユーザー Kome_soudouKome_soudou
提出日時 2022-03-23 13:34:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 270 ms / 2,000 ms
コード長 1,327 bytes
コンパイル時間 1,898 ms
コンパイル使用メモリ 176,652 KB
実行使用メモリ 11,824 KB
最終ジャッジ日時 2024-10-11 11:19:48
合計ジャッジ時間 11,105 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 226 ms
11,468 KB
testcase_03 AC 149 ms
10,304 KB
testcase_04 AC 115 ms
7,856 KB
testcase_05 AC 46 ms
5,248 KB
testcase_06 AC 213 ms
10,856 KB
testcase_07 AC 196 ms
11,824 KB
testcase_08 AC 266 ms
11,696 KB
testcase_09 AC 185 ms
11,696 KB
testcase_10 AC 99 ms
7,424 KB
testcase_11 AC 102 ms
8,960 KB
testcase_12 AC 100 ms
8,320 KB
testcase_13 AC 60 ms
6,272 KB
testcase_14 AC 43 ms
5,504 KB
testcase_15 AC 85 ms
7,680 KB
testcase_16 AC 95 ms
6,784 KB
testcase_17 AC 8 ms
5,248 KB
testcase_18 AC 13 ms
5,248 KB
testcase_19 AC 87 ms
7,552 KB
testcase_20 AC 115 ms
9,540 KB
testcase_21 AC 146 ms
9,172 KB
testcase_22 AC 105 ms
10,564 KB
testcase_23 AC 85 ms
9,612 KB
testcase_24 AC 89 ms
9,516 KB
testcase_25 AC 260 ms
10,532 KB
testcase_26 AC 270 ms
10,752 KB
testcase_27 AC 72 ms
6,160 KB
testcase_28 AC 235 ms
11,568 KB
testcase_29 AC 148 ms
9,264 KB
testcase_30 AC 195 ms
10,368 KB
testcase_31 AC 154 ms
11,636 KB
testcase_32 AC 162 ms
11,220 KB
testcase_33 AC 122 ms
9,508 KB
testcase_34 AC 62 ms
6,664 KB
testcase_35 AC 68 ms
6,784 KB
testcase_36 AC 127 ms
8,276 KB
testcase_37 AC 146 ms
9,256 KB
testcase_38 AC 27 ms
5,248 KB
testcase_39 AC 96 ms
7,040 KB
testcase_40 AC 95 ms
6,784 KB
testcase_41 AC 87 ms
6,484 KB
testcase_42 AC 85 ms
6,612 KB
testcase_43 AC 102 ms
8,940 KB
testcase_44 AC 102 ms
9,064 KB
testcase_45 AC 102 ms
9,068 KB
testcase_46 AC 128 ms
9,088 KB
testcase_47 AC 163 ms
10,368 KB
testcase_48 AC 160 ms
9,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

struct Edge
{
	int64_t to; // 辺の行先
	int64_t weight; // 辺の重み
	Edge(int64_t t, int64_t w) : to(t), weight(w){} 
};

using Graph = vector<vector<Edge>>;

int main()
{
	int64_t N, M;
	cin >> N >> M;
	
	Graph G(N);
	int64_t S, T, D;
	for(int64_t i = 0; i < M; i++)
	{
		cin >> S >> T >> D;
		S--; T--;
		G[S].push_back(Edge(T, D));
		G[T].push_back(Edge(S, D));
	}
	
	int64_t ok = 1;
	int64_t ng = 1000000001;
	int64_t mid;
	const int64_t inf = 1000000001;
	queue<int64_t> q;
	int64_t ans;
	while(ng - ok != 1)
	{
		mid = (ng + ok) / 2;
		vector<int64_t> dist(N, inf);
		dist[0] = 0;
		q.push(0);
		while(!q.empty())
		{
			int64_t p = q.front();
			q.pop();
			
			for(Edge e : G[p])
			{
				if(e.weight < mid) continue;
				if(dist[p] + 1 < dist[e.to])
				{
					dist[e.to] = dist[p] + 1;
					q.push(e.to);
				}
			}
		}
		
		if(dist[N - 1] != inf)
		{
			ok = mid;
			ans = dist[N - 1];
		}
		else ng = mid;
	}
	
	if(ok == 1)
	{
		vector<int64_t> dist(N, inf);
		dist[0] = 0;
		q.push(0);
		while(!q.empty())
		{
			int64_t p = q.front();
			q.pop();
			
			for(Edge e : G[p])
			{
				if(dist[p] + 1 < dist[e.to])
				{
					dist[e.to] = dist[p] + 1;
					q.push(e.to);
				}
			}
		}
		
		ans = dist[N - 1];
	}
	
	cout << ok << ' ' << ans << endl;
	return 0;
}
0