結果

問題 No.2453 Seat Allocation
ユーザー mymelochanmymelochan
提出日時 2023-09-02 17:26:49
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 777 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 109,048 KB
最終ジャッジ日時 2024-06-11 23:56:33
合計ジャッジ時間 6,535 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,272 KB
testcase_01 AC 44 ms
54,528 KB
testcase_02 AC 42 ms
55,392 KB
testcase_03 RE -
testcase_04 AC 45 ms
55,708 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 RE -
testcase_08 AC 99 ms
77,836 KB
testcase_09 WA -
testcase_10 AC 328 ms
103,296 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 43 ms
54,656 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 168 ms
84,004 KB
testcase_21 AC 187 ms
87,240 KB
testcase_22 WA -
testcase_23 RE -
testcase_24 AC 43 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**9
#############################################################

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)
    heappush(hq,(-A[idx]/B[cnt[idx]]*L+idx,idx))
    cnt[idx] += 1


for a in ans:
    print(a)
0