結果

問題 No.845 最長の切符
ユーザー pengincoalitionpengincoalition
提出日時 2019-07-05 18:49:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 615 ms / 3,000 ms
コード長 762 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 90,632 KB
最終ジャッジ日時 2024-09-22 03:41:29
合計ジャッジ時間 5,563 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,144 KB
testcase_01 AC 42 ms
54,788 KB
testcase_02 AC 49 ms
62,768 KB
testcase_03 AC 40 ms
54,156 KB
testcase_04 AC 41 ms
54,852 KB
testcase_05 AC 40 ms
53,660 KB
testcase_06 AC 40 ms
54,056 KB
testcase_07 AC 41 ms
54,724 KB
testcase_08 AC 65 ms
72,348 KB
testcase_09 AC 47 ms
61,736 KB
testcase_10 AC 76 ms
77,304 KB
testcase_11 AC 62 ms
71,492 KB
testcase_12 AC 65 ms
74,356 KB
testcase_13 AC 61 ms
69,696 KB
testcase_14 AC 59 ms
69,248 KB
testcase_15 AC 158 ms
79,780 KB
testcase_16 AC 614 ms
90,344 KB
testcase_17 AC 184 ms
80,240 KB
testcase_18 AC 288 ms
83,308 KB
testcase_19 AC 117 ms
78,352 KB
testcase_20 AC 534 ms
89,804 KB
testcase_21 AC 417 ms
90,112 KB
testcase_22 AC 186 ms
80,044 KB
testcase_23 AC 99 ms
77,560 KB
testcase_24 AC 615 ms
90,632 KB
testcase_25 AC 41 ms
54,716 KB
testcase_26 AC 92 ms
85,652 KB
testcase_27 AC 40 ms
54,216 KB
testcase_28 AC 98 ms
86,236 KB
testcase_29 AC 41 ms
54,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import copy

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

x=[[-1 for j in range(N)] for i in range(N)]
for i in range(M):
    temp1,temp2,temp3=tuple(map(int,input("").split(" ")))
    temp1-=1
    temp2-=1
    x[temp1][temp2]=max([temp3,x[temp2][temp1]])
    x[temp2][temp1]=max([temp3,x[temp2][temp1]])


dp_s=[]

if True:
    dp=[[-1 for j in range(N)] for i in range(1<<N)]
    for i in range(N):
        dp[1<<i][i]=0
    A=-100000000000000000
    for i2 in range(0,1<<N):
        for i3 in range(N):
            if  dp[i2][i3]>=0:
                A=max([A,dp[i2][i3]])
                for j in range(N):
                    if x[i3][j]>=0 and not(i2&(1<<j)):
                        dp[i2|(1<<j)][j]=max([dp[i2][i3]+x[i3][j],dp[i2|(1<<j)][j]])
    print(A)




0