結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー pluto77pluto77
提出日時 2016-10-17 12:35:43
言語 PyPy2
(7.3.15)
結果
TLE  
実行時間 -
コード長 517 bytes
コンパイル時間 1,163 ms
コンパイル使用メモリ 76,672 KB
実行使用メモリ 304,244 KB
最終ジャッジ日時 2024-11-22 13:05:46
合計ジャッジ時間 205,356 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 86 ms
80,768 KB
testcase_31 AC 86 ms
80,896 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 AC 88 ms
80,768 KB
testcase_36 AC 87 ms
80,512 KB
testcase_37 AC 96 ms
83,072 KB
testcase_38 AC 96 ms
82,816 KB
testcase_39 AC 247 ms
84,480 KB
testcase_40 AC 217 ms
84,224 KB
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 AC 317 ms
78,720 KB
testcase_46 TLE -
testcase_47 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki_433

n,k=map(int,raw_input().split())
s=[[0 for i in xrange(5)] for j in xrange(n)]
for i in xrange(n):
 s[i][0],s[i][1],s[i][2]=map(int,raw_input().split())
 s[i][3]=0
 s[i][4]=i
t=sorted(s,key=lambda x:(x[0],-x[3],-x[1]),reverse=True)
u_cnt={}
for i in xrange(n):
 u_cnt[t[i][3]]=0
res=[]
while len(t)>0:
 res.append(t[0][4])
 for i in xrange(len(t)):
  if t[i][2]==t[0][2]:
   t[i][3]+=1
 t=t[1:]
 t=sorted(t,key=lambda x:(x[0],-x[3],-x[1]),reverse=True)
res=res[:k]
for i in xrange(len(res)):
 print res[i]
0