結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー roiti46roiti46
提出日時 2016-10-14 22:59:50
言語 Python2
(2.7.18)
結果
AC  
実行時間 917 ms / 4,000 ms
コード長 516 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 45,188 KB
最終ジャッジ日時 2024-05-02 00:17:08
合計ジャッジ時間 32,492 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 877 ms
45,188 KB
testcase_01 AC 856 ms
44,928 KB
testcase_02 AC 845 ms
44,788 KB
testcase_03 AC 872 ms
45,132 KB
testcase_04 AC 878 ms
44,992 KB
testcase_05 AC 874 ms
45,044 KB
testcase_06 AC 888 ms
45,000 KB
testcase_07 AC 917 ms
44,804 KB
testcase_08 AC 861 ms
44,872 KB
testcase_09 AC 863 ms
44,784 KB
testcase_10 AC 890 ms
41,624 KB
testcase_11 AC 903 ms
42,008 KB
testcase_12 AC 916 ms
42,132 KB
testcase_13 AC 859 ms
41,620 KB
testcase_14 AC 872 ms
42,012 KB
testcase_15 AC 811 ms
41,748 KB
testcase_16 AC 868 ms
41,936 KB
testcase_17 AC 887 ms
41,804 KB
testcase_18 AC 861 ms
42,136 KB
testcase_19 AC 839 ms
41,624 KB
testcase_20 AC 842 ms
41,880 KB
testcase_21 AC 833 ms
41,748 KB
testcase_22 AC 870 ms
41,880 KB
testcase_23 AC 835 ms
41,752 KB
testcase_24 AC 830 ms
41,748 KB
testcase_25 AC 854 ms
41,752 KB
testcase_26 AC 831 ms
41,624 KB
testcase_27 AC 837 ms
41,752 KB
testcase_28 AC 827 ms
41,624 KB
testcase_29 AC 900 ms
42,008 KB
testcase_30 AC 24 ms
8,788 KB
testcase_31 AC 26 ms
8,832 KB
testcase_32 AC 882 ms
42,808 KB
testcase_33 AC 873 ms
42,920 KB
testcase_34 AC 868 ms
44,832 KB
testcase_35 AC 26 ms
8,960 KB
testcase_36 AC 25 ms
8,916 KB
testcase_37 AC 26 ms
8,916 KB
testcase_38 AC 26 ms
8,792 KB
testcase_39 AC 33 ms
9,172 KB
testcase_40 AC 31 ms
9,216 KB
testcase_41 AC 89 ms
12,260 KB
testcase_42 AC 87 ms
12,132 KB
testcase_43 AC 81 ms
12,008 KB
testcase_44 AC 83 ms
12,132 KB
testcase_45 AC 33 ms
9,172 KB
testcase_46 AC 90 ms
12,264 KB
testcase_47 AC 89 ms
12,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-
import sys,copy,math,heapq,itertools as it,fractions,re,bisect,collections as coll
import heapq

N, K = map(int, raw_input().split())
SPU = [map(int, raw_input().split()) for i in xrange(N)]
SPU = [[S, P, U, i] for i, (S, P, U) in enumerate(SPU)]
SPU.sort(key = lambda x: x[1])
SPU.sort(key = lambda x: -x[0])

C = [0]*100005
ans = []
for S, P, U, i in SPU:
    ans.append([10**18*(S + 1) - C[U]*10**8 + 10**7 - P, i])
    C[U] += 1
ans.sort(reverse = True)

for _, i in ans[:K]:
    print i
0