結果

問題 No.1473 おでぶなおばけさん
ユーザー 沙耶花沙耶花
提出日時 2021-04-09 21:44:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 245 ms / 2,000 ms
コード長 898 bytes
コンパイル時間 4,495 ms
コンパイル使用メモリ 267,964 KB
実行使用メモリ 10,160 KB
最終ジャッジ日時 2024-06-25 04:50:06
合計ジャッジ時間 11,993 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 178 ms
9,536 KB
testcase_03 AC 148 ms
8,884 KB
testcase_04 AC 120 ms
6,968 KB
testcase_05 AC 45 ms
5,376 KB
testcase_06 AC 201 ms
9,056 KB
testcase_07 AC 190 ms
10,148 KB
testcase_08 AC 241 ms
10,160 KB
testcase_09 AC 174 ms
10,068 KB
testcase_10 AC 94 ms
5,376 KB
testcase_11 AC 96 ms
6,400 KB
testcase_12 AC 94 ms
5,888 KB
testcase_13 AC 57 ms
5,376 KB
testcase_14 AC 43 ms
5,376 KB
testcase_15 AC 81 ms
5,504 KB
testcase_16 AC 91 ms
5,376 KB
testcase_17 AC 8 ms
5,376 KB
testcase_18 AC 13 ms
5,376 KB
testcase_19 AC 84 ms
5,888 KB
testcase_20 AC 106 ms
8,300 KB
testcase_21 AC 132 ms
6,912 KB
testcase_22 AC 102 ms
8,484 KB
testcase_23 AC 86 ms
8,360 KB
testcase_24 AC 83 ms
7,844 KB
testcase_25 AC 236 ms
8,392 KB
testcase_26 AC 245 ms
8,564 KB
testcase_27 AC 70 ms
5,376 KB
testcase_28 AC 201 ms
9,928 KB
testcase_29 AC 137 ms
7,296 KB
testcase_30 AC 183 ms
7,808 KB
testcase_31 AC 160 ms
9,464 KB
testcase_32 AC 149 ms
9,240 KB
testcase_33 AC 117 ms
8,060 KB
testcase_34 AC 63 ms
5,888 KB
testcase_35 AC 64 ms
5,632 KB
testcase_36 AC 118 ms
6,400 KB
testcase_37 AC 147 ms
8,064 KB
testcase_38 AC 26 ms
5,376 KB
testcase_39 AC 93 ms
5,376 KB
testcase_40 AC 91 ms
5,376 KB
testcase_41 AC 83 ms
5,376 KB
testcase_42 AC 82 ms
5,376 KB
testcase_43 AC 100 ms
7,272 KB
testcase_44 AC 100 ms
7,108 KB
testcase_45 AC 101 ms
7,272 KB
testcase_46 AC 123 ms
7,680 KB
testcase_47 AC 150 ms
8,516 KB
testcase_48 AC 140 ms
8,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000000

vector<vector<pair<int,int>>> E;

int get(int m){
	vector<int> dis(E.size(),Inf);
	queue<int> Q;
	Q.push(0);
	dis[0] = 0;
	
	while(Q.size()>0){
		int u = Q.front();
		Q.pop();
		rep(i,E[u].size()){
			if(E[u][i].second < m)continue;
			int v = E[u][i].first;
			if(dis[v]!=Inf)continue;
			Q.push(v);
			dis[v] = dis[u]+1;
		}
	}
	return dis.back();
}

int main(){
	
	int n,m;
	cin>>n>>m;
	
	E.resize(n);
	
	rep(i,m){
		int s,t,d;
		cin>>s>>t>>d;
		s--;t--;
		E[s].emplace_back(t,d);
		E[t].emplace_back(s,d);
	}
	
	int ok = 0,ng = Inf+5;
	
	while(ng-ok>1){
		int mid = (ok+ng)/2;
		
		if(get(mid)==Inf)ng = mid;
		else ok = mid;
	}
	
	cout<<ok<<' '<<get(ok)<<endl;
	
    return 0;
}
0