結果

問題 No.472 平均順位
ユーザー masashi0217masashi0217
提出日時 2021-04-03 11:40:55
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 535 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 24,320 KB
最終ジャッジ日時 2024-12-24 14:49:39
合計ジャッジ時間 33,323 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
17,408 KB
testcase_01 AC 99 ms
24,064 KB
testcase_02 AC 98 ms
17,280 KB
testcase_03 AC 97 ms
24,064 KB
testcase_04 AC 120 ms
17,280 KB
testcase_05 AC 94 ms
23,936 KB
testcase_06 AC 104 ms
17,152 KB
testcase_07 AC 131 ms
24,192 KB
testcase_08 AC 394 ms
17,280 KB
testcase_09 AC 1,699 ms
24,320 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n, pp = gets.chomp.split(" ").map(&:to_i)
INF = Float::INFINITY
dp = Array.new(2).map{Array.new((n * 3)+4,INF)}
dp[0][0] = 0
max = 0
n.times do |i|
    a, b, c = gets.chomp.split(" ").map(&:to_i)
    d = 1
    rank = [a,b,c,d]
    max += 3
    0.upto(max) do |j|
        0.upto(3) do |k|
            #p [dp[1][j+k],dp[0][j+k]+rank[k]].min

            dp[1][j+k] = [dp[1][j+k],dp[0][j]+rank[k]].min
        end
    end
    0.upto(max) do |xy|
        dp[0][xy] = dp[1][xy]
        dp[1][xy] = INF
    end
end
puts ((dp[0])[pp])/n.to_f
0