結果

問題 No.1816 MUL-DIV Game
ユーザー rlangevinrlangevin
提出日時 2023-02-19 01:09:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 443 ms / 2,000 ms
コード長 1,236 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 97,648 KB
最終ジャッジ日時 2024-07-20 06:55:38
合計ジャッジ時間 6,421 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,608 KB
testcase_01 AC 39 ms
52,480 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 41 ms
52,480 KB
testcase_04 AC 40 ms
52,480 KB
testcase_05 AC 39 ms
52,608 KB
testcase_06 AC 38 ms
52,608 KB
testcase_07 AC 39 ms
52,224 KB
testcase_08 AC 39 ms
52,992 KB
testcase_09 AC 84 ms
76,416 KB
testcase_10 AC 90 ms
81,280 KB
testcase_11 AC 88 ms
80,640 KB
testcase_12 AC 87 ms
79,104 KB
testcase_13 AC 318 ms
87,652 KB
testcase_14 AC 228 ms
82,304 KB
testcase_15 AC 254 ms
84,720 KB
testcase_16 AC 171 ms
78,592 KB
testcase_17 AC 411 ms
94,388 KB
testcase_18 AC 347 ms
91,644 KB
testcase_19 AC 324 ms
86,400 KB
testcase_20 AC 373 ms
93,756 KB
testcase_21 AC 222 ms
82,304 KB
testcase_22 AC 216 ms
80,600 KB
testcase_23 AC 39 ms
52,224 KB
testcase_24 AC 41 ms
52,608 KB
testcase_25 AC 401 ms
97,648 KB
testcase_26 AC 111 ms
90,624 KB
testcase_27 AC 400 ms
96,352 KB
testcase_28 AC 115 ms
90,752 KB
testcase_29 AC 443 ms
97,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *

class QuasiBinaryTree:
    def __init__(self, rule="min"):
        if rule == "max":
            self.pm = -1
        else:
            self.pm = 1
 
        self.inf = 10**18
        self.P = [self.inf]
        self.Q = []
 
    def insert(self, x):
        heappush(self.P, x * self.pm)
 
    def erase(self, x):
        heappush(self.Q, x * self.pm)
 
    def top(self):
        while self.Q and (self.P[0] == self.Q[0]):
            heappop(self.P)
            heappop(self.Q)
        return self.P[0] * self.pm


N = int(input())
A = list(map(int, input().split()))
T1 = QuasiBinaryTree("min")
T2 = QuasiBinaryTree("max")
for a in A:
    T1.insert(a)
    T2.insert(a)

if N == 1:
    print(A[0])
    exit()
elif N == 2:
    print(A[0] * A[1])
    exit()
elif N % 2:
    print(1)
    exit()
for i in range(N - 1):
    if i % 2 == 0:
        a = T1.top()
        T1.erase(a)
        b = T1.top()
        T1.erase(b)
        T1.insert(a * b)
        T2.erase(a)
        T2.erase(b)
        T2.insert(a * b)
    else:
        a = T2.top()
        T2.erase(a)
        b = T2.top()
        T2.erase(b)
        T2.insert(1)
        T1.erase(a)
        T1.erase(b)
        T1.insert(1)
                
print(T1.top())
0