結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー rpy3cpprpy3cpp
提出日時 2016-10-21 13:13:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 637 ms / 4,000 ms
コード長 1,259 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 41,016 KB
最終ジャッジ日時 2024-11-23 16:45:08
合計ジャッジ時間 18,961 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 605 ms
40,836 KB
testcase_01 AC 553 ms
40,496 KB
testcase_02 AC 479 ms
39,012 KB
testcase_03 AC 526 ms
37,272 KB
testcase_04 AC 536 ms
36,640 KB
testcase_05 AC 489 ms
39,632 KB
testcase_06 AC 637 ms
41,016 KB
testcase_07 AC 512 ms
40,212 KB
testcase_08 AC 568 ms
37,988 KB
testcase_09 AC 488 ms
28,544 KB
testcase_10 AC 433 ms
26,624 KB
testcase_11 AC 450 ms
26,624 KB
testcase_12 AC 427 ms
25,984 KB
testcase_13 AC 448 ms
26,496 KB
testcase_14 AC 389 ms
25,984 KB
testcase_15 AC 402 ms
26,112 KB
testcase_16 AC 456 ms
26,624 KB
testcase_17 AC 458 ms
26,752 KB
testcase_18 AC 460 ms
26,624 KB
testcase_19 AC 428 ms
26,496 KB
testcase_20 AC 398 ms
25,600 KB
testcase_21 AC 432 ms
26,496 KB
testcase_22 AC 461 ms
26,752 KB
testcase_23 AC 440 ms
26,624 KB
testcase_24 AC 418 ms
26,368 KB
testcase_25 AC 448 ms
26,752 KB
testcase_26 AC 419 ms
26,240 KB
testcase_27 AC 435 ms
26,368 KB
testcase_28 AC 432 ms
26,496 KB
testcase_29 AC 448 ms
26,624 KB
testcase_30 AC 30 ms
11,648 KB
testcase_31 AC 30 ms
11,648 KB
testcase_32 AC 455 ms
26,880 KB
testcase_33 AC 467 ms
26,496 KB
testcase_34 AC 528 ms
30,680 KB
testcase_35 AC 31 ms
11,520 KB
testcase_36 AC 28 ms
11,520 KB
testcase_37 AC 31 ms
11,520 KB
testcase_38 AC 31 ms
11,520 KB
testcase_39 AC 34 ms
11,648 KB
testcase_40 AC 33 ms
11,648 KB
testcase_41 AC 62 ms
12,928 KB
testcase_42 AC 66 ms
13,056 KB
testcase_43 AC 68 ms
12,928 KB
testcase_44 AC 64 ms
12,928 KB
testcase_45 AC 36 ms
11,648 KB
testcase_46 AC 84 ms
13,184 KB
testcase_47 AC 79 ms
13,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
import heapq

def read_data():
    N, K = map(int, input().split())
    db = [collections.defaultdict(list) for _ in range(11)]
    for teamID in range(N):
        s, p, u = map(int, input().split())
        db[s][u].append((-p, teamID))
    return N, K, db

def solve(N, K, db):
    ans = []
    counter = [0] * (10**5 + 1)
    for dbs in db[::-1]:
        if not dbs:
            continue
        result = solve_core(dbs, counter)
        ans.extend(result)
        if len(ans) >= K:
            return ans[:K]

def solve_core(dbs, counter):
    ans = []
    que = []
    for univID, lst in dbs.items():
        lst.sort()
        p = -lst[-1][0]
        teamID = lst[-1][1]
        que.append((counter[univID], p, teamID, univID))
        del lst[-1]
    heapq.heapify(que)
    while que:
        counts, p, teamID, univID = que[0]
        ans.append(teamID)
        lst = dbs[univID]
        counter[univID] += 1
        if lst:
            p = -lst[-1][0]
            teamID = lst[-1][1]
            heapq.heapreplace(que, (counts + 1, p, teamID, univID))
            del dbs[univID][-1]
        else:
            heapq.heappop(que)
    return ans

N, K, db = read_data()
ans = solve(N, K, db)
for univ_key in ans:
    print(univ_key)
0