結果

問題 No.2453 Seat Allocation
ユーザー ikomaikoma
提出日時 2023-09-01 23:26:06
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 533 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 165,508 KB
最終ジャッジ日時 2024-06-11 05:34:51
合計ジャッジ時間 4,428 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,480 KB
testcase_01 AC 39 ms
52,480 KB
testcase_02 AC 36 ms
52,608 KB
testcase_03 AC 35 ms
52,352 KB
testcase_04 AC 36 ms
52,736 KB
testcase_05 TLE -
testcase_06 AC 396 ms
105,088 KB
testcase_07 AC 191 ms
96,256 KB
testcase_08 AC 151 ms
80,020 KB
testcase_09 AC 1,849 ms
159,020 KB
testcase_10 AC 1,954 ms
161,460 KB
testcase_11 AC 1,901 ms
161,200 KB
testcase_12 AC 345 ms
100,676 KB
testcase_13 AC 670 ms
113,536 KB
testcase_14 AC 233 ms
96,384 KB
testcase_15 AC 1,042 ms
125,980 KB
testcase_16 AC 588 ms
112,260 KB
testcase_17 AC 42 ms
59,136 KB
testcase_18 AC 1,309 ms
137,444 KB
testcase_19 AC 1,486 ms
146,504 KB
testcase_20 AC 554 ms
99,840 KB
testcase_21 AC 844 ms
117,456 KB
testcase_22 AC 1,294 ms
137,812 KB
testcase_23 WA -
testcase_24 AC 39 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from heapq import *

N,M=map(int,input().split())
A=list(map(int,input().split()))
B=list(map(int,input().split()))
Ai = [(a,i) for i,a in enumerate(A)]
Ai.sort(reverse=True)
a,i = Ai[0]

heap = [(a/b, -i) for b in B]
heapify(heap)

for a,i in Ai[1:]:
    i=-i
    for b in B:
        p = a/b
        heappush(heap, (p, i))
        p2,i2 = heappop(heap)
        if (p,i)==(p2,i2):break

ans = []
while heap:
    _,i = heappop(heap)
    ans.append(-i+1)

ans = reversed(ans)
print(*ans,sep="\n")
0