結果

問題 No.1473 おでぶなおばけさん
ユーザー chocoruskchocorusk
提出日時 2021-04-09 21:42:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 201 ms / 2,000 ms
コード長 2,100 bytes
コンパイル時間 3,686 ms
コンパイル使用メモリ 194,040 KB
実行使用メモリ 10,592 KB
最終ジャッジ日時 2024-06-25 04:46:22
合計ジャッジ時間 10,693 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,888 KB
testcase_01 AC 3 ms
6,016 KB
testcase_02 AC 189 ms
10,296 KB
testcase_03 AC 154 ms
9,296 KB
testcase_04 AC 104 ms
8,268 KB
testcase_05 AC 38 ms
6,784 KB
testcase_06 AC 166 ms
9,152 KB
testcase_07 AC 200 ms
10,468 KB
testcase_08 AC 201 ms
10,592 KB
testcase_09 AC 199 ms
10,592 KB
testcase_10 AC 91 ms
7,168 KB
testcase_11 AC 88 ms
7,040 KB
testcase_12 AC 89 ms
7,168 KB
testcase_13 AC 55 ms
6,784 KB
testcase_14 AC 41 ms
6,400 KB
testcase_15 AC 76 ms
7,040 KB
testcase_16 AC 87 ms
7,040 KB
testcase_17 AC 9 ms
6,016 KB
testcase_18 AC 13 ms
6,016 KB
testcase_19 AC 69 ms
7,168 KB
testcase_20 AC 101 ms
8,804 KB
testcase_21 AC 106 ms
8,064 KB
testcase_22 AC 96 ms
9,684 KB
testcase_23 AC 81 ms
9,408 KB
testcase_24 AC 83 ms
9,052 KB
testcase_25 AC 174 ms
9,716 KB
testcase_26 AC 182 ms
9,664 KB
testcase_27 AC 62 ms
7,168 KB
testcase_28 AC 164 ms
10,592 KB
testcase_29 AC 115 ms
8,008 KB
testcase_30 AC 147 ms
8,288 KB
testcase_31 AC 150 ms
10,320 KB
testcase_32 AC 124 ms
9,192 KB
testcase_33 AC 106 ms
8,692 KB
testcase_34 AC 57 ms
7,424 KB
testcase_35 AC 58 ms
7,296 KB
testcase_36 AC 103 ms
8,448 KB
testcase_37 AC 115 ms
9,044 KB
testcase_38 AC 25 ms
6,400 KB
testcase_39 AC 88 ms
7,040 KB
testcase_40 AC 87 ms
7,040 KB
testcase_41 AC 76 ms
7,040 KB
testcase_42 AC 77 ms
7,168 KB
testcase_43 AC 101 ms
9,144 KB
testcase_44 AC 102 ms
8,940 KB
testcase_45 AC 102 ms
9,020 KB
testcase_46 AC 144 ms
8,796 KB
testcase_47 AC 172 ms
9,360 KB
testcase_48 AC 153 ms
9,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#include <list>
#include <atcoder/all>
#define popcount __builtin_popcount
using namespace std;
using namespace atcoder;
typedef long long ll;
typedef pair<int, int> P;
struct unionfind{
    vector<int> par, sz;
    unionfind() {}
    unionfind(int n):par(n), sz(n, 1){
        for(int i=0; i<n; i++) par[i]=i;
    }
    int find(int x){
        if(par[x]==x) return x;
        return par[x]=find(par[x]);
    }
    void unite(int x, int y){
        x=find(x); y=find(y);
        if(x==y) return;
        if(sz[x]>sz[y]) swap(x, y);
        par[x]=y;
        sz[y]+=sz[x];
    }
    bool same(int x, int y){
        return find(x)==find(y);
    }
    int size(int x){
        return sz[find(x)];
    }
};
int main()
{
    int n; cin>>n;
    int m; cin>>m;
    int a[100010], b[100010], d[100010];
    for(int i=0; i<m; i++){
        cin>>a[i]>>b[i]>>d[i];
        a[i]--; b[i]--;
    }
    int l=0, r=1e9+7;
    while(r-l>1){
        int mid=(l+r)/2;
        unionfind uf(n);
        for(int i=0; i<m; i++){
            if(d[i]>=mid) uf.unite(a[i], b[i]); 
        }
        if(uf.same(0, n-1)) l=mid;
        else r=mid;
    }
    cout<<l<<" ";
    int e[100010];
    const int INF=1e9+7;
    fill(e, e+n, INF);
    e[0]=0;
    queue<int> que; que.push(0);
    vector<int> g[100010];
    for(int i=0; i<m; i++){
        if(d[i]>=l){
            g[a[i]].push_back(b[i]);
            g[b[i]].push_back(a[i]);
        }
    }
    while(!que.empty()){
        int x=que.front(); que.pop();
        for(auto y:g[x]){
            if(e[y]>e[x]+1){
                e[y]=e[x]+1;
                que.push(y);
            }
        }
    }
    cout<<e[n-1]<<endl;
    return 0;
}
0