結果

問題 No.1473 おでぶなおばけさん
ユーザー MMMM
提出日時 2024-10-17 12:30:01
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 243 ms / 2,000 ms
コード長 824 bytes
コンパイル時間 12,151 ms
コンパイル使用メモリ 339,196 KB
実行使用メモリ 20,684 KB
最終ジャッジ日時 2024-10-17 12:30:25
合計ジャッジ時間 22,577 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 225 ms
19,712 KB
testcase_03 AC 180 ms
17,408 KB
testcase_04 AC 111 ms
12,544 KB
testcase_05 AC 37 ms
6,816 KB
testcase_06 AC 192 ms
17,920 KB
testcase_07 AC 226 ms
20,684 KB
testcase_08 AC 243 ms
20,396 KB
testcase_09 AC 230 ms
20,480 KB
testcase_10 AC 189 ms
14,592 KB
testcase_11 AC 160 ms
14,592 KB
testcase_12 AC 168 ms
14,592 KB
testcase_13 AC 99 ms
10,880 KB
testcase_14 AC 68 ms
8,960 KB
testcase_15 AC 144 ms
13,696 KB
testcase_16 AC 161 ms
14,208 KB
testcase_17 AC 10 ms
6,816 KB
testcase_18 AC 16 ms
6,820 KB
testcase_19 AC 82 ms
6,820 KB
testcase_20 AC 101 ms
8,832 KB
testcase_21 AC 113 ms
7,040 KB
testcase_22 AC 120 ms
9,036 KB
testcase_23 AC 77 ms
8,908 KB
testcase_24 AC 79 ms
8,268 KB
testcase_25 AC 118 ms
8,912 KB
testcase_26 AC 123 ms
9,040 KB
testcase_27 AC 50 ms
6,816 KB
testcase_28 AC 127 ms
10,240 KB
testcase_29 AC 96 ms
6,816 KB
testcase_30 AC 111 ms
6,816 KB
testcase_31 AC 152 ms
19,968 KB
testcase_32 AC 136 ms
18,432 KB
testcase_33 AC 110 ms
15,360 KB
testcase_34 AC 59 ms
9,728 KB
testcase_35 AC 68 ms
10,496 KB
testcase_36 AC 88 ms
6,816 KB
testcase_37 AC 89 ms
8,268 KB
testcase_38 AC 20 ms
6,820 KB
testcase_39 AC 160 ms
14,336 KB
testcase_40 AC 170 ms
14,336 KB
testcase_41 AC 149 ms
14,592 KB
testcase_42 AC 151 ms
14,464 KB
testcase_43 AC 135 ms
18,176 KB
testcase_44 AC 135 ms
17,920 KB
testcase_45 AC 134 ms
17,920 KB
testcase_46 AC 163 ms
15,360 KB
testcase_47 AC 213 ms
17,920 KB
testcase_48 AC 178 ms
16,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
using namespace std;
using namespace atcoder;
int main(){
	// input + prep
	int n,m;
	cin >> n >> m;
	map<int,vector<pair<int,int>>> edge;
	while(m--){
		int s,t,d;
		cin >> s >> t >> d;
		edge[-d].emplace_back(--s,--t);
	}
	
	// solve #1
	dsu uf(n);
	vector<vector<int>> g(n);
	int w = -1;
	for(auto p : edge){
		w = -p.first;
		for(auto [u,v] : p.second){
			uf.merge(u,v);
			g[u].push_back(v);
			g[v].push_back(u);
		}
		if(uf.same(0,n-1)) break;
	}
	
	// solve #2
	vector<int> dist(n,-1);
	queue<pair<int,int>> q;
	q.emplace(0,0);
	dist[0] = 0;
	while(!q.empty()){
		auto[now,stp] = q.front();
		q.pop();
		for(auto nxt : g[now]){
			if(dist[nxt] == -1){
				dist[nxt] = stp+1;
				q.emplace(nxt,stp+1);
			}
		}
	}
	
	// output
	cout << w << " " << dist.back() << endl;
}
0