백준, 수리공 항승, 1449, 파이썬
2024. 9. 10. 23:10ㆍETC/Algorithm
[유형]
그리디
[문제링크]
https://www.acmicpc.net/problem/1449
[요약]
물이 새는 곳의 위치와, 항승이가 가지고 있는 테이프의 길이 L이 주어졌을 때, 항승이가 필요한 테이프의 최소 개수를 구하는 프로그램을 작성하시오.
[문제풀이]
import sys
from collections import Counter
def input():
return sys.stdin.readline().rstrip()
N, L = map(int,input().split())
locations = list(map(int, input().split()))
locations.sort()
start = locations[0] - 0.5
end = start + L
count = 1
for location in locations:
if start < location < end:
continue
else:
count += 1
start = location - 0.5
end = start + L
print(count)
'ETC > Algorithm' 카테고리의 다른 글
프로그래머스,단속카메라,42884,파이썬 (0) | 2024.09.11 |
---|---|
백준, 강의실 배정, 11000, 파이썬 (0) | 2024.09.10 |
백준, ATM, 11399, 파이썬 (0) | 2024.09.10 |
백준, 동전 2, 22964, 파이썬 (1) | 2024.09.10 |
백준, 동전1, 2293, 파이썬 (0) | 2024.09.10 |