結果

問題 No.1906 Twinkle Town
ユーザー hitonanodehitonanode
提出日時 2022-02-05 14:11:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 217 ms / 2,000 ms
コード長 639 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 102,340 KB
最終ジャッジ日時 2024-06-22 04:05:15
合計ジャッジ時間 12,421 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,268 KB
testcase_01 AC 37 ms
53,372 KB
testcase_02 AC 38 ms
52,728 KB
testcase_03 AC 206 ms
78,452 KB
testcase_04 AC 204 ms
78,224 KB
testcase_05 AC 201 ms
78,120 KB
testcase_06 AC 195 ms
78,396 KB
testcase_07 AC 211 ms
78,436 KB
testcase_08 AC 207 ms
77,812 KB
testcase_09 AC 210 ms
78,072 KB
testcase_10 AC 211 ms
78,044 KB
testcase_11 AC 207 ms
77,976 KB
testcase_12 AC 199 ms
78,044 KB
testcase_13 AC 216 ms
78,092 KB
testcase_14 AC 207 ms
78,088 KB
testcase_15 AC 217 ms
78,320 KB
testcase_16 AC 197 ms
78,248 KB
testcase_17 AC 210 ms
78,568 KB
testcase_18 AC 201 ms
78,452 KB
testcase_19 AC 204 ms
78,472 KB
testcase_20 AC 196 ms
78,172 KB
testcase_21 AC 167 ms
77,344 KB
testcase_22 AC 141 ms
76,944 KB
testcase_23 AC 171 ms
76,756 KB
testcase_24 AC 144 ms
77,432 KB
testcase_25 AC 164 ms
77,244 KB
testcase_26 AC 145 ms
77,364 KB
testcase_27 AC 168 ms
77,524 KB
testcase_28 AC 144 ms
76,796 KB
testcase_29 AC 182 ms
93,020 KB
testcase_30 AC 173 ms
97,668 KB
testcase_31 AC 176 ms
90,108 KB
testcase_32 AC 156 ms
86,772 KB
testcase_33 AC 183 ms
93,424 KB
testcase_34 AC 167 ms
97,364 KB
testcase_35 AC 180 ms
94,700 KB
testcase_36 AC 159 ms
89,124 KB
testcase_37 AC 184 ms
96,624 KB
testcase_38 AC 162 ms
92,488 KB
testcase_39 AC 200 ms
102,244 KB
testcase_40 AC 200 ms
102,008 KB
testcase_41 AC 199 ms
101,988 KB
testcase_42 AC 195 ms
102,340 KB
testcase_43 AC 199 ms
102,168 KB
testcase_44 AC 198 ms
102,188 KB
testcase_45 AC 157 ms
77,812 KB
testcase_46 AC 183 ms
77,752 KB
testcase_47 AC 197 ms
77,516 KB
testcase_48 AC 167 ms
76,896 KB
testcase_49 AC 150 ms
77,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 想定解
# Python3 でも通る(なんならそっちの方が速い)んですが、シンプル軽実装がバレるので、PyPy にします
import heapq


def solve() -> int:
    N, A = int(input()), sorted(map(int, input().split()))

    heap = list()
    ret, latest_a = 0, 0

    for i, a in enumerate(A):
        heapq.heappush(heap, -(a - latest_a))  # 大きいものから取り出したいので符号反転させて入れる
        latest_a = a
        if i % 2 == 0:
            ret -= heapq.heappop(heap)

    return ret if N % 2 else A[-1] - ret


ret = [solve() for _ in range(int(input()))]
print(*ret, sep='\n')
0