結果

問題 No.2453 Seat Allocation
ユーザー chineristACchineristAC
提出日時 2023-09-01 23:49:20
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 563 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 106,768 KB
最終ジャッジ日時 2024-06-11 17:53:19
合計ジャッジ時間 6,249 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
56,504 KB
testcase_01 AC 42 ms
55,992 KB
testcase_02 AC 44 ms
56,108 KB
testcase_03 AC 40 ms
56,436 KB
testcase_04 AC 40 ms
56,300 KB
testcase_05 AC 288 ms
102,432 KB
testcase_06 AC 146 ms
91,656 KB
testcase_07 AC 159 ms
91,356 KB
testcase_08 AC 128 ms
79,892 KB
testcase_09 AC 398 ms
106,768 KB
testcase_10 AC 387 ms
105,232 KB
testcase_11 AC 398 ms
105,620 KB
testcase_12 AC 189 ms
91,724 KB
testcase_13 AC 189 ms
91,528 KB
testcase_14 AC 128 ms
91,776 KB
testcase_15 AC 223 ms
91,860 KB
testcase_16 AC 233 ms
90,836 KB
testcase_17 AC 42 ms
57,128 KB
testcase_18 AC 283 ms
97,472 KB
testcase_19 AC 315 ms
102,140 KB
testcase_20 AC 180 ms
86,004 KB
testcase_21 AC 197 ms
86,912 KB
testcase_22 AC 256 ms
92,364 KB
testcase_23 WA -
testcase_24 AC 38 ms
56,224 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**18
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