結果

問題 No.2453 Seat Allocation
ユーザー mymelochanmymelochan
提出日時 2023-09-02 17:30:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 814 bytes
コンパイル時間 782 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 108,800 KB
最終ジャッジ日時 2024-06-11 23:59:25
合計ジャッジ時間 6,554 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,400 KB
testcase_01 AC 46 ms
54,656 KB
testcase_02 AC 49 ms
54,144 KB
testcase_03 AC 46 ms
54,528 KB
testcase_04 AC 47 ms
54,400 KB
testcase_05 AC 245 ms
108,800 KB
testcase_06 AC 130 ms
90,512 KB
testcase_07 AC 128 ms
91,776 KB
testcase_08 AC 106 ms
77,800 KB
testcase_09 AC 388 ms
102,056 KB
testcase_10 AC 368 ms
103,564 KB
testcase_11 AC 381 ms
103,436 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 119 ms
91,136 KB
testcase_15 AC 183 ms
90,524 KB
testcase_16 AC 170 ms
90,128 KB
testcase_17 AC 47 ms
55,040 KB
testcase_18 AC 274 ms
93,804 KB
testcase_19 AC 316 ms
100,224 KB
testcase_20 AC 182 ms
84,608 KB
testcase_21 AC 198 ms
86,784 KB
testcase_22 AC 244 ms
91,636 KB
testcase_23 WA -
testcase_24 AC 46 ms
54,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#############################################################

import sys
sys.setrecursionlimit(10**7)

from heapq import heappop,heappush
from collections import deque,defaultdict,Counter
from bisect import bisect_left, bisect_right
from itertools import product,combinations,permutations

ipt = sys.stdin.readline

def iin():
    return int(ipt())
def lmin():
    return list(map(int,ipt().split()))

MOD = 998244353
L = 10**15
#############################################################

N,M = lmin()
A = lmin()
B = lmin()

cnt = [1]*N
hq = []
for i,a in enumerate(A):
    heappush(hq,(-a/B[0]*L+i,i))

ans = []
while len(ans) < M:
    _,idx = heappop(hq)
    ans.append(idx+1)
    if cnt[idx] >= M:
        break
    heappush(hq,(-A[idx]/B[cnt[idx]]*L+idx,idx))
    cnt[idx] += 1


for a in ans:
    print(a)
0