結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー tubo28tubo28
提出日時 2016-10-15 00:45:29
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,449 ms / 4,000 ms
コード長 275 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 33,664 KB
最終ジャッジ日時 2024-11-22 09:43:57
合計ジャッジ時間 50,478 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,363 ms
32,640 KB
testcase_01 AC 1,356 ms
32,896 KB
testcase_02 AC 1,334 ms
31,488 KB
testcase_03 AC 1,382 ms
31,744 KB
testcase_04 AC 1,358 ms
31,872 KB
testcase_05 AC 1,358 ms
32,256 KB
testcase_06 AC 1,449 ms
33,664 KB
testcase_07 AC 1,333 ms
32,640 KB
testcase_08 AC 1,394 ms
32,640 KB
testcase_09 AC 1,421 ms
32,128 KB
testcase_10 AC 1,356 ms
31,872 KB
testcase_11 AC 1,364 ms
31,744 KB
testcase_12 AC 1,354 ms
32,000 KB
testcase_13 AC 1,348 ms
31,744 KB
testcase_14 AC 1,308 ms
31,744 KB
testcase_15 AC 1,269 ms
31,872 KB
testcase_16 AC 1,341 ms
31,744 KB
testcase_17 AC 1,388 ms
31,744 KB
testcase_18 AC 1,379 ms
32,000 KB
testcase_19 AC 1,355 ms
31,872 KB
testcase_20 AC 1,356 ms
31,744 KB
testcase_21 AC 1,365 ms
31,744 KB
testcase_22 AC 1,370 ms
32,000 KB
testcase_23 AC 1,368 ms
31,744 KB
testcase_24 AC 1,365 ms
31,744 KB
testcase_25 AC 1,373 ms
32,000 KB
testcase_26 AC 1,311 ms
31,872 KB
testcase_27 AC 1,343 ms
31,872 KB
testcase_28 AC 1,348 ms
31,872 KB
testcase_29 AC 1,325 ms
31,744 KB
testcase_30 AC 90 ms
12,032 KB
testcase_31 AC 89 ms
12,160 KB
testcase_32 AC 1,373 ms
31,744 KB
testcase_33 AC 1,408 ms
31,744 KB
testcase_34 AC 1,413 ms
32,000 KB
testcase_35 AC 88 ms
12,032 KB
testcase_36 AC 89 ms
12,032 KB
testcase_37 AC 88 ms
12,288 KB
testcase_38 AC 90 ms
12,032 KB
testcase_39 AC 99 ms
12,416 KB
testcase_40 AC 98 ms
12,544 KB
testcase_41 AC 190 ms
13,824 KB
testcase_42 AC 189 ms
13,824 KB
testcase_43 AC 181 ms
13,952 KB
testcase_44 AC 174 ms
13,696 KB
testcase_45 AC 98 ms
12,544 KB
testcase_46 AC 199 ms
13,696 KB
testcase_47 AC 205 ms
13,824 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n,k = gets.split.map(&:to_i)
s,p,u = readlines.map { |l| l.split.map(&:to_i) }.transpose

r = Array.new(n)
cnt = {}
cnt.default = 0
puts (0...n).sort_by { |i| [-s[i],p[i]] }.each { |i|
    r[i] = cnt[u[i]]
    cnt[u[i]] += 1
}.sort_by { |i|
    [-s[i], r[i], p[i]]
}.first(k)
0