結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー roarisroaris
提出日時 2019-12-14 20:58:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 645 ms / 4,000 ms
コード長 580 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 106,112 KB
最終ジャッジ日時 2024-06-28 03:24:26
合計ジャッジ時間 24,074 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 593 ms
102,480 KB
testcase_01 AC 557 ms
100,676 KB
testcase_02 AC 487 ms
99,308 KB
testcase_03 AC 568 ms
101,024 KB
testcase_04 AC 574 ms
100,892 KB
testcase_05 AC 543 ms
100,732 KB
testcase_06 AC 633 ms
105,868 KB
testcase_07 AC 504 ms
98,696 KB
testcase_08 AC 529 ms
105,712 KB
testcase_09 AC 562 ms
105,816 KB
testcase_10 AC 561 ms
105,452 KB
testcase_11 AC 589 ms
105,900 KB
testcase_12 AC 563 ms
101,208 KB
testcase_13 AC 527 ms
106,112 KB
testcase_14 AC 538 ms
99,900 KB
testcase_15 AC 467 ms
100,140 KB
testcase_16 AC 598 ms
105,520 KB
testcase_17 AC 610 ms
105,372 KB
testcase_18 AC 614 ms
105,628 KB
testcase_19 AC 522 ms
105,708 KB
testcase_20 AC 537 ms
100,452 KB
testcase_21 AC 533 ms
105,556 KB
testcase_22 AC 606 ms
105,780 KB
testcase_23 AC 567 ms
105,700 KB
testcase_24 AC 516 ms
105,396 KB
testcase_25 AC 582 ms
105,520 KB
testcase_26 AC 539 ms
105,616 KB
testcase_27 AC 579 ms
105,828 KB
testcase_28 AC 516 ms
105,232 KB
testcase_29 AC 603 ms
105,760 KB
testcase_30 AC 40 ms
52,424 KB
testcase_31 AC 40 ms
53,624 KB
testcase_32 AC 610 ms
103,224 KB
testcase_33 AC 645 ms
106,080 KB
testcase_34 AC 545 ms
105,596 KB
testcase_35 AC 40 ms
53,240 KB
testcase_36 AC 39 ms
53,080 KB
testcase_37 AC 41 ms
54,388 KB
testcase_38 AC 41 ms
53,404 KB
testcase_39 AC 66 ms
69,028 KB
testcase_40 AC 64 ms
67,980 KB
testcase_41 AC 119 ms
78,192 KB
testcase_42 AC 122 ms
78,128 KB
testcase_43 AC 120 ms
77,840 KB
testcase_44 AC 119 ms
78,156 KB
testcase_45 AC 78 ms
74,296 KB
testcase_46 AC 157 ms
78,524 KB
testcase_47 AC 182 ms
79,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *

N, K = map(int, input().split())
SPU = [tuple(map(int, input().split()))+(i,) for i in range(N)]
SPU.sort(key=lambda k: (-k[0], k[1]))
SPU += [(-1, -1, -1, -1)]
pq = []
cnt = [0]*N
ans = []

for i in range(N):
    Si, Pi, Ui, idx = SPU[i]
    heappush(pq, (cnt[Ui], Pi, idx))
    cnt[Ui] += 1
    
    if SPU[i][0]!=SPU[i+1][0]:
        while pq:
            _, _, idx = heappop(pq)
            ans.append(idx)
            
            if len(ans)>=K:
                for ans_i in ans:
                    print(ans_i)
                
                exit()
0