結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー chocoruskchocorusk
提出日時 2020-09-27 00:37:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,913 ms / 4,000 ms
コード長 799 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 278,608 KB
最終ジャッジ日時 2024-06-30 01:36:02
合計ジャッジ時間 67,170 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,884 ms
278,608 KB
testcase_01 AC 1,905 ms
275,160 KB
testcase_02 AC 1,570 ms
267,592 KB
testcase_03 AC 1,305 ms
241,664 KB
testcase_04 AC 1,309 ms
241,216 KB
testcase_05 AC 1,632 ms
274,360 KB
testcase_06 AC 1,913 ms
268,492 KB
testcase_07 AC 1,860 ms
273,488 KB
testcase_08 AC 1,687 ms
273,888 KB
testcase_09 AC 1,285 ms
232,756 KB
testcase_10 AC 1,455 ms
218,380 KB
testcase_11 AC 1,501 ms
219,928 KB
testcase_12 AC 1,508 ms
219,556 KB
testcase_13 AC 1,488 ms
224,528 KB
testcase_14 AC 1,576 ms
222,840 KB
testcase_15 AC 1,810 ms
231,264 KB
testcase_16 AC 1,638 ms
219,008 KB
testcase_17 AC 1,471 ms
216,876 KB
testcase_18 AC 1,512 ms
223,756 KB
testcase_19 AC 1,529 ms
223,636 KB
testcase_20 AC 1,556 ms
221,220 KB
testcase_21 AC 1,474 ms
220,584 KB
testcase_22 AC 1,539 ms
221,700 KB
testcase_23 AC 1,487 ms
225,180 KB
testcase_24 AC 1,487 ms
216,996 KB
testcase_25 AC 1,497 ms
218,400 KB
testcase_26 AC 1,662 ms
223,200 KB
testcase_27 AC 1,638 ms
221,416 KB
testcase_28 AC 1,485 ms
217,252 KB
testcase_29 AC 1,657 ms
221,016 KB
testcase_30 AC 705 ms
194,824 KB
testcase_31 AC 713 ms
195,080 KB
testcase_32 AC 1,452 ms
222,580 KB
testcase_33 AC 1,373 ms
225,164 KB
testcase_34 AC 1,338 ms
240,712 KB
testcase_35 AC 678 ms
195,336 KB
testcase_36 AC 692 ms
195,072 KB
testcase_37 AC 706 ms
195,972 KB
testcase_38 AC 696 ms
195,456 KB
testcase_39 AC 714 ms
195,012 KB
testcase_40 AC 727 ms
195,608 KB
testcase_41 AC 805 ms
201,652 KB
testcase_42 AC 824 ms
199,540 KB
testcase_43 AC 832 ms
202,160 KB
testcase_44 AC 801 ms
197,400 KB
testcase_45 AC 738 ms
194,748 KB
testcase_46 AC 789 ms
200,152 KB
testcase_47 AC 795 ms
201,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read=sys.stdin.buffer.read
readline=sys.stdin.buffer.readline
readlines=sys.stdin.buffer.readlines

n, k=map(int, readline().split())
spu=list(map(int, read().split()))
s=spu[::3]
p=spu[1::3]
u=spu[2::3]
ans=[]
v0=[[] for _ in range(100001)]
for i in range(n):
    v0[u[i]].append(i)
v0.sort(key=lambda w: -len(w))
import copy
def solve(t):
    global ans
    v=copy.deepcopy(v0)
    for w in v:
        w.sort(key=lambda i: s[i]*(10**7)-p[i])
    while True:
        if not v[0]:
            break
        tops=[]
        for w in v:
            if not w:
                break
            i=w.pop()
            if s[i]==t:
                tops.append(i)
        tops.sort(key=lambda i: p[i])
        ans+=tops
for i in range(10, -1, -1):
    solve(i)
print('\n'.join(map(str, ans[:k])))
0