結果

問題 No.2453 Seat Allocation
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-09-01 23:09:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 433 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 81,900 KB
実行使用メモリ 108,636 KB
最終ジャッジ日時 2024-06-11 05:15:24
合計ジャッジ時間 7,131 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,736 KB
testcase_01 AC 35 ms
52,096 KB
testcase_02 AC 35 ms
52,224 KB
testcase_03 AC 32 ms
52,224 KB
testcase_04 AC 34 ms
52,480 KB
testcase_05 AC 406 ms
108,616 KB
testcase_06 WA -
testcase_07 AC 151 ms
92,992 KB
testcase_08 AC 102 ms
77,952 KB
testcase_09 AC 553 ms
108,080 KB
testcase_10 AC 516 ms
108,344 KB
testcase_11 AC 532 ms
108,636 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 100 ms
90,752 KB
testcase_15 WA -
testcase_16 AC 184 ms
90,696 KB
testcase_17 AC 35 ms
52,480 KB
testcase_18 AC 384 ms
94,564 KB
testcase_19 AC 444 ms
102,012 KB
testcase_20 AC 220 ms
84,608 KB
testcase_21 AC 253 ms
86,236 KB
testcase_22 AC 336 ms
91,928 KB
testcase_23 WA -
testcase_24 AC 34 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop,heappush
n,m = map(int,input().split())
A = list(map(int,input().split()))
B = list(map(int,input().split()))


inf = 10**10

h = []
num = [0]*n

for i in range(n):
    heappush(h,[-inf*A[i]//B[0],i])

ans = []
for _ in range(m):
    x,ind = heappop(h)
    ans.append(ind+1)

    num[ind] += 1
    if num[ind] >= m:
        continue
    heappush(h,[-inf*A[ind]//B[num[ind]],ind])

for i in ans:
    print(i)
0