結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 896 ms
45,060 KB
testcase_01 AC 857 ms
44,928 KB
testcase_02 AC 859 ms
44,912 KB
testcase_03 AC 886 ms
45,004 KB
testcase_04 AC 875 ms
44,988 KB
testcase_05 AC 855 ms
44,784 KB
testcase_06 AC 836 ms
45,000 KB
testcase_07 AC 851 ms
44,932 KB
testcase_08 AC 828 ms
44,876 KB
testcase_09 AC 859 ms
44,656 KB
testcase_10 AC 843 ms
41,748 KB
testcase_11 AC 841 ms
41,880 KB
testcase_12 AC 850 ms
42,132 KB
testcase_13 AC 820 ms
41,624 KB
testcase_14 AC 849 ms
42,004 KB
testcase_15 AC 798 ms
41,620 KB
testcase_16 AC 845 ms
42,004 KB
testcase_17 AC 856 ms
42,132 KB
testcase_18 AC 857 ms
42,132 KB
testcase_19 AC 825 ms
41,668 KB
testcase_20 AC 847 ms
41,880 KB
testcase_21 AC 845 ms
41,624 KB
testcase_22 AC 856 ms
42,008 KB
testcase_23 AC 843 ms
41,624 KB
testcase_24 AC 842 ms
41,624 KB
testcase_25 AC 858 ms
41,624 KB
testcase_26 AC 819 ms
41,748 KB
testcase_27 AC 855 ms
41,620 KB
testcase_28 AC 837 ms
41,748 KB
testcase_29 AC 842 ms
41,876 KB
testcase_30 AC 25 ms
8,916 KB
testcase_31 AC 24 ms
8,832 KB
testcase_32 AC 892 ms
42,808 KB
testcase_33 AC 893 ms
42,916 KB
testcase_34 AC 847 ms
44,700 KB
testcase_35 AC 24 ms
8,916 KB
testcase_36 AC 25 ms
8,832 KB
testcase_37 AC 25 ms
8,788 KB
testcase_38 AC 25 ms
8,788 KB
testcase_39 AC 31 ms
9,172 KB
testcase_40 AC 32 ms
9,044 KB
testcase_41 AC 86 ms
12,132 KB
testcase_42 AC 83 ms
12,004 KB
testcase_43 AC 81 ms
12,132 KB
testcase_44 AC 83 ms
12,136 KB
testcase_45 AC 32 ms
9,172 KB
testcase_46 AC 90 ms
12,356 KB
testcase_47 AC 89 ms
12,136 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