結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,888 KB
testcase_01 AC 4 ms
5,888 KB
testcase_02 AC 190 ms
10,324 KB
testcase_03 AC 169 ms
9,172 KB
testcase_04 AC 105 ms
8,264 KB
testcase_05 AC 37 ms
6,656 KB
testcase_06 AC 165 ms
9,148 KB
testcase_07 AC 196 ms
10,472 KB
testcase_08 AC 197 ms
10,476 KB
testcase_09 AC 196 ms
10,464 KB
testcase_10 AC 90 ms
7,040 KB
testcase_11 AC 87 ms
7,040 KB
testcase_12 AC 89 ms
7,040 KB
testcase_13 AC 56 ms
6,656 KB
testcase_14 AC 42 ms
6,400 KB
testcase_15 AC 76 ms
6,912 KB
testcase_16 AC 87 ms
7,040 KB
testcase_17 AC 10 ms
5,888 KB
testcase_18 AC 13 ms
6,016 KB
testcase_19 AC 70 ms
7,168 KB
testcase_20 AC 104 ms
8,808 KB
testcase_21 AC 108 ms
7,936 KB
testcase_22 AC 97 ms
9,732 KB
testcase_23 AC 84 ms
9,288 KB
testcase_24 AC 85 ms
9,052 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 167 ms
10,328 KB
testcase_29 AC 115 ms
8,000 KB
testcase_30 AC 144 ms
8,416 KB
testcase_31 AC 151 ms
10,328 KB
testcase_32 AC 126 ms
9,184 KB
testcase_33 AC 105 ms
8,692 KB
testcase_34 AC 59 ms
7,424 KB
testcase_35 AC 59 ms
7,168 KB
testcase_36 AC 102 ms
8,320 KB
testcase_37 AC 121 ms
9,104 KB
testcase_38 AC 25 ms
6,528 KB
testcase_39 AC 88 ms
7,040 KB
testcase_40 AC 88 ms
7,040 KB
testcase_41 AC 78 ms
7,040 KB
testcase_42 AC 79 ms
7,040 KB
testcase_43 AC 101 ms
9,020 KB
testcase_44 AC 103 ms
9,064 KB
testcase_45 AC 102 ms
9,016 KB
testcase_46 AC 145 ms
8,928 KB
testcase_47 AC 175 ms
9,492 KB
testcase_48 AC 155 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;
    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;
    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