結果

問題 No.2453 Seat Allocation
ユーザー sotanishysotanishy
提出日時 2023-09-01 21:46:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,435 ms / 2,000 ms
コード長 485 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 129,400 KB
最終ジャッジ日時 2024-06-25 09:23:40
合計ジャッジ時間 16,604 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
88,584 KB
testcase_01 AC 141 ms
88,492 KB
testcase_02 AC 135 ms
88,444 KB
testcase_03 AC 134 ms
88,576 KB
testcase_04 AC 138 ms
88,576 KB
testcase_05 AC 773 ms
128,784 KB
testcase_06 AC 434 ms
102,556 KB
testcase_07 AC 347 ms
110,564 KB
testcase_08 AC 365 ms
93,028 KB
testcase_09 AC 1,435 ms
129,004 KB
testcase_10 AC 1,343 ms
129,392 KB
testcase_11 AC 1,357 ms
129,400 KB
testcase_12 AC 600 ms
102,968 KB
testcase_13 AC 593 ms
102,836 KB
testcase_14 AC 277 ms
102,672 KB
testcase_15 AC 711 ms
102,784 KB
testcase_16 AC 673 ms
101,968 KB
testcase_17 AC 139 ms
88,320 KB
testcase_18 AC 1,062 ms
116,268 KB
testcase_19 AC 1,174 ms
122,704 KB
testcase_20 AC 606 ms
101,632 KB
testcase_21 AC 735 ms
104,228 KB
testcase_22 AC 978 ms
112,936 KB
testcase_23 AC 133 ms
88,548 KB
testcase_24 AC 133 ms
88,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from fractions import Fraction
from heapq import heappush, heappop
import sys
input = sys.stdin.readline

N, M = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
heap = []
cnt = [0]*N
for i in range(N):
    heappush(heap, (-Fraction(A[i], B[0]), i))
ans = []
for _ in range(M):
    v, i = heappop(heap)
    ans.append(i+1)
    cnt[i] += 1
    if cnt[i] < M:
        heappush(heap, (-Fraction(A[i], B[cnt[i]]), i))
print(*ans, sep="\n")
0