結果

問題 No.2463 ストレートフラッシュ
ユーザー simansiman
提出日時 2023-09-11 20:35:51
言語 Ruby
(3.3.0)
結果
AC  
実行時間 927 ms / 2,000 ms
コード長 792 bytes
コンパイル時間 851 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 14,336 KB
最終ジャッジ日時 2024-06-29 10:20:55
合計ジャッジ時間 14,337 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
12,160 KB
testcase_01 AC 89 ms
12,160 KB
testcase_02 AC 92 ms
12,160 KB
testcase_03 AC 92 ms
12,288 KB
testcase_04 AC 96 ms
12,160 KB
testcase_05 AC 96 ms
12,160 KB
testcase_06 AC 92 ms
12,288 KB
testcase_07 AC 94 ms
12,416 KB
testcase_08 AC 96 ms
12,160 KB
testcase_09 AC 101 ms
12,544 KB
testcase_10 AC 93 ms
12,288 KB
testcase_11 AC 90 ms
12,160 KB
testcase_12 AC 96 ms
12,160 KB
testcase_13 AC 647 ms
13,568 KB
testcase_14 AC 749 ms
13,824 KB
testcase_15 AC 716 ms
13,824 KB
testcase_16 AC 756 ms
13,824 KB
testcase_17 AC 866 ms
14,208 KB
testcase_18 AC 927 ms
14,336 KB
testcase_19 AC 927 ms
14,336 KB
testcase_20 AC 923 ms
14,208 KB
testcase_21 AC 888 ms
14,080 KB
testcase_22 AC 904 ms
14,208 KB
testcase_23 AC 908 ms
14,080 KB
testcase_24 AC 911 ms
14,336 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, M = gets.split.map(&:to_i)

memo = Array.new(M + 1) { Array.new(N + 2, Float::INFINITY) }

1.upto(N * M) do |t|
  n, m = gets.split.map(&:to_i)

  if t <= 5
    t = 0
  else
    t -= 5
  end

  memo[m][n] = t if memo[m][n] > t
  if n == 1
    memo[m][N + 1] = t if memo[m][N + 1] > t
  end
end

ans = Float::INFINITY

1.upto(M) do |m|
  1.upto(N - 4) do |n|
    cards = memo[m][n..n + 4].sort
    draw_cnt = 5
    cur = 0
    cnt = 0

    while cards.size > 0
      while cards.size > 0 && cards[0] <= cur
        cards.shift
        draw_cnt -= 1
      end

      if draw_cnt > 0
        next_i = cards[0]
        len = next_i - cur
        c = (len + draw_cnt - 1) / draw_cnt
        cnt += c
        cur += c * draw_cnt
      end
    end

    ans = cnt if ans > cnt
  end
end

puts ans
0