結果

問題 No.845 最長の切符
ユーザー treeonetreeone
提出日時 2019-06-28 22:01:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,127 bytes
コンパイル時間 2,100 ms
コンパイル使用メモリ 203,000 KB
実行使用メモリ 13,668 KB
最終ジャッジ日時 2024-07-02 04:44:06
合計ジャッジ時間 3,265 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 WA -
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 2 ms
6,940 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
6,944 KB
testcase_26 AC 7 ms
13,604 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 7 ms
13,524 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, a, n) for(int i = a; i < n; i++)
#define int long long
using namespace std;
typedef pair<int, int> P;
const int mod = 1000000007;
const int INF = 1e18;

int d[20][20];
int dp[1 << 16][20];

signed main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int n, m;
    cin >> n >> m;
    rep(i, 0, n) rep(j, 0, n) d[i][j] = -1;
    rep(i, 0, m){
        int a, b, c;
        cin >> a >> b >> c;
        a--; b--;
        d[a][b] = c;
        d[b][a] = c;
    }
    rep(i, 0, 1 << n) rep(j, 0, n) dp[i][j] = -1;
    rep(i, 0, n) dp[1 << i][i] = 0;
    for(int mask = 0; mask < (1LL << n); mask++){
        for(int i = 0; i < n; i++){
            if(dp[mask][i] == -1) continue;
            for(int j = 0; j < n; j++){
                if(mask & (1LL << j)) continue;
                if(d[i][j] == -1) continue;
                dp[mask | (1LL << j)][j] = max(dp[mask | (1LL << j)][j], dp[mask][i] + d[i][j]);
            }
        }
    }
    int ans = 0;
    rep(i, 0, 1 << n){
        rep(j, 0, n){
            ans = max(ans, dp[i][j]);
        }
    }
    cout << ans << endl;
}
0