結果

問題 No.357 品物の並び替え (Middle)
ユーザー UekiUeki
提出日時 2019-05-15 16:18:04
言語 Python2
(2.7.18)
結果
AC  
実行時間 1,774 ms / 5,000 ms
コード長 716 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 6,812 KB
実行使用メモリ 7,040 KB
最終ジャッジ日時 2024-09-14 03:13:58
合計ジャッジ時間 5,246 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
6,812 KB
testcase_01 AC 10 ms
6,944 KB
testcase_02 AC 12 ms
6,940 KB
testcase_03 AC 13 ms
6,944 KB
testcase_04 AC 19 ms
6,940 KB
testcase_05 AC 16 ms
6,940 KB
testcase_06 AC 12 ms
6,944 KB
testcase_07 AC 11 ms
6,944 KB
testcase_08 AC 34 ms
6,940 KB
testcase_09 AC 386 ms
6,944 KB
testcase_10 AC 142 ms
6,940 KB
testcase_11 AC 56 ms
6,940 KB
testcase_12 AC 1,774 ms
7,040 KB
testcase_13 AC 842 ms
6,940 KB
testcase_14 AC 528 ms
6,940 KB
testcase_15 AC 30 ms
6,940 KB
testcase_16 AC 271 ms
6,940 KB
testcase_17 AC 153 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-
# python template for atcoder1
import sys
sys.setrecursionlimit(10**9)
input = sys.stdin.readline

N, M = map(int, input().split())
items = [list(map(int, input().split())) for _ in range(M)]

# bitDP dp= max val of score
dp = [0]*(1 << N)

# すでに選んだ品物の集合
for mask in range(1 << N):
    for new_item in range(N):
        if mask >> new_item & 1 == 1:
            # すでに選ばれている
            continue

        tmp_add = 0
        for x, y, score in items:
            if new_item == x and mask >> y & 1 == 1:
                tmp_add += score
        new_state = mask | 1 << new_item
        dp[new_state] = max(dp[new_state], dp[mask]+tmp_add)
print(dp[-1])
0