結果

問題 No.357 品物の並び替え (Middle)
ユーザー SI1000-githubSI1000-github
提出日時 2022-10-25 14:16:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 5,000 ms
コード長 926 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 69,616 KB
最終ジャッジ日時 2024-07-03 13:22:39
合計ジャッジ時間 1,878 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
63,572 KB
testcase_01 AC 36 ms
52,808 KB
testcase_02 AC 40 ms
59,360 KB
testcase_03 AC 41 ms
59,936 KB
testcase_04 AC 48 ms
64,072 KB
testcase_05 AC 47 ms
64,852 KB
testcase_06 AC 36 ms
53,544 KB
testcase_07 AC 35 ms
53,116 KB
testcase_08 AC 50 ms
65,120 KB
testcase_09 AC 57 ms
67,748 KB
testcase_10 AC 54 ms
66,556 KB
testcase_11 AC 53 ms
66,152 KB
testcase_12 AC 80 ms
69,616 KB
testcase_13 AC 62 ms
65,892 KB
testcase_14 AC 57 ms
66,172 KB
testcase_15 AC 61 ms
69,208 KB
testcase_16 AC 55 ms
66,340 KB
testcase_17 AC 53 ms
65,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python
# -*- coding: utf-8 -*-

# import
from sys import stdin, setrecursionlimit
setrecursionlimit(10**8)

def int_map():
    return map(int,input().split())

def int_list():
    return list(map(int,input().split()))

def int_mtx(N):
    x = [list(map(int, stdin.readline().split())) for _ in range(N)]
    return x

def str_mtx(N):
    x = [list(stdin.readline()[:-1]) for _ in range(N)]
    return x

def print_space(l):
    return print(" ".join([str(x) for x in l]))



"""    main code    """

N,M = int_map()

G = [[] for _ in range(N)]

for _ in range(M):
    i,j,c = int_map()
    G[j].append([i,c])

dp = [0 for _ in range(2**N)]

for s in range(2**N):
    for j in range(N):
        if s >> j & 1 == 0:
            cst = 0
            for i,c in G[j]:
                if s >> i & 1 == 1:
                    cst += c                
            dp[s+2**j] = max(dp[s+2**j], dp[s]+cst)

print(dp[2**N-1])
0