結果

問題 No.845 最長の切符
ユーザー pekempeypekempey
提出日時 2019-06-29 19:57:42
言語 Ruby
(3.3.0)
結果
AC  
実行時間 2,486 ms / 3,000 ms
コード長 605 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 20,608 KB
最終ジャッジ日時 2024-07-02 05:39:47
合計ジャッジ時間 17,137 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,160 KB
testcase_01 AC 88 ms
12,160 KB
testcase_02 AC 94 ms
12,160 KB
testcase_03 AC 89 ms
12,032 KB
testcase_04 AC 87 ms
12,288 KB
testcase_05 AC 89 ms
12,160 KB
testcase_06 AC 88 ms
12,160 KB
testcase_07 AC 88 ms
12,160 KB
testcase_08 AC 94 ms
12,288 KB
testcase_09 AC 88 ms
12,160 KB
testcase_10 AC 129 ms
12,416 KB
testcase_11 AC 93 ms
12,032 KB
testcase_12 AC 107 ms
12,032 KB
testcase_13 AC 90 ms
12,032 KB
testcase_14 AC 101 ms
12,288 KB
testcase_15 AC 553 ms
14,208 KB
testcase_16 AC 2,486 ms
20,352 KB
testcase_17 AC 553 ms
14,080 KB
testcase_18 AC 1,132 ms
15,872 KB
testcase_19 AC 290 ms
12,928 KB
testcase_20 AC 2,462 ms
20,352 KB
testcase_21 AC 2,420 ms
20,480 KB
testcase_22 AC 554 ms
14,208 KB
testcase_23 AC 180 ms
12,416 KB
testcase_24 AC 2,459 ms
20,480 KB
testcase_25 AC 89 ms
12,032 KB
testcase_26 AC 277 ms
20,608 KB
testcase_27 AC 86 ms
12,032 KB
testcase_28 AC 328 ms
20,352 KB
testcase_29 AC 88 ms
12,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def ints() gets.split.map(&:to_i) end
  
n, m = ints
$n = n

inf = 10**9
g = [-inf]*(n**2)
m.times do
  a, b, c = ints
  a -= 1
  b -= 1
  g[a*n+b] = [g[a*n+b], c].max
  g[b*n+a] = [g[b*n+a], c].max
end


dp = [-inf] * ((1<<n) * n)
def index(i, j) i * $n + j end
for i in 0...n
  dp[index(1 << i, i)] = 0
end

ans = -inf
for i in 0...1<<n
  for j in 0...n
    next if dp[index(i, j)] == -inf
    ans = [ans, dp[index(i, j)]].max
    for k in 0...n
      if (i >> k & 1) == 0
        t = index(i | 1 << k, k)
        dp[t] = [dp[t], dp[index(i, j)] + g[j*n+k]].max
      end
    end
  end
end

puts ans



0