結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー maspymaspy
提出日時 2020-03-18 22:16:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 644 ms / 4,000 ms
コード長 679 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 56,932 KB
最終ジャッジ日時 2024-12-14 02:35:21
合計ジャッジ時間 25,839 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 609 ms
56,692 KB
testcase_01 AC 604 ms
56,720 KB
testcase_02 AC 586 ms
56,664 KB
testcase_03 AC 606 ms
56,544 KB
testcase_04 AC 612 ms
56,768 KB
testcase_05 AC 603 ms
56,712 KB
testcase_06 AC 638 ms
56,932 KB
testcase_07 AC 616 ms
56,740 KB
testcase_08 AC 610 ms
56,716 KB
testcase_09 AC 603 ms
56,616 KB
testcase_10 AC 609 ms
56,240 KB
testcase_11 AC 618 ms
56,300 KB
testcase_12 AC 613 ms
56,124 KB
testcase_13 AC 601 ms
56,432 KB
testcase_14 AC 609 ms
56,652 KB
testcase_15 AC 603 ms
56,760 KB
testcase_16 AC 627 ms
56,684 KB
testcase_17 AC 621 ms
56,168 KB
testcase_18 AC 616 ms
56,556 KB
testcase_19 AC 594 ms
56,424 KB
testcase_20 AC 596 ms
56,108 KB
testcase_21 AC 602 ms
56,040 KB
testcase_22 AC 608 ms
56,168 KB
testcase_23 AC 612 ms
56,172 KB
testcase_24 AC 627 ms
55,912 KB
testcase_25 AC 644 ms
56,340 KB
testcase_26 AC 599 ms
56,828 KB
testcase_27 AC 635 ms
56,804 KB
testcase_28 AC 594 ms
56,172 KB
testcase_29 AC 615 ms
56,680 KB
testcase_30 AC 42 ms
18,304 KB
testcase_31 AC 43 ms
18,432 KB
testcase_32 AC 596 ms
54,968 KB
testcase_33 AC 599 ms
54,928 KB
testcase_34 AC 597 ms
56,688 KB
testcase_35 AC 42 ms
18,304 KB
testcase_36 AC 43 ms
18,424 KB
testcase_37 AC 42 ms
18,304 KB
testcase_38 AC 42 ms
18,304 KB
testcase_39 AC 50 ms
18,868 KB
testcase_40 AC 49 ms
18,816 KB
testcase_41 AC 86 ms
22,372 KB
testcase_42 AC 86 ms
22,316 KB
testcase_43 AC 87 ms
22,312 KB
testcase_44 AC 87 ms
22,484 KB
testcase_45 AC 49 ms
18,944 KB
testcase_46 AC 87 ms
22,244 KB
testcase_47 AC 87 ms
21,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
from operator import itemgetter

N, K = map(int, readline().split())
m = map(int, read().split())
S, P, U = zip(*zip(m, m, m))

SP = [-(s << 20) + p for s, p in zip(S, P)]
rank_1, _ = zip(*sorted(enumerate(SP), key=itemgetter(1)))
univ_cnt = [0] * (10 ** 6 + 10)
rank_in_univ = [0] * N
for i in rank_1:
    rank_in_univ[i] = univ_cnt[U[i]]
    univ_cnt[U[i]] += 1

key = (-(s << 40) + (r << 20) + p for s, r, p in zip(S, rank_in_univ, P))
answer, _ = zip(*sorted(enumerate(key), key=itemgetter(1)))
print('\n'.join(map(str, answer[:K])))
0