結果

問題 No.357 品物の並び替え (Middle)
ユーザー shi-moshi-mo
提出日時 2016-04-02 11:51:00
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 8 ms / 5,000 ms
コード長 1,017 bytes
コンパイル時間 1,317 ms
コンパイル使用メモリ 139,372 KB
実行使用メモリ 4,376 KB
最終ジャッジ日時 2023-09-02 21:00:56
合計ジャッジ時間 2,258 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,368 KB
testcase_01 AC 1 ms
4,368 KB
testcase_02 AC 1 ms
4,372 KB
testcase_03 AC 1 ms
4,372 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 2 ms
4,372 KB
testcase_06 AC 2 ms
4,372 KB
testcase_07 AC 1 ms
4,368 KB
testcase_08 AC 2 ms
4,368 KB
testcase_09 AC 4 ms
4,372 KB
testcase_10 AC 2 ms
4,368 KB
testcase_11 AC 2 ms
4,372 KB
testcase_12 AC 8 ms
4,368 KB
testcase_13 AC 4 ms
4,368 KB
testcase_14 AC 4 ms
4,372 KB
testcase_15 AC 2 ms
4,368 KB
testcase_16 AC 3 ms
4,368 KB
testcase_17 AC 3 ms
4,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio;
import std.array;
import std.conv;
import std.algorithm;

long[] dp;
enum UNDEF = -1L;

void main() {
    uint n, m; readf("%s %s\n", &n, &m);
    uint[][] score = loadScoreTable(n, m);

    uint a = 2^^n - 1;
    dp.length = a+1; foreach (i; 0..(a+1)) { dp[i] = UNDEF; }
    writeln(dfs(0, a, n, score));
}

uint[][] loadScoreTable(uint n, uint m) {
    uint[][] table = new uint[][](n, n);

    foreach (_; 0..m) {
        uint i, j, s;
        readf("%s %s %s\n", &i, &j, &s);
        table[i][j] = s;
    }
    return table;
}

long dfs(uint done, uint left, uint n, const uint[][] score) {
    if (UNDEF != dp[done]) return dp[done];
    if (0 == left) return 0;

    long maxScore = 0;
    foreach (i; 0..n) {
        if (0 == (left & 1<<i)) continue;

        long s = 0;
        foreach (j; 0..n) {
            if (done & 1<<j) s += score[i][j];
        }
        s += dfs(done | 1<<i, left & ~(1<<i), n, score);

        maxScore = max(maxScore, s);
    }
    return dp[done] = maxScore;
}
0