結果

問題 No.205 マージして辞書順最小
ユーザー 草苺奶昔草苺奶昔
提出日時 2023-03-27 01:17:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 120 ms / 5,000 ms
コード長 561 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 78,720 KB
最終ジャッジ日時 2024-09-19 10:04:50
合計ジャッジ時間 3,000 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
66,560 KB
testcase_01 AC 72 ms
66,304 KB
testcase_02 AC 92 ms
72,960 KB
testcase_03 AC 94 ms
73,984 KB
testcase_04 AC 94 ms
72,320 KB
testcase_05 AC 94 ms
72,576 KB
testcase_06 AC 76 ms
66,688 KB
testcase_07 AC 118 ms
78,208 KB
testcase_08 AC 119 ms
78,208 KB
testcase_09 AC 120 ms
78,720 KB
testcase_10 AC 111 ms
78,208 KB
testcase_11 AC 113 ms
77,824 KB
testcase_12 AC 120 ms
78,080 KB
testcase_13 AC 120 ms
78,464 KB
testcase_14 AC 74 ms
66,560 KB
testcase_15 AC 71 ms
66,176 KB
testcase_16 AC 72 ms
66,304 KB
testcase_17 AC 71 ms
66,432 KB
testcase_18 AC 73 ms
66,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


from heapq import heapify, heappop, heappush
from typing import List


def minLexMerge(words: List[str]) -> str:
    """字典序最小的合并字符串"""
    pq = [w + chr(130) for w in words]
    heapify(pq)
    res = []
    while pq:
        min_ = heappop(pq)
        res.append(min_[0])
        min_ = min_[1:]
        if len(min_) >= 2:
            heappush(pq, min_)
    return "".join(res)


if __name__ == "__main__":
    N = int(input())
    words = [input() for _ in range(N)]
    print(minLexMerge(words))
0