[백준 1449] 수리공 항승
1. 문제 설명
2. 문제 분석
그리디 알고리즘으로 앞에서부터 정렬, 테이프 범위를 기록해서 카운트
3. 나의 풀이
import sys
n,l = map(int, sys.stdin.readline().rstrip().split())
positions = list(map(int, sys.stdin.readline().rstrip().split()))
positions.sort()
cnt = 0
left, right = -1, -1
for pos in positions:
if pos - 0.5 >= left and pos + 0.5 <= right: continue
else:
left = pos - 0.5
right = left + l
cnt += 1
print(cnt)
Author And Source
이 문제에 관하여([백준 1449] 수리공 항승), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@j_aion/백준-1449-수리공-항승
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
그리디 알고리즘으로 앞에서부터 정렬, 테이프 범위를 기록해서 카운트
3. 나의 풀이
import sys
n,l = map(int, sys.stdin.readline().rstrip().split())
positions = list(map(int, sys.stdin.readline().rstrip().split()))
positions.sort()
cnt = 0
left, right = -1, -1
for pos in positions:
if pos - 0.5 >= left and pos + 0.5 <= right: continue
else:
left = pos - 0.5
right = left + l
cnt += 1
print(cnt)
Author And Source
이 문제에 관하여([백준 1449] 수리공 항승), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@j_aion/백준-1449-수리공-항승
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
import sys
n,l = map(int, sys.stdin.readline().rstrip().split())
positions = list(map(int, sys.stdin.readline().rstrip().split()))
positions.sort()
cnt = 0
left, right = -1, -1
for pos in positions:
if pos - 0.5 >= left and pos + 0.5 <= right: continue
else:
left = pos - 0.5
right = left + l
cnt += 1
print(cnt)
Author And Source
이 문제에 관하여([백준 1449] 수리공 항승), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@j_aion/백준-1449-수리공-항승저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)