結果

問題 No.1473 おでぶなおばけさん
ユーザー milanis48663220milanis48663220
提出日時 2021-04-09 21:45:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 2,218 bytes
コンパイル時間 1,228 ms
コンパイル使用メモリ 106,632 KB
実行使用メモリ 10,360 KB
最終ジャッジ日時 2024-06-25 04:52:46
合計ジャッジ時間 5,311 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 95 ms
9,824 KB
testcase_03 AC 73 ms
8,412 KB
testcase_04 AC 51 ms
7,132 KB
testcase_05 AC 20 ms
5,376 KB
testcase_06 AC 80 ms
8,264 KB
testcase_07 AC 98 ms
10,360 KB
testcase_08 AC 99 ms
10,228 KB
testcase_09 AC 101 ms
10,360 KB
testcase_10 AC 33 ms
5,376 KB
testcase_11 AC 31 ms
5,376 KB
testcase_12 AC 31 ms
5,376 KB
testcase_13 AC 20 ms
5,376 KB
testcase_14 AC 15 ms
5,376 KB
testcase_15 AC 27 ms
5,376 KB
testcase_16 AC 29 ms
5,376 KB
testcase_17 AC 4 ms
5,376 KB
testcase_18 AC 6 ms
5,376 KB
testcase_19 AC 27 ms
5,376 KB
testcase_20 AC 44 ms
7,668 KB
testcase_21 AC 49 ms
6,144 KB
testcase_22 AC 42 ms
8,856 KB
testcase_23 AC 35 ms
8,520 KB
testcase_24 AC 34 ms
7,796 KB
testcase_25 AC 91 ms
8,572 KB
testcase_26 AC 96 ms
8,532 KB
testcase_27 AC 31 ms
5,376 KB
testcase_28 AC 78 ms
10,092 KB
testcase_29 AC 51 ms
6,400 KB
testcase_30 AC 65 ms
6,776 KB
testcase_31 AC 76 ms
10,072 KB
testcase_32 AC 55 ms
8,304 KB
testcase_33 AC 48 ms
7,420 KB
testcase_34 AC 28 ms
5,632 KB
testcase_35 AC 26 ms
5,376 KB
testcase_36 AC 51 ms
6,272 KB
testcase_37 AC 55 ms
8,092 KB
testcase_38 AC 12 ms
5,376 KB
testcase_39 AC 30 ms
5,376 KB
testcase_40 AC 30 ms
5,376 KB
testcase_41 AC 29 ms
5,376 KB
testcase_42 AC 29 ms
5,376 KB
testcase_43 AC 40 ms
7,804 KB
testcase_44 AC 40 ms
7,676 KB
testcase_45 AC 40 ms
7,800 KB
testcase_46 AC 81 ms
7,396 KB
testcase_47 AC 96 ms
8,488 KB
testcase_48 AC 84 ms
8,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <cassert>

#define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl;
#define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl;

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

using namespace std;
typedef long long ll;


struct UnionFind {
    vector<int> data;
    UnionFind(int size) : data(size, -1) {}
    bool unionSet(int x, int y) {
        x = root(x); y = root(y);
        if (x != y) {
        if (data[y] < data[x]) swap(x, y);
        data[x] += data[y]; data[y] = x;
        }
        return x != y;
    }
    bool findSet(int x, int y) {
        return root(x) == root(y);
    }
    int root(int x) {
        return data[x] < 0 ? x : data[x] = root(data[x]);
    }
    int size(int x) {
        return -data[root(x)];
    }
};

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    int n, m; cin >> n >> m;
    vector<int> s(m), t(m), d(m);
    for(int i = 0;i < m; i++){
        cin >> s[i] >> t[i] >> d[i];
        s[i]--; t[i]--;
    }
    int l = 1, r = (1e9)+1000;
    while(r-l > 1){
        UnionFind uf(n);
        int c = (r+l)/2;
        for(int i = 0; i < m; i++){
            if(d[i] >= c) uf.unionSet(s[i], t[i]);
        }
        if(uf.findSet(0, n-1)) l = c;
        else r = c;
    }

    vector<vector<int>> g(n);
    for(int i = 0; i < m; i++){
        if(d[i] >= l) {
            g[s[i]].push_back(t[i]);
            g[t[i]].push_back(s[i]);
        }
    }

    vector<bool> used(n, false);
    vector<int> dist(n);
    queue<int> que;
    que.push(0);
    dist[0] = 0;
    used[0] = true;
    while(!que.empty()){
        int v = que.front(); que.pop();
        for(int to : g[v]){
            if(!used[to]){
                used[to] = true;
                dist[to] = dist[v]+1;
                que.push(to);
            }
        }
    }
    cout << l << ' ' << dist[n-1] << endl;
}
0