結果

問題 No.2453 Seat Allocation
ユーザー chineristACchineristAC
提出日時 2023-09-27 14:07:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 563 bytes
コンパイル時間 762 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 106,140 KB
最終ジャッジ日時 2024-07-20 08:10:03
合計ジャッジ時間 8,344 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
55,552 KB
testcase_01 AC 50 ms
55,424 KB
testcase_02 AC 50 ms
55,424 KB
testcase_03 AC 50 ms
55,424 KB
testcase_04 AC 50 ms
55,680 KB
testcase_05 AC 358 ms
102,336 KB
testcase_06 AC 188 ms
91,648 KB
testcase_07 AC 187 ms
91,264 KB
testcase_08 AC 150 ms
79,488 KB
testcase_09 AC 487 ms
106,032 KB
testcase_10 AC 465 ms
105,788 KB
testcase_11 AC 466 ms
106,140 KB
testcase_12 AC 234 ms
91,520 KB
testcase_13 AC 243 ms
91,392 KB
testcase_14 AC 165 ms
91,648 KB
testcase_15 AC 300 ms
91,392 KB
testcase_16 AC 280 ms
90,496 KB
testcase_17 AC 52 ms
56,064 KB
testcase_18 AC 371 ms
97,132 KB
testcase_19 AC 418 ms
101,904 KB
testcase_20 AC 236 ms
85,632 KB
testcase_21 AC 253 ms
86,528 KB
testcase_22 AC 336 ms
92,160 KB
testcase_23 WA -
testcase_24 AC 51 ms
55,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random
from itertools import permutations
from collections import deque
from heapq import *

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

N,M = mi()
A = li()
B = li()

select = []
idx = [0 for i in range(N)]
t = 10**20
pq = [(-A[i]*t/B[0],i) for i in range(N)]
heapify(pq)
while len(select) < M:
    val,i = heappop(pq)
    select.append((i,idx[i]))
    idx[i] += 1
    if idx[i] < M:
        val = -A[i]*t/B[idx[i]]
        heappush(pq,(val,i))


for i,j in select:
    print(i+1)






0