[백준 11656] 접미사 배열

Junyoung Park·2022년 3월 4일
0

코딩테스트

목록 보기
180/631
post-thumbnail

1. 문제 설명

접미사 배열

2. 문제 분석

힙큐는 너무 편리하다.

3. 나의 풀이

import sys
import heapq

s = sys.stdin.readline().rstrip()
postfix = []

for i in range(len(s)):
    heapq.heappush(postfix, s[i:])

while postfix:
    print(heapq.heappop(postfix))
profile
JUST DO IT

0개의 댓글