結果
問題 | No.845 最長の切符 |
ユーザー | pengincoalition |
提出日時 | 2019-07-05 18:49:13 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 762 bytes |
コンパイル時間 | 152 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 17,824 KB |
最終ジャッジ日時 | 2024-09-22 03:40:41 |
合計ジャッジ時間 | 6,675 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
17,824 KB |
testcase_01 | AC | 32 ms
10,880 KB |
testcase_02 | AC | 35 ms
11,136 KB |
testcase_03 | AC | 31 ms
11,008 KB |
testcase_04 | AC | 31 ms
10,880 KB |
testcase_05 | AC | 30 ms
10,880 KB |
testcase_06 | AC | 31 ms
10,880 KB |
testcase_07 | AC | 32 ms
10,880 KB |
testcase_08 | AC | 36 ms
11,008 KB |
testcase_09 | AC | 32 ms
11,136 KB |
testcase_10 | AC | 98 ms
11,648 KB |
testcase_11 | AC | 39 ms
11,008 KB |
testcase_12 | AC | 48 ms
11,264 KB |
testcase_13 | AC | 35 ms
11,008 KB |
testcase_14 | AC | 38 ms
11,136 KB |
testcase_15 | AC | 1,056 ms
17,664 KB |
testcase_16 | TLE | - |
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 | -- | - |
ソースコード
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)