結果
| 問題 | No.2453 Seat Allocation |
| コンテスト | |
| ユーザー |
norioc
|
| 提出日時 | 2023-09-06 01:45:04 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 1,973 ms / 2,000 ms |
| コード長 | 528 bytes |
| 記録 | |
| コンパイル時間 | 219 ms |
| コンパイル使用メモリ | 85,208 KB |
| 実行使用メモリ | 143,532 KB |
| 最終ジャッジ日時 | 2026-03-09 04:29:35 |
| 合計ジャッジ時間 | 18,435 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 23 |
ソースコード
from heapq import heappush, heappop
from fractions import Fraction
N, M = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
B.sort()
q = [] # (score, a-index, b-index)
for i, a in enumerate(A):
heappush(q, (-Fraction(a, B[0]), i, 0))
ans = []
for _ in range(M):
_, a_index, b_index = heappop(q)
ans.append(a_index + 1)
if b_index+1 < M:
frac = -Fraction(A[a_index], B[b_index+1])
heappush(q, (frac, a_index, b_index+1))
print(*ans, sep='\n')
norioc