結果

問題 No.845 最長の切符
ユーザー pengincoalitionpengincoalition
提出日時 2019-07-04 21:23:39
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 672 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 91,904 KB
最終ジャッジ日時 2024-09-19 06:47:23
合計ジャッジ時間 6,447 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
53,760 KB
testcase_01 AC 52 ms
58,752 KB
testcase_02 AC 82 ms
73,216 KB
testcase_03 AC 47 ms
53,248 KB
testcase_04 AC 48 ms
53,504 KB
testcase_05 AC 47 ms
53,760 KB
testcase_06 AC 48 ms
53,504 KB
testcase_07 AC 52 ms
53,760 KB
testcase_08 AC 75 ms
70,272 KB
testcase_09 AC 56 ms
61,312 KB
testcase_10 AC 100 ms
77,056 KB
testcase_11 AC 72 ms
69,504 KB
testcase_12 AC 90 ms
76,288 KB
testcase_13 AC 71 ms
68,224 KB
testcase_14 AC 78 ms
73,088 KB
testcase_15 AC 248 ms
79,616 KB
testcase_16 TLE -
testcase_17 AC 1,048 ms
80,384 KB
testcase_18 AC 687 ms
83,328 KB
testcase_19 AC 244 ms
78,592 KB
testcase_20 AC 1,002 ms
90,368 KB
testcase_21 AC 607 ms
91,008 KB
testcase_22 AC 788 ms
80,256 KB
testcase_23 AC 259 ms
77,696 KB
testcase_24 TLE -
testcase_25 AC 47 ms
53,632 KB
testcase_26 AC 151 ms
90,752 KB
testcase_27 AC 47 ms
53,504 KB
testcase_28 AC 221 ms
90,752 KB
testcase_29 AC 45 ms
53,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import copy

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

x={}
for i in range(M):
    temp1,temp2,temp3=tuple(map(int,input("").split(" ")))
    if temp2-1 not in x:
        x[temp2-1]=[]
    if temp1-1 not in x:
        x[temp1-1]=[]
    x[temp2-1].append([temp3,temp1-1])
    x[temp1-1].append([temp3,temp2-1])


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

0