結果

問題 No.2453 Seat Allocation
ユーザー ikomaikoma
提出日時 2023-09-01 23:52:37
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 618 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 181,112 KB
最終ジャッジ日時 2024-06-11 06:10:28
合計ジャッジ時間 4,469 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,480 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 35 ms
52,352 KB
testcase_04 AC 36 ms
52,480 KB
testcase_05 TLE -
testcase_06 AC 479 ms
109,620 KB
testcase_07 AC 142 ms
96,384 KB
testcase_08 AC 145 ms
79,368 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 254 ms
92,032 KB
testcase_13 AC 320 ms
90,880 KB
testcase_14 AC 287 ms
98,380 KB
testcase_15 AC 1,312 ms
134,272 KB
testcase_16 AC 684 ms
116,612 KB
testcase_17 AC 42 ms
58,496 KB
testcase_18 AC 1,641 ms
148,112 KB
testcase_19 AC 1,847 ms
157,936 KB
testcase_20 AC 627 ms
102,912 KB
testcase_21 AC 1,076 ms
125,516 KB
testcase_22 AC 1,699 ms
150,224 KB
testcase_23 AC 37 ms
52,864 KB
testcase_24 AC 36 ms
52,992 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<<60
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