結果

問題 No.1320 Two Type Min Cost Cycle
ユーザー 37zigen37zigen
提出日時 2020-12-18 05:57:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 626 ms / 2,000 ms
コード長 1,313 bytes
コンパイル時間 886 ms
コンパイル使用メモリ 86,684 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-21 08:56:27
合計ジャッジ時間 9,657 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 54 ms
6,944 KB
testcase_08 AC 74 ms
6,944 KB
testcase_09 AC 568 ms
6,944 KB
testcase_10 AC 99 ms
6,940 KB
testcase_11 AC 434 ms
6,940 KB
testcase_12 AC 175 ms
6,944 KB
testcase_13 AC 274 ms
6,944 KB
testcase_14 AC 11 ms
6,940 KB
testcase_15 AC 112 ms
6,940 KB
testcase_16 AC 53 ms
6,940 KB
testcase_17 AC 35 ms
6,940 KB
testcase_18 AC 29 ms
6,944 KB
testcase_19 AC 263 ms
6,940 KB
testcase_20 AC 11 ms
6,944 KB
testcase_21 AC 419 ms
6,944 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 1 ms
6,940 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 1 ms
6,940 KB
testcase_28 AC 31 ms
6,940 KB
testcase_29 AC 295 ms
6,940 KB
testcase_30 AC 3 ms
6,944 KB
testcase_31 AC 50 ms
6,944 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 409 ms
6,944 KB
testcase_34 AC 183 ms
6,944 KB
testcase_35 AC 22 ms
6,944 KB
testcase_36 AC 17 ms
6,944 KB
testcase_37 AC 5 ms
6,940 KB
testcase_38 AC 36 ms
6,940 KB
testcase_39 AC 7 ms
6,944 KB
testcase_40 AC 2 ms
6,940 KB
testcase_41 AC 2 ms
6,940 KB
testcase_42 AC 2 ms
6,940 KB
testcase_43 AC 281 ms
6,940 KB
testcase_44 AC 136 ms
6,940 KB
testcase_45 AC 626 ms
6,940 KB
testcase_46 AC 58 ms
6,944 KB
testcase_47 AC 275 ms
6,940 KB
testcase_48 AC 241 ms
6,940 KB
testcase_49 AC 29 ms
6,940 KB
testcase_50 AC 2 ms
6,940 KB
testcase_51 AC 2 ms
6,944 KB
testcase_52 AC 47 ms
6,944 KB
testcase_53 AC 29 ms
6,940 KB
testcase_54 AC 263 ms
6,940 KB
testcase_55 AC 265 ms
6,944 KB
testcase_56 AC 269 ms
6,944 KB
testcase_57 AC 436 ms
6,940 KB
testcase_58 AC 437 ms
6,944 KB
testcase_59 AC 436 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:41:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   41 | main() {
      | ^~~~

ソースコード

diff #

#include <string>
#include <iostream>
#include <vector>
#include <queue>

using namespace std;
int T, N, M;
int U[2000], V[2000];
long long W[2000];

long long dijkstra(int src, int dst, int id) {
    vector<vector<pair<int, long long>>> G(N);
    for (int i = 0; i < M; ++i) if (i != id) {
        G[U[i]].push_back(make_pair(V[i], W[i]));
        if (T == 0) {
            G[V[i]].push_back(make_pair(U[i], W[i]));
        }
    }
    vector<long long> d(N, (long long)1e18);
    priority_queue<pair<long long, int>> pq;
    pq.push(make_pair(0, src));
    d[src] = 0;
    while (!pq.empty()) {
        auto p = pq.top();
        auto cost = -p.first;
        auto u = p.second;
        pq.pop();
        if (d[u] < cost) continue;
        for (auto e:G[u]) {
            int v = e.first;
            long long nd = d[u] + e.second;
            if (d[v] > nd) {
                d[v] = nd;
                pq.push(make_pair(-nd, v));
            }
        }
    }
    return d[dst];
}

main() {
    cin >> T >> N >> M;
    for (int i = 0; i < M; ++i) {
        cin >> U[i] >> V[i] >> W[i];
        --U[i];--V[i];
    }
    long long INF = 1e18;
    long long ans = INF;
    for (int i = 0; i < M; ++i) {
        ans = min(ans, dijkstra(V[i], U[i], i) + W[i]);
    }
    cout << (ans == INF ? -1 : ans )<< endl;
}
0