結果

問題 No.2453 Seat Allocation
ユーザー detteiuudetteiuu
提出日時 2024-12-22 06:53:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,367 ms / 2,000 ms
コード長 549 bytes
コンパイル時間 367 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 120,680 KB
最終ジャッジ日時 2024-12-22 06:53:52
合計ジャッジ時間 17,034 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
88,396 KB
testcase_01 AC 139 ms
88,284 KB
testcase_02 AC 149 ms
88,352 KB
testcase_03 AC 136 ms
88,444 KB
testcase_04 AC 136 ms
88,436 KB
testcase_05 AC 791 ms
120,180 KB
testcase_06 AC 471 ms
103,824 KB
testcase_07 AC 384 ms
110,012 KB
testcase_08 AC 417 ms
92,416 KB
testcase_09 AC 1,367 ms
120,680 KB
testcase_10 AC 1,301 ms
120,172 KB
testcase_11 AC 1,333 ms
120,424 KB
testcase_12 AC 494 ms
103,472 KB
testcase_13 AC 605 ms
103,536 KB
testcase_14 AC 295 ms
103,928 KB
testcase_15 AC 766 ms
103,800 KB
testcase_16 AC 621 ms
102,860 KB
testcase_17 AC 145 ms
88,300 KB
testcase_18 AC 1,053 ms
109,260 KB
testcase_19 AC 1,338 ms
115,008 KB
testcase_20 AC 618 ms
100,828 KB
testcase_21 AC 700 ms
100,300 KB
testcase_22 AC 992 ms
106,284 KB
testcase_23 AC 135 ms
88,472 KB
testcase_24 AC 135 ms
88,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from fractions import Fraction
from heapq import heappush, heappop

N, M = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

def IDX(i, j):
    return i*(M+1)+j
def IDXR(n):
    return n//(M+1), n%(M+1)

que = []
for i in range(N):
    heappush(que, (-Fraction(A[i], B[0]), IDX(i, 0)))

for _ in range(M):
    f, n = heappop(que)
    i, j = IDXR(n)
    f = -f
    print(i+1)
    if j+1 < M:
        heappush(que, (-Fraction(A[i], B[j+1]), IDX(i, j+1)))
    else:
        heappush(que, (0, IDX(i, M)))
0