증가수열 만들기
생성일: 2022년 1월 22일 오후 6:04
구현 코드
# 증가수열 만들기 (그리디)
import sys
#sys.stdin = open("input2.txt", "rt")
n = int(input())
l = list(map(int, input().split()))
cnt = 0
res = ""
lastNum = 0
notFinished= True
while notFinished:
if l[0] > lastNum and l[-1] > lastNum:
if l[0] <= l[-1]:
lastNum = l[0]
l.pop(0)
res += "L"
else:
lastNum = l[-1]
l.pop()
res += "R"
cnt += 1
elif l[0] > lastNum and l[-1] <= lastNum:
lastNum = l[0]
l.pop(0)
cnt += 1
res += "L"
elif l[0] <= lastNum and l[-1] > lastNum:
lastNum = l[-1]
l.pop()
cnt += 1
res += "R"
else:
notFinished= False
print(cnt)
print(res)
Author And Source
이 문제에 관하여(증가수열 만들기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@lsj8706/증가수열-만들기저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)