結果

問題 No.357 品物の並び替え (Middle)
ユーザー tcltktcltk
提出日時 2021-05-18 04:20:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 238 ms / 5,000 ms
コード長 869 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 90,368 KB
最終ジャッジ日時 2024-10-07 18:42:03
合計ジャッジ時間 4,000 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
89,064 KB
testcase_01 AC 111 ms
86,784 KB
testcase_02 AC 124 ms
89,216 KB
testcase_03 AC 124 ms
88,960 KB
testcase_04 AC 135 ms
88,832 KB
testcase_05 AC 133 ms
88,900 KB
testcase_06 AC 112 ms
86,888 KB
testcase_07 AC 113 ms
86,328 KB
testcase_08 AC 157 ms
89,600 KB
testcase_09 AC 203 ms
89,656 KB
testcase_10 AC 167 ms
89,984 KB
testcase_11 AC 164 ms
89,472 KB
testcase_12 AC 238 ms
90,112 KB
testcase_13 AC 202 ms
89,984 KB
testcase_14 AC 205 ms
90,368 KB
testcase_15 AC 166 ms
89,824 KB
testcase_16 AC 172 ms
90,060 KB
testcase_17 AC 162 ms
89,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#region Header
#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
import bisect
import heapq


def input():
    return sys.stdin.readline()[:-1]


# sys.setrecursionlimit(1000000)
#endregion

# _INPUT = """# paste here...
# """
# sys.stdin = io.StringIO(_INPUT)


def main():
    N, M = map(int, input().split())
    score = [[0] * N for _ in range(N)]
    for _ in range(M):
        i, j, n = map(int, input().split())
        score[i-1][j-1] = n

    dp = [0] * (1<<N)
    for s in range(1<<N):
        for i in range(N):
            if s & (1<<i):
                continue
            score1 = sum(score[j][i] for j in range(N) if s & (1<<j))
            dp[s | (1<<i)] = max(dp[s | (1<<i)], dp[s] + score1)
    ans = dp[(1<<N)-1]
    print(ans)


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