結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
11,136 KB
testcase_01 AC 28 ms
11,264 KB
testcase_02 AC 29 ms
11,136 KB
testcase_03 AC 29 ms
11,264 KB
testcase_04 AC 27 ms
11,136 KB
testcase_05 AC 700 ms
40,808 KB
testcase_06 AC 382 ms
21,676 KB
testcase_07 AC 283 ms
33,708 KB
testcase_08 AC 99 ms
13,952 KB
testcase_09 AC 902 ms
40,488 KB
testcase_10 AC 919 ms
40,624 KB
testcase_11 AC 920 ms
40,624 KB
testcase_12 AC 343 ms
21,836 KB
testcase_13 AC 382 ms
21,548 KB
testcase_14 AC 318 ms
21,712 KB
testcase_15 AC 418 ms
21,560 KB
testcase_16 WA -
testcase_17 AC 31 ms
11,136 KB
testcase_18 AC 583 ms
25,996 KB
testcase_19 AC 741 ms
33,656 KB
testcase_20 AC 300 ms
21,304 KB
testcase_21 AC 361 ms
18,736 KB
testcase_22 AC 556 ms
21,752 KB
testcase_23 AC 28 ms
11,136 KB
testcase_24 AC 29 ms
11,264 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**30
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