結果

問題 No.845 最長の切符
ユーザー んんんんんん
提出日時 2022-12-31 17:50:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 964 bytes
コンパイル時間 2,264 ms
コンパイル使用メモリ 205,292 KB
実行使用メモリ 14,080 KB
最終ジャッジ日時 2024-05-05 00:12:49
合計ジャッジ時間 3,226 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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--;
        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