結果

問題 No.120 傾向と対策:門松列(その1)
ユーザー yaoshimaxyaoshimax
提出日時 2015-03-29 01:57:16
言語 Python2
(2.7.18)
結果
AC  
実行時間 259 ms / 5,000 ms
コード長 516 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,940 KB
最終ジャッジ日時 2024-07-03 22:32:00
合計ジャッジ時間 2,306 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 230 ms
6,816 KB
testcase_01 AC 259 ms
6,912 KB
testcase_02 AC 127 ms
6,912 KB
testcase_03 AC 248 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop,heappush
import collections
T=int(raw_input())
for ti in range(T):
    N=int(raw_input())
    L=map(int,raw_input().split())
    LDict=collections.Counter(L)
    hp=[]
    for v,n in LDict.items():
        heappush(hp,-n)
    ans=0
    while len(hp)>=3:
        a=heappop(hp)
        b=heappop(hp)
        c=heappop(hp)
        ans+=1
        if a+1<0:
            heappush(hp,a+1)
        if b+1<0:
            heappush(hp,b+1)
        if c+1<0:
            heappush(hp,c+1)
    print ans
0