[Algorithm log] 그리디#16 백준 1449
n,l = map(int,input().split())
locate = list(map(int,input().split()))
tape = 0
length = 0
locate.sort()
for i in locate :
if i>length :
length = i+l-1
tape+=1
print(tape)
4 3
1 2 3 4
이렇게 있다면
length = 1+3-1 만큼 테이프는 덮을 수있다.
3이 되기전까지는 테이프가 덮어지니까 tape는 그대로 두고
4가 되는순간 다시 테이프를 덮으니까 tape를 1올린다.
Author And Source
이 문제에 관하여([Algorithm log] 그리디#16 백준 1449), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@soyernssi/Algorithm-log-그리디16-백준-1449저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)