結果
問題 | No.90 品物の並び替え |
ユーザー | sdads |
提出日時 | 2019-02-04 10:45:45 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,224 bytes |
コンパイル時間 | 84 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 57,768 KB |
最終ジャッジ日時 | 2024-06-06 18:52:47 |
合計ジャッジ時間 | 8,763 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 455 ms
43,912 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
ソースコード
import itertools import numpy as np item1 = [] item2 = [] N, M = list(map(int, input().split())) #score_book = [[0 for i in range(N)] for j in range(N)] score_book = np.zeros([N, N]) score = np.zeros([M, 3]) for n in range(M): i, j, k = list(map(int, input().split())) score[n, 0] = i score[n, 1] = j score[n, 2] = k #全てのパターンを網羅する。 #combi = list(itertools.permutations([i for i in range(N)], N)) combi = np.array(list(itertools.permutations([i for i in range(N)], N))) #全通りのスコアを入れる配列を作る #score_table = [0 for i in range(len(combi))] combi_len = len(combi) score_table = np.zeros([combi_len]) for i in range(combi_len): for j in range(N - 1): for m in range(M): if combi[i][j] == score[m, 0]: #組み合わせの先頭で一致すれば、後ろはどの組み合わせでも問題ない if j == 0: score_table[i] = score_table[i] + score[m, 2] continue for k in range(j + 1, N): if combi[i][k] == score[m, 1]: score_table[i] = score_table[i] + score[m, 2] print(int(max(score_table)))