結果

問題 No.1473 おでぶなおばけさん
ユーザー snow39snow39
提出日時 2021-04-09 21:55:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 2,210 bytes
コンパイル時間 1,600 ms
コンパイル使用メモリ 125,980 KB
実行使用メモリ 11,880 KB
最終ジャッジ日時 2024-06-25 05:15:14
合計ジャッジ時間 5,380 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 72 ms
11,244 KB
testcase_03 AC 54 ms
9,576 KB
testcase_04 AC 39 ms
7,780 KB
testcase_05 AC 14 ms
6,940 KB
testcase_06 AC 59 ms
9,572 KB
testcase_07 AC 76 ms
11,876 KB
testcase_08 AC 76 ms
11,816 KB
testcase_09 AC 74 ms
11,880 KB
testcase_10 AC 43 ms
6,944 KB
testcase_11 AC 42 ms
6,944 KB
testcase_12 AC 41 ms
6,944 KB
testcase_13 AC 28 ms
6,940 KB
testcase_14 AC 20 ms
6,940 KB
testcase_15 AC 37 ms
6,944 KB
testcase_16 AC 40 ms
6,940 KB
testcase_17 AC 4 ms
6,944 KB
testcase_18 AC 6 ms
6,940 KB
testcase_19 AC 34 ms
6,944 KB
testcase_20 AC 47 ms
8,808 KB
testcase_21 AC 49 ms
6,940 KB
testcase_22 AC 48 ms
9,960 KB
testcase_23 AC 42 ms
9,580 KB
testcase_24 AC 41 ms
8,936 KB
testcase_25 AC 56 ms
9,704 KB
testcase_26 AC 58 ms
9,572 KB
testcase_27 AC 21 ms
6,944 KB
testcase_28 AC 69 ms
11,516 KB
testcase_29 AC 46 ms
7,144 KB
testcase_30 AC 53 ms
7,660 KB
testcase_31 AC 58 ms
11,496 KB
testcase_32 AC 46 ms
9,448 KB
testcase_33 AC 40 ms
8,552 KB
testcase_34 AC 22 ms
6,940 KB
testcase_35 AC 22 ms
6,944 KB
testcase_36 AC 39 ms
7,020 KB
testcase_37 AC 44 ms
9,196 KB
testcase_38 AC 10 ms
6,940 KB
testcase_39 AC 40 ms
6,944 KB
testcase_40 AC 41 ms
6,940 KB
testcase_41 AC 39 ms
6,940 KB
testcase_42 AC 39 ms
6,940 KB
testcase_43 AC 42 ms
8,552 KB
testcase_44 AC 42 ms
8,680 KB
testcase_45 AC 41 ms
8,680 KB
testcase_46 AC 53 ms
8,488 KB
testcase_47 AC 66 ms
9,572 KB
testcase_48 AC 58 ms
9,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <string>
#include <vector>
#include <cmath>
#include <map>
#include <queue>
#include <iomanip>
#include <set>
#include <tuple>
#define mkp make_pair
#define mkt make_tuple
#define rep(i,n) for(int i = 0; i < (n); ++i)
#define all(v) v.begin(),v.end()
using namespace std;
typedef long long ll;
const ll MOD=1e9+7;
template<class T> void chmin(T &a,const T &b){if(a>b) a=b;}
template<class T> void chmax(T &a,const T &b){if(a<b) a=b;}

class DisjointSet{
public:
  int N;
  vector<int> rank,p;
  vector<int> sz;
 
  DisjointSet(){}
  DisjointSet(int n):N(n),rank(n),p(n),sz(n){
    for(int i=0;i<N;i++) makeSet(i);
  }
 
  void makeSet(int x){
    p[x]=x;
    rank[x]=0;
    sz[x]=1;
  }
 
  bool same(int x,int y){
    return leader(x)==leader(y);
  }
 
  void unite(int x,int y){
    if(same(x,y)) return;
    link(leader(x),leader(y));
  }
 
  void link(int x,int y){
    if(rank[x]>rank[y]) swap(x,y);

    p[x]=y;
    sz[y]+=sz[x];
    if(rank[x]==rank[y]){
      ++rank[y];
    }
  }
 
  int leader(int x){
    if(x!=p[x]) p[x]=leader(p[x]);
    return p[x];
  }
 
  int size(int x){
    return sz[leader(x)];
  }
};

int main(){
  cin.tie(0);
  ios::sync_with_stdio(false);

  int N,M;
  cin>>N>>M;
  vector<tuple<int,int,int>> edges;
  rep(i,M){
    int a,b,c;
    cin>>a>>b>>c;
    a--;b--;
    edges.push_back(mkt(a,b,c));
  }

  vector<int> ord(M,0);
  rep(i,M) ord[i]=i;

  sort(all(ord),[&](int a,int b){
    if(get<2>(edges[a])!=get<2>(edges[b])) return get<2>(edges[a]) > get<2>(edges[b]);
    return a<b;
  });

  DisjointSet us(N);
  int lastCost=-1;
  for(auto i:ord){
    auto [a,b,c]=edges[i];

    us.unite(a,b);
    if(us.same(0,N-1)){
      lastCost=c;
      break;
    }
  }

  vector<vector<int>> g(N);
  for(auto i:ord){
    auto [a,b,c]=edges[i];
    if(c>=lastCost){
      g[a].push_back(b);
      g[b].push_back(a);
    }
  }

  queue<int> Q;
  vector<int> dist(N,MOD);
  dist[0]=0;
  Q.push(0);
  while(!Q.empty()){
    int now=Q.front();
    Q.pop();

    for(auto nex:g[now]){
      if(dist[nex]==MOD){
        dist[nex]=dist[now]+1;
        Q.push(nex);
      }
    }
  }

  cout<<lastCost<<" "<<dist[N-1]<<endl;

  return 0;
}
0