結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー pluto77pluto77
提出日時 2016-10-17 12:35:00
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 517 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 55,820 KB
最終ジャッジ日時 2024-11-22 13:01:56
合計ジャッジ時間 203,581 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 12 ms
11,392 KB
testcase_31 AC 11 ms
49,620 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 AC 11 ms
13,772 KB
testcase_36 AC 11 ms
16,324 KB
testcase_37 AC 14 ms
11,520 KB
testcase_38 AC 14 ms
16,752 KB
testcase_39 AC 231 ms
11,776 KB
testcase_40 AC 219 ms
17,008 KB
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 AC 276 ms
6,656 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