結果

問題 No.845 最長の切符
ユーザー pekempeypekempey
提出日時 2019-06-29 20:04:26
言語 Crystal
(1.11.2)
結果
AC  
実行時間 241 ms / 3,000 ms
コード長 612 bytes
コンパイル時間 12,693 ms
コンパイル使用メモリ 295,996 KB
実行使用メモリ 8,812 KB
最終ジャッジ日時 2024-06-30 19:48:19
合計ジャッジ時間 14,325 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,852 KB
testcase_01 AC 4 ms
6,956 KB
testcase_02 AC 5 ms
6,968 KB
testcase_03 AC 4 ms
6,944 KB
testcase_04 AC 4 ms
6,944 KB
testcase_05 AC 4 ms
6,940 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 AC 5 ms
7,228 KB
testcase_09 AC 4 ms
6,944 KB
testcase_10 AC 8 ms
8,456 KB
testcase_11 AC 5 ms
7,084 KB
testcase_12 AC 6 ms
7,992 KB
testcase_13 AC 5 ms
6,940 KB
testcase_14 AC 6 ms
7,564 KB
testcase_15 AC 50 ms
8,620 KB
testcase_16 AC 241 ms
8,800 KB
testcase_17 AC 50 ms
8,756 KB
testcase_18 AC 109 ms
8,596 KB
testcase_19 AC 26 ms
8,584 KB
testcase_20 AC 232 ms
8,684 KB
testcase_21 AC 230 ms
8,444 KB
testcase_22 AC 51 ms
8,812 KB
testcase_23 AC 15 ms
8,580 KB
testcase_24 AC 229 ms
8,720 KB
testcase_25 AC 5 ms
6,940 KB
testcase_26 AC 6 ms
6,940 KB
testcase_27 AC 3 ms
6,948 KB
testcase_28 AC 12 ms
8,492 KB
testcase_29 AC 4 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def ints() gets.not_nil!.split.map(&.to_i) end
  
n, m = ints

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<<16) * 16)
def index(i, j) i * 16 + j end

n.times do |i|
  dp[index(1 << i, i)] = 0
end

ans = -inf
(1<<n).times do |i|
  n.times do |j|
    next if dp[index(i, j)] == -inf
    ans = [ans, dp[index(i, j)]].max
    n.times do |k|
      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