結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 464 ms
56,968 KB
testcase_01 AC 452 ms
56,876 KB
testcase_02 AC 450 ms
56,788 KB
testcase_03 AC 450 ms
56,956 KB
testcase_04 AC 447 ms
56,844 KB
testcase_05 AC 454 ms
56,948 KB
testcase_06 AC 457 ms
56,860 KB
testcase_07 AC 451 ms
56,848 KB
testcase_08 AC 431 ms
56,872 KB
testcase_09 AC 445 ms
56,836 KB
testcase_10 AC 449 ms
56,228 KB
testcase_11 AC 456 ms
56,456 KB
testcase_12 AC 447 ms
56,484 KB
testcase_13 AC 442 ms
56,664 KB
testcase_14 AC 437 ms
56,892 KB
testcase_15 AC 426 ms
56,920 KB
testcase_16 AC 437 ms
56,836 KB
testcase_17 AC 452 ms
56,264 KB
testcase_18 AC 466 ms
56,568 KB
testcase_19 AC 448 ms
56,588 KB
testcase_20 AC 446 ms
56,512 KB
testcase_21 AC 438 ms
56,108 KB
testcase_22 AC 451 ms
56,400 KB
testcase_23 AC 447 ms
56,320 KB
testcase_24 AC 446 ms
56,188 KB
testcase_25 AC 443 ms
56,544 KB
testcase_26 AC 447 ms
56,668 KB
testcase_27 AC 475 ms
56,840 KB
testcase_28 AC 464 ms
56,236 KB
testcase_29 AC 461 ms
56,840 KB
testcase_30 AC 35 ms
18,588 KB
testcase_31 AC 34 ms
18,560 KB
testcase_32 AC 445 ms
54,884 KB
testcase_33 AC 442 ms
54,964 KB
testcase_34 AC 447 ms
56,908 KB
testcase_35 AC 35 ms
18,420 KB
testcase_36 AC 35 ms
18,640 KB
testcase_37 AC 33 ms
18,440 KB
testcase_38 AC 33 ms
18,436 KB
testcase_39 AC 40 ms
18,756 KB
testcase_40 AC 41 ms
18,932 KB
testcase_41 AC 69 ms
22,520 KB
testcase_42 AC 72 ms
22,468 KB
testcase_43 AC 71 ms
22,352 KB
testcase_44 AC 73 ms
22,552 KB
testcase_45 AC 41 ms
18,872 KB
testcase_46 AC 72 ms
22,156 KB
testcase_47 AC 80 ms
22,216 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