結果

問題 No.357 品物の並び替え (Middle)
ユーザー ckawatakckawatak
提出日時 2017-10-11 20:49:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 5,000 ms
コード長 783 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 71,320 KB
最終ジャッジ日時 2024-11-17 09:45:07
合計ジャッジ時間 2,230 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
63,692 KB
testcase_01 AC 37 ms
52,916 KB
testcase_02 AC 46 ms
60,808 KB
testcase_03 AC 46 ms
60,684 KB
testcase_04 AC 50 ms
62,664 KB
testcase_05 AC 50 ms
62,504 KB
testcase_06 AC 43 ms
58,936 KB
testcase_07 AC 37 ms
52,148 KB
testcase_08 AC 55 ms
66,056 KB
testcase_09 AC 70 ms
68,368 KB
testcase_10 AC 58 ms
66,880 KB
testcase_11 AC 57 ms
65,320 KB
testcase_12 AC 76 ms
71,320 KB
testcase_13 AC 71 ms
68,472 KB
testcase_14 AC 71 ms
70,184 KB
testcase_15 AC 60 ms
66,796 KB
testcase_16 AC 62 ms
67,852 KB
testcase_17 AC 57 ms
66,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = list(map(int, input().split(' ')))

S = []
for i in range(N):
    S.append([0 for _ in range(N)])

for i in range(M):
    f, t, s = list(map(int, input().split(' ')))
    S[f][t] = s

# score for each bit vector expressing that each number is used or not    
dp = [0 for _ in range(1 << N)]

for p in range(1 << N):
    for i in range(N):
        # if 'i' is not used yet at p, calculate the score when 'i' is used at p
        if (p & (1 << i)) == 0:
            score = dp[p]
            for j in range(N):
                if (p & (1 << j)) != 0:
                    score += S[j][i]
            # update the score when 'i' used at p
            dp[p | (1 << i)] = max(dp[p | (1 << i)], score)
# check the score when all the number is used            
print(dp[(1 << N)-1])
0