結果

問題 No.357 品物の並び替え (Middle)
ユーザー Poina15Poina15
提出日時 2018-08-24 19:02:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 489 ms / 5,000 ms
コード長 534 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-06-23 03:32:10
合計ジャッジ時間 2,948 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 25 ms
11,008 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 34 ms
10,880 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 31 ms
10,880 KB
testcase_09 AC 224 ms
11,008 KB
testcase_10 AC 65 ms
10,752 KB
testcase_11 AC 65 ms
10,880 KB
testcase_12 AC 489 ms
11,392 KB
testcase_13 AC 231 ms
11,008 KB
testcase_14 AC 232 ms
11,008 KB
testcase_15 AC 69 ms
10,880 KB
testcase_16 AC 117 ms
10,880 KB
testcase_17 AC 66 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
tbl = [[0] * N for _ in range(N)]
dp = [0] * (1 << N)
dp[0] = 0
for _ in range(M):
    a, b, score = map(int, input().split())
    tbl[a - 1][b - 1] = score

for msk in range(1 << N):
    for a in range(N):
        # a: 追加するitem
        s = dp[msk]
        if msk & (1 << a):
            continue
        for b in range(N):
            # b: 既に選んだitem
            if msk & (1 << b):
                s += tbl[a][b]
        dp[msk + (1 << a)] = max(dp[msk + (1 << a)], s)

print(dp[-1])
0