結果
問題 | No.90 品物の並び替え |
ユーザー | rpy3cpp |
提出日時 | 2015-08-08 20:44:43 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 4,042 ms / 5,000 ms |
コード長 | 1,260 bytes |
コンパイル時間 | 75 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 11,264 KB |
最終ジャッジ日時 | 2024-07-18 06:03:56 |
合計ジャッジ時間 | 45,076 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4,039 ms
11,264 KB |
testcase_01 | AC | 4,040 ms
11,264 KB |
testcase_02 | AC | 4,034 ms
11,264 KB |
testcase_03 | AC | 4,042 ms
11,264 KB |
testcase_04 | AC | 4,042 ms
11,264 KB |
testcase_05 | AC | 4,035 ms
11,136 KB |
testcase_06 | AC | 4,039 ms
11,264 KB |
testcase_07 | AC | 4,037 ms
11,264 KB |
testcase_08 | AC | 4,035 ms
11,264 KB |
testcase_09 | AC | 4,036 ms
11,264 KB |
ソースコード
import random import time def read_data(): N, M = map(int, input().split()) score = [[0]*N for i in range(N)] for m in range(M): a, b, s = map(int, input().split()) score[a][b] = s return N, M, score def solve(N, M, score): sol = list(range(N)) total = calc_score(sol, score) delta = 10**6 r = 0.995 record = total while int(delta): delta *= r a = random.randint(0, N-1) b = random.randint(0, N-1) if a == b: continue sol[a], sol[b] = sol[b], sol[a] new_total = calc_score(sol, score) if new_total + delta < total: sol[a], sol[b] = sol[b], sol[a] else: if new_total > record: record = new_total total = new_total return record def calc_score(sol, score): n = len(sol) total = 0 for i in range(n-1): score_i = score[sol[i]] for j in range(i+1, n): total += score_i[sol[j]] return total if __name__ == '__main__': start = time.time() N, M, score = read_data() bestscore = 0 while time.time() - start < 4: s = solve(N, M, score) if s > bestscore: bestscore = s print(bestscore)