結果

問題 No.90 品物の並び替え
ユーザー nanaenanae
提出日時 2017-03-04 03:48:42
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 1,029 bytes
コンパイル時間 838 ms
コンパイル使用メモリ 106,572 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-03 01:42:23
合計ジャッジ時間 1,503 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import std.stdio, std.string, std.conv, std.array, std.algorithm;
import std.uni, std.range, std.math, std.container, std.datetime;
import core.bitop;

immutable long MOD = 1_000_000_007;

void main(){
    char[] buf; readln(buf);
    auto input = buf.split.to!(int[]);
    auto N = input[0], M = input[1];
    auto st = new int[][](N, N);

    foreach(i ; 0 .. M){
        readln(buf);
        input = buf.split.to!(int[]);
        auto a = input[0], b = input[1], score = input[2];
        st[a][b] = score;
    }

    auto ans = bitDP(N, st);

    writeln(ans);
}

int bitDP(int N, int[][] st){
    auto uni = 2^^N - 1;
    auto dp = new int[][](uni + 1, N);

    foreach(s ; 0 .. uni + 1){
        foreach(v ; 0 .. N){
            auto s2 = s & (uni ^ 1<<v);

            foreach(u ; 0 .. N){
                if(s2 & 1<<u) dp[s][v] = max(dp[s][v], dp[s2][u]);
            }

            foreach(u ; 0 .. N){
                if(s2 & 1<<u) dp[s][v] += st[u][v];
            }
        }
    }

    return dp[uni].reduce!(max);
}
0