結果

問題 No.845 最長の切符
ユーザー んんんんんん
提出日時 2022-12-31 17:52:51
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 35 ms / 3,000 ms
コード長 984 bytes
コンパイル時間 2,127 ms
コンパイル使用メモリ 206,976 KB
実行使用メモリ 14,080 KB
最終ジャッジ日時 2024-11-26 15:52:19
合計ジャッジ時間 3,117 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 9 ms
5,760 KB
testcase_16 AC 35 ms
14,080 KB
testcase_17 AC 9 ms
5,760 KB
testcase_18 AC 16 ms
8,192 KB
testcase_19 AC 5 ms
5,248 KB
testcase_20 AC 35 ms
13,952 KB
testcase_21 AC 33 ms
13,952 KB
testcase_22 AC 9 ms
5,632 KB
testcase_23 AC 3 ms
5,248 KB
testcase_24 AC 34 ms
13,952 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 34 ms
13,952 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 32 ms
13,952 KB
testcase_29 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    int N, M;
    cin >> N >> M;
    vector<vector<long long>> dist(N, vector<long long>(N, -1 << 30));
    for (int i = 0; i < M; i++) {
        int a, b, c;
        cin >> a >> b >> c;
        a--; b--;
        if (dist[a][b] < c) dist[a][b] = dist[b][a] = c;
    }

    vector<vector<long long>> dp(1 << N, vector<long long>(N, -1LL << 60));
    for (int i = 0; i < N; i++) dp[1 << i][i] = 0;
    for (int i = 0; i < (1 << N); i++) {
        for (int j = 0; j < N; j++) {
            if ((i >> j) & 1 == 0) continue;
            int l = i ^ (1 << j);
            for (int k = 0; k < N; k++) {
                if ((l >> k) & 1 == 0) continue;
                dp[i][j] = max(dp[i][j], dp[l][k] + dist[k][j]);
            }
        }
    }

    long long ans = 0;
    for (int i = 0; i < (1 << N); i++) {
        for (int j = 0; j < N; j++) {
            ans = max(ans, dp[i][j]);
        }
    }

    cout << ans << endl;
}
0