結果

問題 No.90 品物の並び替え
ユーザー rpy3cpprpy3cpp
提出日時 2015-08-08 20:38:07
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,272 bytes
コンパイル時間 831 ms
コンパイル使用メモリ 86,820 KB
実行使用メモリ 84,848 KB
最終ジャッジ日時 2023-09-25 07:16:43
合計ジャッジ時間 3,841 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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:
        score = solve(N, M, score)
        if score > bestscore:
            bestscore = score
    print(bestscore)
0