結果

問題 No.2462 七人カノン
ユーザー simansiman
提出日時 2023-09-10 19:09:41
言語 Ruby
(3.3.0)
結果
AC  
実行時間 641 ms / 2,000 ms
コード長 516 bytes
コンパイル時間 44 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 22,656 KB
最終ジャッジ日時 2024-06-28 10:18:20
合計ジャッジ時間 15,141 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
14,464 KB
testcase_01 AC 126 ms
14,592 KB
testcase_02 AC 120 ms
14,464 KB
testcase_03 AC 129 ms
14,464 KB
testcase_04 AC 129 ms
14,720 KB
testcase_05 AC 131 ms
14,592 KB
testcase_06 AC 130 ms
14,592 KB
testcase_07 AC 130 ms
14,592 KB
testcase_08 AC 129 ms
14,336 KB
testcase_09 AC 134 ms
14,592 KB
testcase_10 AC 135 ms
14,720 KB
testcase_11 AC 132 ms
14,336 KB
testcase_12 AC 131 ms
14,720 KB
testcase_13 AC 533 ms
21,632 KB
testcase_14 AC 547 ms
21,888 KB
testcase_15 AC 516 ms
21,248 KB
testcase_16 AC 585 ms
22,400 KB
testcase_17 AC 589 ms
22,400 KB
testcase_18 AC 208 ms
15,616 KB
testcase_19 AC 206 ms
15,488 KB
testcase_20 AC 616 ms
22,656 KB
testcase_21 AC 631 ms
22,528 KB
testcase_22 AC 626 ms
22,528 KB
testcase_23 AC 614 ms
22,528 KB
testcase_24 AC 417 ms
18,688 KB
testcase_25 AC 641 ms
22,272 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, Q = gets.split.map(&:to_i)
rui = Array.new(100_010, 0)
scores = Array.new(100_010, 0)
data = []

Q.times do
  i, s, t = gets.split.map(&:to_i)
  rui[s] += 1
  rui[t] -= 1
  data << [i, s, t]
end

1.upto(100_000) do |t|
  rui[t] += rui[t - 1]
end

0.upto(100_000) do |t|
  if rui[t] > 0
    scores[t] = 1.0 / rui[t]
  end
end

rui_scores = [0.0]

scores.each do |x|
  rui_scores << rui_scores.last + x
end

ans = Array.new(N, 0.0)
data.each do |i, s, t|
  ans[i - 1] += rui_scores[t] - rui_scores[s]
end

puts ans
0