結果

問題 No.848 なかよし旅行
ユーザー ganmodokixganmodokix
提出日時 2019-07-05 23:38:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 3,433 bytes
コンパイル時間 2,621 ms
コンパイル使用メモリ 192,604 KB
実行使用メモリ 42,604 KB
最終ジャッジ日時 2024-04-27 02:53:07
合計ジャッジ時間 5,233 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
42,044 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 4 ms
6,940 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 52 ms
25,768 KB
testcase_12 AC 70 ms
31,820 KB
testcase_13 AC 92 ms
36,644 KB
testcase_14 AC 34 ms
30,464 KB
testcase_15 AC 83 ms
32,120 KB
testcase_16 AC 154 ms
42,604 KB
testcase_17 AC 100 ms
29,668 KB
testcase_18 AC 52 ms
24,288 KB
testcase_19 AC 47 ms
26,300 KB
testcase_20 AC 28 ms
34,688 KB
testcase_21 AC 118 ms
31,056 KB
testcase_22 AC 123 ms
12,200 KB
testcase_23 AC 38 ms
34,688 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 152 ms
41,044 KB
testcase_26 AC 1 ms
6,944 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize ("O3")
#pragma GCC target ("tune=native")
#pragma GCC target ("avx")

#include <bits/stdc++.h>

// 汎用マクロ
#define ALL_OF(x) (x).begin(), (x).end()
#define REP(i,n) for (long long i=0, i##_len=(n); i<i##_len; i++)
#define RANGE(i,is,ie) for (long long i=(is), i##_end=(ie); i<=i##_end; i++)
#define DSRNG(i,is,ie) for (long long i=(is), i##_end=(ie); i>=i##_end; i--)
#define UNIQUE(v) { sort((v).begin(), (v).end()); (v).erase(unique((v).begin(), (v).end()), (v).end()); }
template<class T> bool chmax(T &a, const T &b) {if (a < b) {a = b; return true;} return false; }
template<class T> bool chmin(T &a, const T &b) {if (a > b) {a = b; return true;} return false; }
#define INF 0x7FFFFFFF
#define LINF 0x7FFFFFFFFFFFFFFFLL
#define Yes(q) (q ? "Yes" : "No")
#define YES(q) (q ? "YES" : "NO")
#define DUMP(q) cerr << "[DEBUG] " #q ": " << (q) << " at " __FILE__ ":" << __LINE__ << endl
#define DUMPALL(q) { cerr << "[DEBUG] " #q ": ["; REP(dumpall_i, (q).size()) { cerr << q[dumpall_i] << (dumpall_i == (q).size() - 1 ? "" : ", "); } cerr << "] at " __FILE__ ":" << __LINE__ << endl; }
template<class T> T gcd(const T &a, const T &b) { return a < b ? gcd(b, a) : b ? gcd(b, a % b) : a; }
template<class T> T lcm(const T &a, const T &b) { return a / gcd(a, b) * b; }

// gcc拡張マクロ
#define popcount __builtin_popcount
#define popcountll __builtin_popcountll

// エイリアス
using  ll = long long;
using ull = unsigned long long;
using  ld = long double;
using namespace std;

// モジュール


// 処理内容
int main() {
    
    ll n, m, p, q, t;
    cin >> n >> m >> p >> q >> t;
    p--; q--;

    vector<vector<pair<ll, ll>>> g(n); // (dest, cost)
    REP(i, m) {
        ll a, b, c;
        cin >> a >> b >> c;
        a--; b--;
        g[a].emplace_back(b, c);
        g[b].emplace_back(a, c);
    }

    using pllll = pair<ll, ll>;

    auto dijcmp = [](pllll i, pllll j) -> bool {
        return i.second > j.second;
    };

    // daikusutora O(N(M + NlogN))
    // may the time be in
    vector<vector<ll>> d(n, vector<ll>(n, INF));
    REP(_i, 3) {

        ll i;
        switch(_i) {
            case 0: i = 0; break;
            case 1: i = p; break;
            case 2: i = q; break;
        }
        
        priority_queue<pllll, vector<pllll>, decltype(dijcmp)> q(dijcmp); // (dest, cost)

        q.push(pllll(i, 0));

        while (!q.empty()) {

            pllll v = q.top(); q.pop();
            if (!chmin(d[i][v.first], v.second)) continue;

            for (pllll &vn : g[v.first]) {
                ll cn = v.second + vn.second;
                if (d[i][vn.first] > cn) {
                    q.push(pllll(vn.first, cn));
                }
            }

        }

    }

    // cerr << "[DEBUG] [\n";
    // REP(i, n) REP(j, n) cerr << d[i][j] << " \n"[j==n-1];

    // always together (hokkori)
    if (d[0][p] + d[p][q] + d[0][q] <= t) {
        cout << t << endl;
        return 0;
    }

    ll ans = -1;

    // they have to trip apart
    // 0 -> i -> p -> j -> 0
    //      +--> q ---^
    REP(i, n) REP(j, n) { // i: 経由点
        ll tt = d[0][i] + d[0][j];
        ll tn = tt + max(d[p][i] + d[p][j], d[q][i] + d[q][j]);
        if (tn <= t) {
            chmax(ans, tt + (t - tn));
        }
    }

    cout << ans << endl;
    
}
0