結果

問題 No.1708 Quality of Contest
ユーザー shimatshimat
提出日時 2021-10-26 20:03:49
言語 Ruby
(3.3.0)
結果
AC  
実行時間 702 ms / 2,000 ms
コード長 329 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 50,656 KB
最終ジャッジ日時 2024-10-05 21:48:06
合計ジャッジ時間 13,647 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
12,416 KB
testcase_01 AC 79 ms
12,160 KB
testcase_02 AC 81 ms
12,288 KB
testcase_03 AC 90 ms
12,544 KB
testcase_04 AC 90 ms
12,800 KB
testcase_05 AC 91 ms
12,672 KB
testcase_06 AC 90 ms
12,544 KB
testcase_07 AC 89 ms
12,672 KB
testcase_08 AC 82 ms
12,288 KB
testcase_09 AC 632 ms
50,656 KB
testcase_10 AC 613 ms
43,024 KB
testcase_11 AC 648 ms
45,884 KB
testcase_12 AC 646 ms
47,428 KB
testcase_13 AC 642 ms
45,388 KB
testcase_14 AC 657 ms
47,624 KB
testcase_15 AC 702 ms
48,680 KB
testcase_16 AC 677 ms
48,388 KB
testcase_17 AC 669 ms
47,372 KB
testcase_18 AC 646 ms
47,584 KB
testcase_19 AC 642 ms
47,988 KB
testcase_20 AC 680 ms
47,388 KB
testcase_21 AC 696 ms
47,964 KB
testcase_22 AC 673 ms
47,696 KB
testcase_23 AC 681 ms
48,512 KB
testcase_24 AC 637 ms
43,208 KB
testcase_25 AC 629 ms
43,048 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.map{ |n|
  n[0] + (used.add?(n[1]) ? X : 0)
}.sort_by{|x| -x}

now = 0
ans2 = [0] + ans.map{ |x|
  now += x
}

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