結果

問題 No.1473 おでぶなおばけさん
ユーザー 👑 NachiaNachia
提出日時 2021-04-09 21:51:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,097 bytes
コンパイル時間 2,673 ms
コンパイル使用メモリ 216,640 KB
実行使用メモリ 13,752 KB
最終ジャッジ日時 2024-06-25 05:07:42
合計ジャッジ時間 11,318 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,752 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 284 ms
10,112 KB
testcase_03 AC 106 ms
8,704 KB
testcase_04 AC 73 ms
7,296 KB
testcase_05 AC 40 ms
6,944 KB
testcase_06 AC 153 ms
8,576 KB
testcase_07 AC 137 ms
10,632 KB
testcase_08 AC 138 ms
10,624 KB
testcase_09 AC 138 ms
10,752 KB
testcase_10 AC 95 ms
6,940 KB
testcase_11 AC 95 ms
6,940 KB
testcase_12 AC 96 ms
6,944 KB
testcase_13 AC 59 ms
6,940 KB
testcase_14 AC 43 ms
6,944 KB
testcase_15 AC 81 ms
6,944 KB
testcase_16 AC 93 ms
6,940 KB
testcase_17 AC 8 ms
6,944 KB
testcase_18 AC 12 ms
6,940 KB
testcase_19 AC 75 ms
6,940 KB
testcase_20 AC 86 ms
7,936 KB
testcase_21 AC 269 ms
6,948 KB
testcase_22 AC 1,618 ms
8,960 KB
testcase_23 AC 104 ms
8,704 KB
testcase_24 AC 538 ms
8,064 KB
testcase_25 TLE -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll=long long;
#define rep(i,n) for(int i=0; i<(n); i++)

struct DSU{
  vector<int> V;
  DSU(int n=0){ V.resize(n); rep(i,n) V[i]=i; }
  int leader(int a){ return (V[a]==a)?a:(a=leader(V[a])); }
  void merge(int u,int v){ V[leader(u)]=leader(v); }
};

struct Edge{ int u,v,w; };
bool compEdge_w(Edge l, Edge r){ return l.w>r.w; }

int N,M;
vector<Edge> edges;
vector<vector<int>> E;
DSU dsu;
vector<int> D;

int main(){
  cin>>N>>M;
  edges.resize(M);
  rep(i,M){ int u,v,w; cin>>u>>v>>w; u--; v--; edges[i]={u,v,w}; }
  sort(edges.begin(),edges.end(),compEdge_w);
  E.resize(N);
  dsu = DSU(N);
  int W=1001001001;
  for(Edge e:edges){
    dsu.merge(e.u,e.v);
    W = e.w;
    if(dsu.leader(0) == dsu.leader(N-1)) break;
  }
  for(Edge e:edges) if(e.w>=W){
    E[e.u].push_back(e.v);
    E[e.v].push_back(e.u);
  }
  D.assign(N,-1);
  queue<int> Q;
  D[0]=0; Q.push(0);
  while(Q.size()){
    int p=Q.front(); Q.pop();
    for(int e:E[p]) if(D[e]==-1){
      D[e] = D[p]+1;
      Q.push(e);
    }
  }
  cout<<W<<" "<<D[N-1]<<"\n";
  return 0;
}
0