結果

問題 No.1473 おでぶなおばけさん
ユーザー 沙耶花沙耶花
提出日時 2021-04-09 21:43:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 896 bytes
コンパイル時間 4,394 ms
コンパイル使用メモリ 268,100 KB
実行使用メモリ 10,164 KB
最終ジャッジ日時 2024-06-25 04:49:25
合計ジャッジ時間 11,509 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 185 ms
9,412 KB
testcase_03 AC 138 ms
8,760 KB
testcase_04 AC 116 ms
6,844 KB
testcase_05 AC 45 ms
5,376 KB
testcase_06 AC 189 ms
8,928 KB
testcase_07 AC 178 ms
10,024 KB
testcase_08 AC 229 ms
10,036 KB
testcase_09 AC 165 ms
10,164 KB
testcase_10 AC 93 ms
5,376 KB
testcase_11 AC 96 ms
6,272 KB
testcase_12 AC 94 ms
5,888 KB
testcase_13 AC 57 ms
5,376 KB
testcase_14 AC 42 ms
5,376 KB
testcase_15 AC 80 ms
5,632 KB
testcase_16 AC 90 ms
5,504 KB
testcase_17 AC 8 ms
5,376 KB
testcase_18 AC 13 ms
5,376 KB
testcase_19 AC 82 ms
5,760 KB
testcase_20 AC 103 ms
8,168 KB
testcase_21 AC 128 ms
7,040 KB
testcase_22 AC 95 ms
8,484 KB
testcase_23 AC 79 ms
8,232 KB
testcase_24 AC 79 ms
7,716 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 184 ms
9,936 KB
testcase_29 AC 131 ms
7,168 KB
testcase_30 AC 169 ms
7,936 KB
testcase_31 AC 139 ms
9,464 KB
testcase_32 AC 139 ms
9,240 KB
testcase_33 AC 108 ms
8,052 KB
testcase_34 AC 62 ms
5,888 KB
testcase_35 AC 62 ms
5,632 KB
testcase_36 AC 112 ms
6,272 KB
testcase_37 AC 141 ms
7,808 KB
testcase_38 AC 25 ms
5,376 KB
testcase_39 AC 91 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,148 KB
testcase_44 AC 100 ms
7,148 KB
testcase_45 AC 99 ms
7,144 KB
testcase_46 AC 116 ms
7,680 KB
testcase_47 AC 143 ms
8,640 KB
testcase_48 AC 130 ms
8,108 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;
	
	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