結果

問題 No.2453 Seat Allocation
ユーザー chineristACchineristAC
提出日時 2023-09-01 23:47:22
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 896 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 106,804 KB
最終ジャッジ日時 2024-06-11 06:02:07
合計ジャッジ時間 10,067 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
56,664 KB
testcase_01 AC 51 ms
56,664 KB
testcase_02 AC 55 ms
57,488 KB
testcase_03 RE -
testcase_04 AC 60 ms
63,100 KB
testcase_05 AC 480 ms
101,992 KB
testcase_06 AC 217 ms
91,692 KB
testcase_07 AC 240 ms
90,476 KB
testcase_08 AC 172 ms
79,972 KB
testcase_09 AC 685 ms
106,592 KB
testcase_10 AC 679 ms
106,804 KB
testcase_11 AC 634 ms
105,972 KB
testcase_12 AC 252 ms
91,672 KB
testcase_13 AC 261 ms
91,840 KB
testcase_14 AC 214 ms
91,796 KB
testcase_15 AC 379 ms
91,664 KB
testcase_16 AC 377 ms
90,824 KB
testcase_17 AC 55 ms
63,212 KB
testcase_18 AC 480 ms
99,284 KB
testcase_19 AC 596 ms
102,520 KB
testcase_20 AC 311 ms
85,888 KB
testcase_21 AC 337 ms
87,852 KB
testcase_22 AC 435 ms
93,484 KB
testcase_23 WA -
testcase_24 AC 50 ms
57,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random
from itertools import permutations
from collections import deque
from heapq import *

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

N,M = mi()
A = li()
B = li()

A_val = [a for a in A]
A_val.sort()

def cond(x):
    res = 0
    lower = 0
    for b in B:
        while lower!=N and A_val[lower] < x * b:
            lower += 1
        res += N - lower
    return res >= M

ok = 0
ng = 10**9+1
for _ in range(60):
    mid = (ok+ng)/2
    if cond(mid):
        ok = mid
    else:
        ng = mid

select = []
idx = [0 for i in range(M)]
t = 10**18
pq = [(-A[i]*t/B[0],i) for i in range(N)]
heapify(pq)
while len(select) < M:
    val,i = heappop(pq)
    select.append((i,idx[i]))
    idx[i] += 1
    if idx[i] < M:
        val = -A[i]*t/B[idx[i]]
        heappush(pq,(val,i))


for i,j in select:
    print(i+1)






0