일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 백트래킹
- BFS
- django
- 동적계획법
- 함밥
- 최소스패닝트리
- 데이터베이스
- DFS
- 파이썬
- minimum spanning tree
- codetree
- 코드트리
- DP
- 장고
- 그리디알고리즘
- 프로그래머스
- MyPlaylist
- Bellman-Ford
- programmers
- 마라마라빔
- 실습
- Kruskal
- 모각코
- B대면노래방
- 알고리즘
- 종합설계
- Planned
- 백준
- 소프트웨어공학
- SQL
Archives
- Today
- Total
Leta Learns
[Python] 백준 1654번 - 랜선 자르기 본문
문제 https://www.acmicpc.net/problem/1654
이분탐색 안 하고 그냥 풀어도 되지 않을까.. 하는 희망을 가지고 풀었는데
시간초과 났다. ㅎㅎ
코드도 수정해보고 pypy3로도 해봤는데 안 돼서 결국 이분탐색으로 풀었다.
#이분탐색코드
import sys
input = sys.stdin.readline
k, n = map(int, input().split())
lan = [int(input()) for _ in range(k)]
s = 1
e = max(lan)
while s <= e:
mid = (s + e) // 2
cnt = 0
for i in lan:
cnt += i // mid
if cnt >= n:
s = mid + 1
else:
e = mid - 1
print(e)
#시간초과코드
import sys
input = sys.stdin.readline
k, n = map(int, input().split())
lan = [int(input()) for _ in range(k)]
mx = sum(lan)//n
cnt = 0
while True:
for i in lan:
cnt += i//mx
if cnt != n:
mx -= 1
cnt = 0
else:
break
print(mx)
'Coding > 백준' 카테고리의 다른 글
[Python] 백준 1541번 - 잃어버린 괄호 (0) | 2022.08.03 |
---|---|
[Python] 백준 1676번 - 팩토리얼 0의 개수 (0) | 2022.07.30 |
[Python] 백준 1436번 - 영화감독 숌 (0) | 2022.07.23 |
[Python] 백준 1463번 - 1로 만들기 (0) | 2022.07.23 |
[Python] 백준 1389번 - 케빈 베이컨의 6단계 법칙 (0) | 2022.07.20 |
Comments