結果

問題 No.90 品物の並び替え
ユーザー sdadssdads
提出日時 2019-02-04 11:27:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 708 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 821,376 KB
最終ジャッジ日時 2024-06-06 20:12:32
合計ジャッジ時間 8,197 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,752 KB
testcase_01 AC 762 ms
101,120 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 92 ms
19,328 KB
testcase_04 AC 92 ms
19,328 KB
testcase_05 AC 768 ms
101,120 KB
testcase_06 AC 766 ms
101,120 KB
testcase_07 AC 38 ms
11,776 KB
testcase_08 AC 32 ms
10,880 KB
testcase_09 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

item1 = []
item2 = []

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

score_book = [[0 for i in range(N)] for j in range(N)]

for n in range(M):
    i, j, k = list(map(int, input().split()))
    item1.append(i)
    item2.append(j)
    score_book[item1[n]][item2[n]] = k

#全てのパターンを網羅する。
permu = list(itertools.permutations([i for i in range(N)], N))
combi = []
for i in permu:
    combi.append(list(itertools.combinations(i, 2)))

combi_len = len(combi)
#全通りのスコアを入れる配列を作る
score_table = [0] * combi_len

for i, co in enumerate(combi):
    for j in co:
        score_table[i] = score_table[i] + score_book[j[0]][j[1]]

print(max(score_table))
0