結果
問題 | No.845 最長の切符 |
ユーザー | pengincoalition |
提出日時 | 2019-07-04 21:13:27 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 675 bytes |
コンパイル時間 | 156 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 31,744 KB |
最終ジャッジ日時 | 2024-09-19 06:46:59 |
合計ジャッジ時間 | 7,012 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
16,512 KB |
testcase_01 | AC | 31 ms
10,880 KB |
testcase_02 | AC | 40 ms
11,392 KB |
testcase_03 | AC | 30 ms
10,880 KB |
testcase_04 | AC | 33 ms
11,008 KB |
testcase_05 | AC | 33 ms
10,880 KB |
testcase_06 | AC | 31 ms
10,880 KB |
testcase_07 | AC | 30 ms
10,880 KB |
testcase_08 | AC | 41 ms
11,136 KB |
testcase_09 | AC | 32 ms
10,880 KB |
testcase_10 | AC | 105 ms
11,776 KB |
testcase_11 | AC | 40 ms
11,008 KB |
testcase_12 | AC | 57 ms
11,264 KB |
testcase_13 | AC | 36 ms
11,136 KB |
testcase_14 | AC | 46 ms
11,264 KB |
testcase_15 | AC | 1,667 ms
17,920 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={} 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]))