結果

問題 No.1708 Quality of Contest
ユーザー shimatshimat
提出日時 2021-10-26 19:50:43
言語 Ruby
(3.3.0)
結果
AC  
実行時間 792 ms / 2,000 ms
コード長 395 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 51,632 KB
最終ジャッジ日時 2024-10-05 21:18:21
合計ジャッジ時間 16,800 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,160 KB
testcase_01 AC 88 ms
12,160 KB
testcase_02 AC 89 ms
12,288 KB
testcase_03 AC 102 ms
12,544 KB
testcase_04 AC 103 ms
12,672 KB
testcase_05 AC 104 ms
12,544 KB
testcase_06 AC 101 ms
12,800 KB
testcase_07 AC 100 ms
12,672 KB
testcase_08 AC 89 ms
12,032 KB
testcase_09 AC 738 ms
51,632 KB
testcase_10 AC 724 ms
41,408 KB
testcase_11 AC 763 ms
44,636 KB
testcase_12 AC 764 ms
46,276 KB
testcase_13 AC 763 ms
46,268 KB
testcase_14 AC 762 ms
46,520 KB
testcase_15 AC 765 ms
47,168 KB
testcase_16 AC 772 ms
47,320 KB
testcase_17 AC 755 ms
46,428 KB
testcase_18 AC 751 ms
46,652 KB
testcase_19 AC 764 ms
46,912 KB
testcase_20 AC 754 ms
46,516 KB
testcase_21 AC 771 ms
46,680 KB
testcase_22 AC 792 ms
46,484 KB
testcase_23 AC 785 ms
47,164 KB
testcase_24 AC 741 ms
41,392 KB
testcase_25 AC 753 ms
41,412 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require 'set'

N, M, X = gets.split.map(&:to_i)
AB = N.times.map { gets.split.map(&:to_i) }
K = gets.to_i
C = gets.split.map(&:to_i)

ab = AB.sort_by{|ab| -ab[0]}

used = Set.new
ans = []
ab.each do |n|
  if used.add?(n[1])
    ans << n[0] + X
  else
    ans << n[0]
  end
end

ans.sort_by!{|x| -x}

ans2 = [0]
now = 0
ans.each do |x|
  now += x
  ans2 << now
end

p K.times.sum{|k| ans2[C[k]]}
0