結果

問題 No.1473 おでぶなおばけさん
ユーザー shun2741shun2741
提出日時 2021-04-09 22:12:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 168 ms / 2,000 ms
コード長 2,814 bytes
コンパイル時間 4,249 ms
コンパイル使用メモリ 269,264 KB
実行使用メモリ 11,640 KB
最終ジャッジ日時 2024-06-25 05:44:38
合計ジャッジ時間 10,654 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 159 ms
11,076 KB
testcase_03 AC 132 ms
9,412 KB
testcase_04 AC 86 ms
7,680 KB
testcase_05 AC 33 ms
6,944 KB
testcase_06 AC 147 ms
9,496 KB
testcase_07 AC 167 ms
11,548 KB
testcase_08 AC 168 ms
11,640 KB
testcase_09 AC 165 ms
11,604 KB
testcase_10 AC 91 ms
6,940 KB
testcase_11 AC 88 ms
6,944 KB
testcase_12 AC 88 ms
6,944 KB
testcase_13 AC 56 ms
6,940 KB
testcase_14 AC 40 ms
6,940 KB
testcase_15 AC 74 ms
6,944 KB
testcase_16 AC 84 ms
6,940 KB
testcase_17 AC 8 ms
6,944 KB
testcase_18 AC 11 ms
6,944 KB
testcase_19 AC 67 ms
6,944 KB
testcase_20 AC 86 ms
8,796 KB
testcase_21 AC 105 ms
7,296 KB
testcase_22 AC 88 ms
9,940 KB
testcase_23 AC 74 ms
9,404 KB
testcase_24 AC 72 ms
8,924 KB
testcase_25 AC 130 ms
9,736 KB
testcase_26 AC 141 ms
9,636 KB
testcase_27 AC 55 ms
6,944 KB
testcase_28 AC 145 ms
11,348 KB
testcase_29 AC 113 ms
7,296 KB
testcase_30 AC 129 ms
7,924 KB
testcase_31 AC 132 ms
11,340 KB
testcase_32 AC 109 ms
9,568 KB
testcase_33 AC 96 ms
8,576 KB
testcase_34 AC 53 ms
6,940 KB
testcase_35 AC 55 ms
6,944 KB
testcase_36 AC 99 ms
7,424 KB
testcase_37 AC 102 ms
9,024 KB
testcase_38 AC 24 ms
6,940 KB
testcase_39 AC 90 ms
6,940 KB
testcase_40 AC 89 ms
6,940 KB
testcase_41 AC 75 ms
6,940 KB
testcase_42 AC 75 ms
6,944 KB
testcase_43 AC 100 ms
9,080 KB
testcase_44 AC 97 ms
9,080 KB
testcase_45 AC 98 ms
9,080 KB
testcase_46 AC 127 ms
8,528 KB
testcase_47 AC 158 ms
9,668 KB
testcase_48 AC 142 ms
9,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;

// デバッグ表示
#define dump(x) cout << #x << ":" << (x) << endl;

// 型定義
typedef long long ll;
typedef pair<ll, ll> P;

// forループ
#define REP(i,n) for(ll i=0; i<(ll)(n); ++i)

// 定数宣言
const int INF = 1e9;
const int MOD = 1e9+7;
const ll LINF = 1e18;

// modint
using mint = modint1000000007;
// using mint = modint998244353;

// グラフ表現
using Graph = vector<vector<int>>;

// グラフの辺表現
using Edge = map<pair<int,int>,int>;

// n次元配列の初期化。第2引数の型のサイズごとに初期化していく。
template<typename A, size_t N, typename T>
void Fill(A (&array)[N], const T &val){
    std::fill( (T*)array, (T*)(array+N), val );
}

// コンビネーションを計算する関数
ll pow(ll N, ll k) {
    ll res = 1;
    for (ll i = 0; i < k; ++i) res *= N;
    return res;
}

// 最大公約数
ll gcd(ll a,ll b){
   if (a%b == 0) return(b);
   else return(gcd(b, a%b));
}

// 最小公倍数
ll lcm(ll a, ll b){
    return a/gcd(a, b) * b;
}

ll N, M;
vector<ll> S;
vector<ll> T;
vector<ll> D;

bool check(ll u){
    dsu A(N);

    REP(i, M){
        ll s = S[i];
        ll t = T[i];
        ll d = D[i];
        s--;
        t--;

        if(u <= d) A.merge(s, t);
    }
    if(A.same(0, N-1)) return true;
    else return false;
}

int main()
{
    cout << fixed << setprecision(15);
    cin >> N >> M;

    
    S.resize(M);
    T.resize(M);
    D.resize(M);

    REP(i, M){
        cin >> S[i] >> T[i] >> D[i];
    }

    ll left = 0;
    ll right = LINF;

    while(right-left > 1) { // ループ継続条件
        ll middle = ((right - left) / 2) + left;

        //大丈夫なときはもう少し大きい値を見る
        if(check(middle)){ // 範囲右寄せ,左寄せ条件
            left = middle; // 左寄せ手法
        } else {
            right = middle; // 右寄せ手法
        }
    }

    // leftが最大の体重
    // dump(left);

    Graph G(N);

    REP(i, M){
        ll s = S[i];
        ll t = T[i];
        ll d = D[i];

        s--;
        t--;

        if(left <= d){
            G[s].push_back(t);
            G[t].push_back(s);
        }
    }

    vector<int> dist(N, -1);
    queue<int> que;

    dist[0] = 0;
    que.push(0);

    while(!que.empty()){
        int p;
        p = que.front();
        que.pop();

        for(int next :G[p]){
            // もし次のノードが訪問済みなら処理を飛ばす
            if(dist[next] != -1) continue;

            dist[next] = dist[p] + 1;
            que.push(next);
        }
    }

    // REP(i, N){
    //     cout << "i:" << i << " dist[i]:" << dist[i] << endl;
    // }
    cout << left << " " << dist[N-1] << endl;
    return 0;
}
0