結果

問題 No.357 品物の並び替え (Middle)
ユーザー みあえみあえ
提出日時 2024-04-01 01:14:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 769 bytes
コンパイル時間 2,771 ms
コンパイル使用メモリ 81,444 KB
実行使用メモリ 76,080 KB
最終ジャッジ日時 2024-04-01 01:14:41
合計ジャッジ時間 5,266 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 40 ms
55,608 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 88 ms
75,944 KB
testcase_16 WA -
testcase_17 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from itertools import combinations


def solve(N, M, items2score):
    dp = [-float("inf")] * (1 << N)
    dp[0] = 0
    for V in range(1 << N):
        for i in range(N):
            for j in range(N):
                if i == j:
                    continue
                if not ((V >> i) & 1) or not ((V >> j) & 1):
                    VV = V | (1 << i) | (1 << j)
                    dp[VV] = max(dp[VV], dp[V] + items2score[(i, j)])

    return dp[-1]


def main():
    N, M = map(int, input().split())
    items2socre = defaultdict(int)
    for _ in range(M):
        i, j, s = map(int, input().split())
        items2socre[(i, j)] = s
    ans = solve(N, M, items2socre)
    print(ans)


if __name__ == "__main__":
    main()
0