結果

問題 No.2453 Seat Allocation
ユーザー ikomaikoma
提出日時 2023-09-01 23:50:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 616 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 134,024 KB
最終ジャッジ日時 2024-06-11 06:07:27
合計ジャッジ時間 15,753 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,352 KB
testcase_01 AC 35 ms
52,992 KB
testcase_02 AC 35 ms
52,736 KB
testcase_03 AC 36 ms
52,480 KB
testcase_04 AC 36 ms
52,864 KB
testcase_05 AC 747 ms
103,032 KB
testcase_06 WA -
testcase_07 AC 129 ms
96,384 KB
testcase_08 AC 146 ms
79,784 KB
testcase_09 AC 1,640 ms
128,916 KB
testcase_10 AC 1,832 ms
134,024 KB
testcase_11 AC 1,667 ms
130,816 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 204 ms
91,904 KB
testcase_15 WA -
testcase_16 AC 300 ms
90,172 KB
testcase_17 AC 42 ms
58,240 KB
testcase_18 AC 1,120 ms
108,660 KB
testcase_19 AC 1,416 ms
121,196 KB
testcase_20 AC 318 ms
85,140 KB
testcase_21 AC 723 ms
96,212 KB
testcase_22 AC 1,149 ms
109,636 KB
testcase_23 WA -
testcase_24 AC 35 ms
52,224 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]
offset = 1<<30
f = lambda a,b,i: (((a*offset//b)<<20) +M-i)
heap = [ f(a,b,i) for b in B]
heapify(heap)

for a,i in Ai[1:]:
    for b in B:
        pi = f(a,b,i)
        if heap[0]>=pi:break
        heappush(heap, pi)
        pi2 = heappop(heap)

ans = []
while heap:
    pi = heappop(heap)
    i = pi & ((1<<20)-1)
    i = M-i
    ans.append(i+1)

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

0