結果

問題 No.2453 Seat Allocation
ユーザー titiatitia
提出日時 2023-09-01 23:09:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 428 bytes
コンパイル時間 403 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 32,504 KB
最終ジャッジ日時 2024-06-11 17:52:59
合計ジャッジ時間 8,707 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,624 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 524 ms
32,364 KB
testcase_06 AC 268 ms
21,560 KB
testcase_07 AC 176 ms
28,320 KB
testcase_08 AC 79 ms
12,928 KB
testcase_09 AC 735 ms
32,504 KB
testcase_10 AC 695 ms
32,356 KB
testcase_11 AC 705 ms
32,416 KB
testcase_12 AC 249 ms
21,548 KB
testcase_13 AC 293 ms
21,564 KB
testcase_14 AC 248 ms
21,680 KB
testcase_15 AC 310 ms
21,600 KB
testcase_16 AC 275 ms
20,128 KB
testcase_17 AC 31 ms
10,624 KB
testcase_18 AC 488 ms
22,036 KB
testcase_19 AC 574 ms
27,544 KB
testcase_20 AC 230 ms
18,264 KB
testcase_21 AC 275 ms
18,508 KB
testcase_22 AC 390 ms
21,860 KB
testcase_23 WA -
testcase_24 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from heapq import heappop,heappush

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

for i in range(N):
    A[i]*=10**9


H=[]
for i in range(N):
    H.append((-A[i]/B[0],i+1,0))

H.sort()
count=0

while H and count<M:
    count+=1
    x,ind,c=heappop(H)

    print(ind)

    if c<M-1:
        c+=1
        heappush(H,(-A[ind-1]/B[c],ind,c))
0