結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-14 01:34:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 332 ms / 4,000 ms
コード長 819 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 81,992 KB
実行使用メモリ 93,092 KB
最終ジャッジ日時 2024-11-22 23:37:26
合計ジャッジ時間 11,425 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 260 ms
90,448 KB
testcase_01 AC 212 ms
89,980 KB
testcase_02 AC 151 ms
90,184 KB
testcase_03 AC 219 ms
89,892 KB
testcase_04 AC 220 ms
90,060 KB
testcase_05 AC 179 ms
89,872 KB
testcase_06 AC 332 ms
93,092 KB
testcase_07 AC 152 ms
90,112 KB
testcase_08 AC 297 ms
92,032 KB
testcase_09 AC 270 ms
92,436 KB
testcase_10 AC 262 ms
92,264 KB
testcase_11 AC 268 ms
92,452 KB
testcase_12 AC 212 ms
89,728 KB
testcase_13 AC 250 ms
92,032 KB
testcase_14 AC 169 ms
89,984 KB
testcase_15 AC 240 ms
91,520 KB
testcase_16 AC 279 ms
92,672 KB
testcase_17 AC 278 ms
92,544 KB
testcase_18 AC 280 ms
92,800 KB
testcase_19 AC 250 ms
92,160 KB
testcase_20 AC 164 ms
89,728 KB
testcase_21 AC 242 ms
91,264 KB
testcase_22 AC 265 ms
92,288 KB
testcase_23 AC 256 ms
92,288 KB
testcase_24 AC 239 ms
91,904 KB
testcase_25 AC 260 ms
92,672 KB
testcase_26 AC 253 ms
92,032 KB
testcase_27 AC 265 ms
92,712 KB
testcase_28 AC 239 ms
91,904 KB
testcase_29 AC 266 ms
92,576 KB
testcase_30 AC 43 ms
54,656 KB
testcase_31 AC 42 ms
54,144 KB
testcase_32 AC 239 ms
90,112 KB
testcase_33 AC 287 ms
92,160 KB
testcase_34 AC 260 ms
92,160 KB
testcase_35 AC 43 ms
54,912 KB
testcase_36 AC 43 ms
54,400 KB
testcase_37 AC 43 ms
54,528 KB
testcase_38 AC 44 ms
54,144 KB
testcase_39 AC 48 ms
56,576 KB
testcase_40 AC 47 ms
56,064 KB
testcase_41 AC 62 ms
69,248 KB
testcase_42 AC 71 ms
70,656 KB
testcase_43 AC 72 ms
71,936 KB
testcase_44 AC 67 ms
71,680 KB
testcase_45 AC 55 ms
63,360 KB
testcase_46 AC 99 ms
78,080 KB
testcase_47 AC 96 ms
78,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)
MAX = 10**5


def main():
    N, K = map(int, input().split())

    solve = [[] for _ in range(11)]
    for i in range(N):
        S, P, U = map(int, input().split())
        solve[S].append((U, P, i))

    selected = [0] * (MAX + 1)
    for team in solve[::-1]:
        if not team:
            continue
        memo = defaultdict(list)
        team.sort()
        for u, p, i in team:
            memo[selected[u]].append((p, i))
            selected[u] += 1

        keys = sorted(memo.keys())
        for key in keys:
            val = sorted(memo[key])
            for _, i in val:
                print(i)
                K -= 1
                if not K:
                    return
    return


main()
0