結果

問題 No.845 最長の切符
ユーザー titiatitia
提出日時 2019-06-28 23:33:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,193 ms / 3,000 ms
コード長 707 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 273,984 KB
最終ジャッジ日時 2024-07-02 05:14:16
合計ジャッジ時間 13,036 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,908 KB
testcase_01 AC 48 ms
55,180 KB
testcase_02 AC 50 ms
56,484 KB
testcase_03 AC 45 ms
54,992 KB
testcase_04 AC 45 ms
55,592 KB
testcase_05 AC 45 ms
55,240 KB
testcase_06 AC 45 ms
56,756 KB
testcase_07 AC 46 ms
56,876 KB
testcase_08 AC 70 ms
72,732 KB
testcase_09 AC 52 ms
62,512 KB
testcase_10 AC 138 ms
79,232 KB
testcase_11 AC 90 ms
76,736 KB
testcase_12 AC 111 ms
77,992 KB
testcase_13 AC 69 ms
72,576 KB
testcase_14 AC 70 ms
73,600 KB
testcase_15 AC 432 ms
111,616 KB
testcase_16 AC 2,146 ms
273,984 KB
testcase_17 AC 460 ms
111,112 KB
testcase_18 AC 913 ms
165,052 KB
testcase_19 AC 244 ms
91,216 KB
testcase_20 AC 2,063 ms
271,024 KB
testcase_21 AC 1,630 ms
270,816 KB
testcase_22 AC 464 ms
111,336 KB
testcase_23 AC 170 ms
82,508 KB
testcase_24 AC 2,193 ms
272,068 KB
testcase_25 AC 47 ms
55,544 KB
testcase_26 AC 46 ms
55,420 KB
testcase_27 AC 47 ms
55,256 KB
testcase_28 AC 59 ms
66,760 KB
testcase_29 AC 47 ms
54,732 KB
権限があれば一括ダウンロードができます

ソースコード

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):
    #print(bin(USED),LAST,DIS)
    ANS=0
    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)+LLIST[LAST][i])

    return ANS

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

print(ANS)
0