結果

問題 No.2408 Lakes and Fish
ユーザー simansiman
提出日時 2023-08-12 21:35:06
言語 Ruby
(3.3.0)
結果
AC  
実行時間 558 ms / 2,000 ms
コード長 545 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 26,880 KB
最終ジャッジ日時 2024-11-20 13:28:23
合計ジャッジ時間 9,949 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
12,288 KB
testcase_01 AC 91 ms
12,032 KB
testcase_02 AC 91 ms
12,160 KB
testcase_03 AC 91 ms
12,288 KB
testcase_04 AC 531 ms
26,240 KB
testcase_05 AC 530 ms
26,368 KB
testcase_06 AC 517 ms
26,880 KB
testcase_07 AC 557 ms
26,880 KB
testcase_08 AC 558 ms
26,880 KB
testcase_09 AC 548 ms
26,880 KB
testcase_10 AC 556 ms
26,752 KB
testcase_11 AC 324 ms
18,800 KB
testcase_12 AC 408 ms
25,216 KB
testcase_13 AC 167 ms
15,744 KB
testcase_14 AC 269 ms
18,016 KB
testcase_15 AC 456 ms
23,808 KB
testcase_16 AC 194 ms
18,816 KB
testcase_17 AC 189 ms
15,104 KB
testcase_18 AC 289 ms
21,120 KB
testcase_19 AC 445 ms
20,832 KB
testcase_20 AC 433 ms
18,688 KB
testcase_21 AC 448 ms
22,016 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, M = gets.split.map(&:to_i)
L = gets.split.map(&:to_i)
lake = L.tally
L << Float::INFINITY
Q = M.times.map { gets.split.map(&:to_i) }

ans = 0

Q.each do |f, b, w|
  idx = L.bsearch_index { |l| l >= f }

  if lake[f]
    ans += w
  else
    cur_power = b

    if L[idx] != Float::INFINITY
      d = L[idx] - f

      if cur_power < w - d 
        cur_power = w - d
      end
    end

    if idx - 1 >= 0
      d = f - L[idx - 1]

      if cur_power < w - d
        cur_power = w - d
      end
    end

    ans += cur_power
  end
end

puts ans
0