結果

問題 No.845 最長の切符
ユーザー titiatitia
提出日時 2019-06-28 23:27:02
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 762 bytes
コンパイル時間 399 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 87,576 KB
最終ジャッジ日時 2024-07-02 05:13:50
合計ジャッジ時間 6,478 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
57,600 KB
testcase_01 AC 41 ms
52,352 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 40 ms
52,416 KB
testcase_04 AC 39 ms
52,480 KB
testcase_05 AC 41 ms
51,968 KB
testcase_06 AC 40 ms
52,600 KB
testcase_07 AC 41 ms
52,352 KB
testcase_08 AC 66 ms
70,528 KB
testcase_09 AC 50 ms
61,952 KB
testcase_10 AC 582 ms
76,852 KB
testcase_11 AC 88 ms
75,976 KB
testcase_12 AC 93 ms
76,032 KB
testcase_13 AC 79 ms
75,964 KB
testcase_14 AC 63 ms
68,224 KB
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,M=map(int,input().split())
L=[list(map(int,input().split())) for i in range(M)]

for i in range(M):
    L[i][0]-=1
    L[i][1]-=1

LLIST=[[-1]*(N) for i in range(N)]

for x,y,z in L:
    LLIST[x][y]=max(LLIST[x][y],z)
    LLIST[y][x]=max(LLIST[y][x],z)
    
#from functools import lru_cache
#@lru_cache(maxsize=None)
def calc(USED,LAST,DIS):
    #print(bin(USED),LAST,DIS)
    ANS=DIS
    for i in range(N):
        if USED & (1<<i) !=0:
            continue
        if LLIST[LAST][i]==-1:
            continue

        USED2=USED+(1<<i)


        ANS=max(ANS,calc(USED2,i,DIS+LLIST[LAST][i]))

    return ANS

ANS=0
for i in range(N):
    ANS=max(ANS,calc(1<<i,i,0))

print(ANS)

                
        
        
    
0