結果

問題 No.572 妖精の演奏
ユーザー simansiman
提出日時 2022-11-24 19:13:13
言語 Ruby
(3.3.0)
結果
AC  
実行時間 268 ms / 2,000 ms
コード長 1,029 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-10-01 08:38:20
合計ジャッジ時間 4,001 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
12,416 KB
testcase_01 AC 89 ms
12,160 KB
testcase_02 AC 86 ms
12,288 KB
testcase_03 AC 83 ms
12,288 KB
testcase_04 AC 86 ms
12,288 KB
testcase_05 AC 98 ms
12,160 KB
testcase_06 AC 108 ms
12,160 KB
testcase_07 AC 111 ms
12,160 KB
testcase_08 AC 107 ms
12,288 KB
testcase_09 AC 119 ms
12,672 KB
testcase_10 AC 245 ms
12,928 KB
testcase_11 AC 248 ms
12,672 KB
testcase_12 AC 249 ms
12,672 KB
testcase_13 AC 268 ms
12,672 KB
testcase_14 AC 216 ms
12,672 KB
testcase_15 AC 222 ms
12,672 KB
testcase_16 AC 213 ms
12,800 KB
testcase_17 AC 229 ms
12,928 KB
testcase_18 AC 95 ms
12,288 KB
testcase_19 AC 74 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
M = gets.to_i
A = M.times.map { gets.split.map(&:to_i) }
step_cost = Array.new(34) { Array.new(M) { Array.new(M, 0) } }

M.times do |i|
  M.times do |j|
    step_cost[0][i][j] = A[i][j]
  end
end

33.times do |i|
  M.times do |from|
    M.times do |to|
      M.times do |mid|
        ncost = step_cost[i][from][mid] + step_cost[i][mid][to]

        if step_cost[i + 1][from][to] < ncost
          step_cost[i + 1][from][to] = ncost
        end
      end
    end
  end
end

step_cnt = N - 1
ans = 0
dp = Array.new(34) { Array.new(M) { Array.new(M, 0) } }

33.times do |i|
  if step_cnt[i] == 1
    M.times do |from|
      M.times do |to|
        M.times do |mid|
          cost = dp[i][from][mid] + step_cost[i][mid][to]

          if dp[i + 1][from][to] < cost
            dp[i + 1][from][to] = cost
          end

          ans = cost if ans < cost
        end
      end
    end
  else
    M.times do |from|
      M.times do |to|
        dp[i + 1][from][to] = dp[i][from][to]
      end
    end
  end
end

puts ans
0