結果

問題 No.2453 Seat Allocation
ユーザー mymelochanmymelochan
提出日時 2023-09-02 17:42:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 377 ms / 2,000 ms
コード長 1,162 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 112,272 KB
最終ジャッジ日時 2024-06-25 09:37:30
合計ジャッジ時間 6,173 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,528 KB
testcase_01 AC 40 ms
54,528 KB
testcase_02 AC 41 ms
54,272 KB
testcase_03 AC 41 ms
54,272 KB
testcase_04 AC 43 ms
54,656 KB
testcase_05 AC 258 ms
112,272 KB
testcase_06 AC 133 ms
90,640 KB
testcase_07 AC 132 ms
95,488 KB
testcase_08 AC 119 ms
78,976 KB
testcase_09 AC 366 ms
110,080 KB
testcase_10 AC 362 ms
110,436 KB
testcase_11 AC 377 ms
110,260 KB
testcase_12 AC 213 ms
90,624 KB
testcase_13 AC 207 ms
91,008 KB
testcase_14 AC 119 ms
90,784 KB
testcase_15 AC 250 ms
90,596 KB
testcase_16 AC 247 ms
90,276 KB
testcase_17 AC 44 ms
54,784 KB
testcase_18 AC 273 ms
98,568 KB
testcase_19 AC 316 ms
105,156 KB
testcase_20 AC 190 ms
85,888 KB
testcase_21 AC 196 ms
87,308 KB
testcase_22 AC 246 ms
91,644 KB
testcase_23 AC 42 ms
54,144 KB
testcase_24 AC 45 ms
53,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#############################################################

import sys
sys.setrecursionlimit(10**7)

from heapq import heappop,heappush
from collections import deque,defaultdict,Counter
from bisect import bisect_left, bisect_right
from itertools import product,combinations,permutations

ipt = sys.stdin.readline

def iin():
    return int(ipt())
def lmin():
    return list(map(int,ipt().split()))

MOD = 998244353
L = 10**15

class YS(object):
    def __init__(self,bunsi, bunbo, idx):
        self.bunsi = bunsi
        self.bunbo = bunbo
        self.idx = idx

    def __lt__(self,other):
        if other.bunbo*self.bunsi == self.bunbo*other.bunsi:
            return other.idx > self.idx
        else:
            return other.bunbo*self.bunsi > self.bunbo*other.bunsi

#############################################################

N,M = lmin()
A = lmin()
B = lmin()

cnt = [1]*N
hq = []
for i,a in enumerate(A):
    heappush(hq,YS(a,B[0],i))

ans = []
while True:
    ys = heappop(hq)
    idx = ys.idx
    ans.append(idx+1)
    if len(ans) == M:
        break
    heappush(hq,YS(A[idx],B[cnt[idx]],idx))
    cnt[idx] += 1


for a in ans:
    print(a)
0