Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- web
- Python
- programmers
- 따라하며 배우는 C언어
- 정수론
- udemy
- C
- Algorithm
- 종만북
- BOJ
- BASIC
- dfs
- 따라하면서 배우는 C언어
- php
- DP
- Math
- Algospot
- 인프런
- BFS
- JavaScript
- 따배씨
- C언어
- Cleancode
- sorting
- graph
- 생활코딩
- String
- 백준
- greedy
- server
Archives
- Today
- Total
몽상실현개발주의
[BOJ] 2805 / 나무 자르기 / Python 파이썬 본문
[BOJ] 2805 / 나무 자르기 / Python 파이썬
https://www.acmicpc.net/problem/2805
풀이
이진탐색의 기본 문제이다.
주어진 나무의 높이들을 빼주면서 결과를 비교하여, 탐색 범위를 좁혀 주는 방식으로 이진탐색을 하였다.
- res < M : 자를 높이 감소
- res >= M : 자를 높이 증가
N, M = map(int, input().split())
trees = list(map(int, input().split()))
end = max(trees)
start = 1
def cutTree(h):
global M
res = 0
for t in trees:
if t-h > 0:
res += (t-h)
return res
while start <= end:
mid = (start+end)//2
res = cutTree(mid)
if res < M:
end = mid-1
else:
start = mid+1
print(end)
'Algorithm PS > BOJ' 카테고리의 다른 글
[BOJ] 10815 / 숫자 카드 / Python 파이썬 (0) | 2021.06.19 |
---|---|
[BOJ] 2110 / 공유기 설치 / Python 파이썬 (0) | 2021.06.18 |
[BOJ] 1654 / 랜선 자르기 / Python 파이썬 (0) | 2021.06.16 |
[BOJ] 1967 / 트리의 지름 / Python 파이썬 (0) | 2021.06.16 |
[BOJ] 1167 / 트리의 지름 / Python 파이썬 (0) | 2021.06.15 |
Comments