結果

問題 No.2453 Seat Allocation
ユーザー tassei903tassei903
提出日時 2023-09-01 22:55:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 585 ms / 2,000 ms
コード長 746 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 115,400 KB
最終ジャッジ日時 2024-06-25 09:30:35
合計ジャッジ時間 7,162 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,884 KB
testcase_01 AC 38 ms
52,480 KB
testcase_02 AC 38 ms
53,248 KB
testcase_03 AC 38 ms
53,088 KB
testcase_04 AC 39 ms
53,120 KB
testcase_05 AC 345 ms
114,964 KB
testcase_06 AC 149 ms
92,160 KB
testcase_07 AC 145 ms
93,144 KB
testcase_08 AC 109 ms
78,188 KB
testcase_09 AC 585 ms
114,892 KB
testcase_10 AC 562 ms
115,296 KB
testcase_11 AC 562 ms
115,400 KB
testcase_12 AC 218 ms
91,732 KB
testcase_13 AC 202 ms
91,248 KB
testcase_14 AC 128 ms
91,656 KB
testcase_15 AC 240 ms
91,708 KB
testcase_16 AC 315 ms
90,880 KB
testcase_17 AC 38 ms
52,864 KB
testcase_18 AC 411 ms
97,340 KB
testcase_19 AC 493 ms
107,364 KB
testcase_20 AC 226 ms
85,504 KB
testcase_21 AC 259 ms
87,496 KB
testcase_22 AC 357 ms
93,920 KB
testcase_23 AC 42 ms
52,864 KB
testcase_24 AC 45 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
n,m = na()
a = na()
b = na()
big  = 10 ** 20
def f(x, y):
    return -((x * big * 2 + y) // (y * 2) )

from heapq import *
hq = []
for i in range(n):
    heappush(hq, (f(a[i], b[0]), i))
c = [1] * n
ans = [-1] * m
for i in range(m):
    x, y = heappop(hq)
    #print(x)
    ans[i] = y + 1
    if c[y] < m:
        heappush(hq, (f(a[y], b[c[y]]), y))
        c[y] += 1
    
print(*ans,sep="\n")
0