結果

問題 No.2453 Seat Allocation
ユーザー ikomaikoma
提出日時 2023-09-01 23:46:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 611 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,068 KB
実行使用メモリ 134,108 KB
最終ジャッジ日時 2024-06-11 06:00:50
合計ジャッジ時間 16,416 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,672 KB
testcase_01 AC 38 ms
53,480 KB
testcase_02 AC 38 ms
53,196 KB
testcase_03 AC 34 ms
54,252 KB
testcase_04 AC 36 ms
53,724 KB
testcase_05 AC 811 ms
102,924 KB
testcase_06 WA -
testcase_07 AC 222 ms
96,348 KB
testcase_08 AC 152 ms
79,600 KB
testcase_09 AC 1,749 ms
129,572 KB
testcase_10 AC 1,982 ms
134,108 KB
testcase_11 AC 1,794 ms
130,748 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 192 ms
92,012 KB
testcase_15 WA -
testcase_16 AC 305 ms
89,496 KB
testcase_17 AC 41 ms
58,580 KB
testcase_18 AC 1,150 ms
107,736 KB
testcase_19 AC 1,500 ms
122,564 KB
testcase_20 AC 324 ms
85,096 KB
testcase_21 AC 756 ms
97,424 KB
testcase_22 AC 1,169 ms
110,276 KB
testcase_23 WA -
testcase_24 AC 38 ms
53,008 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)
        heappush(heap, pi)
        pi2 = heappop(heap)
        if pi==pi2:break

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