結果

問題 No.1816 MUL-DIV Game
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-01-26 02:55:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 353 ms / 2,000 ms
コード長 1,368 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 101,600 KB
最終ジャッジ日時 2024-09-28 07:26:47
合計ジャッジ時間 6,634 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 37 ms
52,352 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 38 ms
52,608 KB
testcase_06 AC 38 ms
52,480 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 AC 40 ms
52,992 KB
testcase_09 AC 144 ms
77,728 KB
testcase_10 AC 219 ms
85,248 KB
testcase_11 AC 206 ms
84,096 KB
testcase_12 AC 190 ms
82,656 KB
testcase_13 AC 233 ms
90,312 KB
testcase_14 AC 181 ms
83,072 KB
testcase_15 AC 199 ms
85,248 KB
testcase_16 AC 131 ms
77,696 KB
testcase_17 AC 283 ms
97,408 KB
testcase_18 AC 271 ms
95,104 KB
testcase_19 AC 190 ms
84,620 KB
testcase_20 AC 288 ms
97,920 KB
testcase_21 AC 172 ms
82,304 KB
testcase_22 AC 158 ms
80,000 KB
testcase_23 AC 39 ms
52,608 KB
testcase_24 AC 39 ms
52,480 KB
testcase_25 AC 316 ms
101,600 KB
testcase_26 AC 348 ms
101,504 KB
testcase_27 AC 311 ms
101,248 KB
testcase_28 AC 353 ms
101,376 KB
testcase_29 AC 317 ms
100,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/1816

import heapq

def main():
    N = int(input())

    A = list(map(int, input().split()))

    A.sort()

    index = [False] * (2 * N)
    min_queue = []
    max_queue = []
    for i in range(N):
        heapq.heappush(min_queue, (A[i], i))
    for i in range(N):
        heapq.heappush(max_queue, (-A[i], i))

    for turn in range(N - 1):
        if turn % 2 == 0:
            array = []
            while len(array) < 2:
                min_value, min_index = heapq.heappop(min_queue)
                if not index[min_index]:
                    array.append(min_value)
                    index[min_index] = True
            x = array[0] * array[1]
            heapq.heappush(min_queue, (x, N + turn))
            heapq.heappush(max_queue, (-x, N + turn))
        else:
            array_count = 0
            while array_count < 2:
                _, max_index = heapq.heappop(max_queue)
                if not index[max_index]:
                    array_count += 1
                    index[max_index] = True
            heapq.heappush(min_queue, (1, N + turn))
            heapq.heappush(max_queue, (-1, N + turn))

    while len(min_queue) > 0:
        min_value, min_index = heapq.heappop(min_queue)
        if not index[min_index]:
            print(min_value)
            break


if __name__ == "__main__":
    main()
0