[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올린다.

좋은 웹페이지 즐겨찾기