結果

問題 No.120 傾向と対策:門松列(その1)
ユーザー titiatitia
提出日時 2022-02-14 00:01:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 563 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-29 05:52:03
合計ジャッジ時間 1,323 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
10,752 KB
testcase_01 AC 133 ms
10,880 KB
testcase_02 AC 85 ms
10,880 KB
testcase_03 AC 126 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
import heapq

t=int(input())
for tests in range(t):
    N=int(input())
    A=list(map(int,input().split()))

    C=Counter(A)
    H=list(C.values())

    H=[-h for h in H]
    heapq.heapify(H)

    ANS=0

    while len(H)>=3:
        x=heapq.heappop(H)
        y=heapq.heappop(H)
        z=heapq.heappop(H)

        x+=1
        y+=1
        z+=1
        ANS+=1

        if x!=0:
            heapq.heappush(H,x)
        if y!=0:
            heapq.heappush(H,y)
        if z!=0:
            heapq.heappush(H,z)
    print(ANS)

    
0