結果

問題 No.2453 Seat Allocation
ユーザー ikomaikoma
提出日時 2023-09-02 00:05:32
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 402 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,792 KB
実行使用メモリ 106,836 KB
最終ジャッジ日時 2024-06-11 17:53:28
合計ジャッジ時間 5,416 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,672 KB
testcase_01 AC 36 ms
53,132 KB
testcase_02 AC 34 ms
53,276 KB
testcase_03 AC 33 ms
52,956 KB
testcase_04 AC 36 ms
53,292 KB
testcase_05 AC 225 ms
106,836 KB
testcase_06 AC 111 ms
89,940 KB
testcase_07 AC 124 ms
100,908 KB
testcase_08 AC 106 ms
78,712 KB
testcase_09 AC 319 ms
106,180 KB
testcase_10 AC 320 ms
105,764 KB
testcase_11 AC 323 ms
105,780 KB
testcase_12 AC 173 ms
89,844 KB
testcase_13 AC 173 ms
89,896 KB
testcase_14 AC 95 ms
90,328 KB
testcase_15 AC 227 ms
89,948 KB
testcase_16 AC 211 ms
89,108 KB
testcase_17 AC 34 ms
53,620 KB
testcase_18 AC 246 ms
93,284 KB
testcase_19 AC 293 ms
96,808 KB
testcase_20 AC 173 ms
87,504 KB
testcase_21 AC 171 ms
86,508 KB
testcase_22 AC 233 ms
91,900 KB
testcase_23 WA -
testcase_24 AC 34 ms
53,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from heapq import *

N,M=map(int,input().split())
A=list(map(int,input().split()))
B=list(map(int,input().split()))
idxs = [1]*N
heap = [ (-a/B[0],i) for i,a in enumerate(A)]
heapify(heap)
while M:
    _,i = heappop(heap)
    print(i+1)
    M-=1
    j = idxs[i]
    idxs[i] = j+1
    if j<len(B):
        b = B[j]
        a = A[i]
        heappush(heap, (-a/b, i))
0