結果
問題 | No.2453 Seat Allocation |
ユーザー | ikoma |
提出日時 | 2023-09-01 23:54:47 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 663 bytes |
コンパイル時間 | 256 ms |
コンパイル使用メモリ | 82,124 KB |
実行使用メモリ | 162,180 KB |
最終ジャッジ日時 | 2024-06-11 06:13:45 |
合計ジャッジ時間 | 7,151 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
57,728 KB |
testcase_01 | AC | 47 ms
52,608 KB |
testcase_02 | AC | 44 ms
52,352 KB |
testcase_03 | AC | 44 ms
52,736 KB |
testcase_04 | AC | 45 ms
52,736 KB |
testcase_05 | AC | 1,934 ms
129,088 KB |
testcase_06 | AC | 422 ms
95,844 KB |
testcase_07 | AC | 155 ms
96,256 KB |
testcase_08 | AC | 186 ms
80,132 KB |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
ソースコード
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)), 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][0]>pi[0] or heap[0][0]==pi[0] and heap[0][1]>pi[1]:break heappush(heap, pi) pi2 = heappop(heap) ans = [] while heap: p,i = heappop(heap) # i = pi & ((1<<20)-1) i = M-i ans.append(i+1) ans = reversed(ans) print(*ans,sep="\n")