結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー はむ吉🐹はむ吉🐹
提出日時 2016-10-15 15:41:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 931 ms / 4,000 ms
コード長 847 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 59,276 KB
最終ジャッジ日時 2024-11-22 11:33:02
合計ジャッジ時間 29,377 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 801 ms
58,640 KB
testcase_01 AC 844 ms
53,816 KB
testcase_02 AC 629 ms
45,996 KB
testcase_03 AC 841 ms
48,408 KB
testcase_04 AC 850 ms
48,148 KB
testcase_05 AC 753 ms
48,304 KB
testcase_06 AC 833 ms
59,276 KB
testcase_07 AC 680 ms
49,752 KB
testcase_08 AC 636 ms
46,948 KB
testcase_09 AC 737 ms
45,212 KB
testcase_10 AC 848 ms
46,004 KB
testcase_11 AC 836 ms
51,948 KB
testcase_12 AC 897 ms
47,624 KB
testcase_13 AC 658 ms
41,856 KB
testcase_14 AC 784 ms
44,800 KB
testcase_15 AC 614 ms
42,248 KB
testcase_16 AC 856 ms
52,368 KB
testcase_17 AC 848 ms
51,752 KB
testcase_18 AC 868 ms
51,920 KB
testcase_19 AC 656 ms
41,984 KB
testcase_20 AC 726 ms
43,520 KB
testcase_21 AC 691 ms
42,624 KB
testcase_22 AC 931 ms
47,932 KB
testcase_23 AC 808 ms
45,012 KB
testcase_24 AC 636 ms
41,344 KB
testcase_25 AC 890 ms
46,876 KB
testcase_26 AC 747 ms
43,904 KB
testcase_27 AC 892 ms
47,296 KB
testcase_28 AC 627 ms
41,216 KB
testcase_29 AC 841 ms
52,696 KB
testcase_30 AC 31 ms
10,880 KB
testcase_31 AC 30 ms
10,880 KB
testcase_32 AC 766 ms
50,140 KB
testcase_33 AC 780 ms
50,304 KB
testcase_34 AC 660 ms
44,356 KB
testcase_35 AC 32 ms
10,880 KB
testcase_36 AC 31 ms
10,880 KB
testcase_37 AC 32 ms
10,880 KB
testcase_38 AC 32 ms
10,880 KB
testcase_39 AC 37 ms
11,136 KB
testcase_40 AC 38 ms
11,136 KB
testcase_41 AC 86 ms
13,952 KB
testcase_42 AC 86 ms
13,952 KB
testcase_43 AC 90 ms
14,464 KB
testcase_44 AC 88 ms
14,464 KB
testcase_45 AC 38 ms
11,264 KB
testcase_46 AC 92 ms
14,848 KB
testcase_47 AC 94 ms
14,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

import collections
import heapq


def team_key(team):
    return (-team[0], team[1], team[2], team[3])


def main():
    n, k = map(int, input().split())
    data = [tuple(map(int, input().split())) for _ in range(n)]
    univ = collections.defaultdict(list)
    for i in range(n):
        u = data[i][2]
        univ[u].append(i)
    local_ranks = [-1 for _ in range(n)]
    for v in univ.values():
        v.sort(key=lambda i: (-data[i][0], data[i][1]))
        for r, i in enumerate(v):
            local_ranks[i] = r
    ts = [(data[i][0], local_ranks[i], data[i][1], i) for i in range(n)]
    if k < n // 3:
        print(*(t[-1] for t in heapq.nsmallest(k, ts, key=team_key)), sep="\n")
    else:
        ts.sort(key=team_key)
        print(*(t[-1] for t in ts[:k]), sep="\n")


if __name__ == '__main__':
    main()
0