結果

問題 No.1473 おでぶなおばけさん
ユーザー tkmst201tkmst201
提出日時 2021-06-13 11:35:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 1,358 bytes
コンパイル時間 2,643 ms
コンパイル使用メモリ 214,128 KB
実行使用メモリ 9,600 KB
最終ジャッジ日時 2024-12-21 16:39:15
合計ジャッジ時間 10,059 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 170 ms
9,472 KB
testcase_03 AC 143 ms
8,576 KB
testcase_04 AC 85 ms
6,528 KB
testcase_05 AC 30 ms
5,248 KB
testcase_06 AC 155 ms
8,960 KB
testcase_07 AC 159 ms
9,472 KB
testcase_08 AC 171 ms
9,600 KB
testcase_09 AC 155 ms
9,600 KB
testcase_10 AC 90 ms
5,376 KB
testcase_11 AC 97 ms
6,272 KB
testcase_12 AC 91 ms
5,760 KB
testcase_13 AC 56 ms
5,248 KB
testcase_14 AC 40 ms
5,248 KB
testcase_15 AC 76 ms
5,632 KB
testcase_16 AC 88 ms
5,376 KB
testcase_17 AC 8 ms
5,248 KB
testcase_18 AC 13 ms
5,248 KB
testcase_19 AC 86 ms
6,272 KB
testcase_20 AC 114 ms
8,064 KB
testcase_21 AC 121 ms
7,168 KB
testcase_22 AC 128 ms
8,576 KB
testcase_23 AC 97 ms
7,936 KB
testcase_24 AC 93 ms
7,808 KB
testcase_25 AC 142 ms
8,576 KB
testcase_26 AC 151 ms
8,576 KB
testcase_27 AC 58 ms
5,248 KB
testcase_28 AC 167 ms
9,344 KB
testcase_29 AC 133 ms
7,424 KB
testcase_30 AC 147 ms
8,320 KB
testcase_31 AC 144 ms
9,472 KB
testcase_32 AC 145 ms
9,216 KB
testcase_33 AC 107 ms
8,064 KB
testcase_34 AC 56 ms
5,760 KB
testcase_35 AC 70 ms
6,016 KB
testcase_36 AC 101 ms
6,528 KB
testcase_37 AC 114 ms
7,552 KB
testcase_38 AC 20 ms
5,248 KB
testcase_39 AC 88 ms
5,248 KB
testcase_40 AC 95 ms
5,248 KB
testcase_41 AC 76 ms
5,248 KB
testcase_42 AC 77 ms
5,248 KB
testcase_43 AC 113 ms
8,020 KB
testcase_44 AC 105 ms
8,020 KB
testcase_45 AC 110 ms
8,144 KB
testcase_46 AC 107 ms
7,168 KB
testcase_47 AC 128 ms
8,192 KB
testcase_48 AC 114 ms
7,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define REP(i,n) FOR(i,0,n)
#define ALL(v) begin(v),end(v)
template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; }
template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; }
using ll = long long;
using pii = pair<int, int>;
constexpr ll INF = 1ll<<30;
constexpr ll longINF = 1ll<<60;
constexpr ll MOD = 1000000007;
constexpr bool debug = false;
//---------------------------------//

int main() {
	int N, M;
	cin >> N >> M;
	vector<vector<pii>> g(N);
	REP(i, M) {
		int s, t, d;
		cin >> s >> t >> d;
		--s; --t;
		g[s].emplace_back(t, d);
		g[t].emplace_back(s, d);
	}
	
	vector<int> dist(N, -INF);
	priority_queue<pii> pq;
	dist[0] = INF;
	pq.emplace(INF, 0);
	while (!pq.empty()) {
		auto [d, u] = pq.top(); pq.pop();
		if (dist[u] != d) continue;
		for (auto [v, dis] : g[u]) if (chmax(dist[v], min(d, dis))) pq.emplace(dist[v], v);
	}
	
	int mx = dist[N - 1];
	
	dist.assign(N, INF);
	queue<int> que;
	dist[0] = 0;
	que.emplace(0);
	while (!que.empty()) {
		int u = que.front(); que.pop();
		for (auto [v, dis] : g[u]) if (dis >= mx && chmin(dist[v], dist[u] + 1)) que.emplace(v);
	}
	
	cout << mx << " " << dist[N - 1] << endl;
}
0