結果

問題 No.2453 Seat Allocation
ユーザー timitimi
提出日時 2023-09-01 22:33:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 434 bytes
コンパイル時間 440 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 40,808 KB
最終ジャッジ日時 2024-06-11 04:30:32
合計ジャッジ時間 11,450 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
11,136 KB
testcase_01 AC 33 ms
11,136 KB
testcase_02 AC 33 ms
11,136 KB
testcase_03 AC 33 ms
11,264 KB
testcase_04 WA -
testcase_05 AC 798 ms
40,808 KB
testcase_06 AC 374 ms
21,548 KB
testcase_07 AC 273 ms
33,580 KB
testcase_08 AC 108 ms
13,952 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 328 ms
21,696 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 664 ms
25,984 KB
testcase_19 AC 806 ms
33,644 KB
testcase_20 AC 325 ms
21,176 KB
testcase_21 AC 398 ms
18,672 KB
testcase_22 AC 585 ms
21,756 KB
testcase_23 WA -
testcase_24 AC 33 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int, input().split())
A=list(map(int, input().split()))
B=list(map(int, input().split()))
from decimal import Decimal
b=B[0]
import heapq
C=[];e=10**5
for i in range(N):
  x=-(e*A[i]-i)
  c=Decimal(x)/Decimal(b)
  heapq.heappush(C,(c,i,0))
#print(C)  
for _ in range(M):
  c,i,r=heapq.heappop(C)
  print(i+1)
  if r+1==M:
    continue 
  x=-(e*A[i]-i)
  cc=Decimal(x)/Decimal(B[r+1])
  heapq.heappush(C,(cc,i,r+1))
  #print(C)
0