結果

問題 No.1473 おでぶなおばけさん
ユーザー 👑 NachiaNachia
提出日時 2021-04-09 21:54:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 1,124 bytes
コンパイル時間 2,614 ms
コンパイル使用メモリ 216,732 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-25 05:12:44
合計ジャッジ時間 6,527 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 64 ms
10,240 KB
testcase_03 AC 49 ms
8,704 KB
testcase_04 AC 34 ms
7,296 KB
testcase_05 AC 12 ms
6,940 KB
testcase_06 AC 52 ms
8,704 KB
testcase_07 AC 63 ms
10,752 KB
testcase_08 AC 68 ms
10,752 KB
testcase_09 AC 68 ms
10,752 KB
testcase_10 AC 39 ms
6,940 KB
testcase_11 AC 39 ms
6,944 KB
testcase_12 AC 39 ms
6,940 KB
testcase_13 AC 26 ms
6,940 KB
testcase_14 AC 19 ms
6,940 KB
testcase_15 AC 35 ms
6,944 KB
testcase_16 AC 38 ms
6,944 KB
testcase_17 AC 4 ms
6,940 KB
testcase_18 AC 6 ms
6,940 KB
testcase_19 AC 32 ms
6,940 KB
testcase_20 AC 41 ms
7,936 KB
testcase_21 AC 45 ms
6,940 KB
testcase_22 AC 51 ms
9,088 KB
testcase_23 AC 42 ms
8,704 KB
testcase_24 AC 41 ms
8,192 KB
testcase_25 AC 54 ms
8,832 KB
testcase_26 AC 56 ms
8,832 KB
testcase_27 AC 21 ms
6,940 KB
testcase_28 AC 62 ms
10,624 KB
testcase_29 AC 38 ms
6,940 KB
testcase_30 AC 44 ms
7,040 KB
testcase_31 AC 60 ms
10,496 KB
testcase_32 AC 47 ms
8,832 KB
testcase_33 AC 41 ms
7,808 KB
testcase_34 AC 23 ms
6,940 KB
testcase_35 AC 23 ms
6,940 KB
testcase_36 AC 39 ms
6,940 KB
testcase_37 AC 41 ms
8,448 KB
testcase_38 AC 10 ms
6,940 KB
testcase_39 AC 39 ms
6,944 KB
testcase_40 AC 38 ms
6,944 KB
testcase_41 AC 37 ms
6,940 KB
testcase_42 AC 36 ms
6,940 KB
testcase_43 AC 42 ms
8,064 KB
testcase_44 AC 41 ms
8,064 KB
testcase_45 AC 41 ms
8,192 KB
testcase_46 AC 47 ms
7,936 KB
testcase_47 AC 55 ms
8,832 KB
testcase_48 AC 50 ms
8,704 KB
権限があれば一括ダウンロードができます

ソースコード

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:(V[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(){
  scanf("%d%d",&N,&M);
  edges.resize(M);
  rep(i,M){ int u,v,w; scanf("%d%d%d",&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);
    }
  }
  printf("%d %d\n",W,D[N-1]);
  return 0;
}
0