일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Decorator
- Generator
- 시바견
- attribute
- 30. Substring with Concatenation of All Words
- 315. Count of Smaller Numbers After Self
- t1
- shiba
- Substring with Concatenation of All Words
- Python
- concurrency
- Protocol
- Python Implementation
- Class
- Python Code
- 밴픽
- 컴퓨터의 구조
- LeetCode
- iterator
- 파이썬
- data science
- 운영체제
- Regular Expression
- 109. Convert Sorted List to Binary Search Tree
- 43. Multiply Strings
- DWG
- 715. Range Module
- 프로그래머스
- Convert Sorted List to Binary Search Tree
- kaggle
Archives
- Today
- Total
Scribbling
프로그래머스: 입국심사 본문
Binary Search를 이용한다.
숫자가 클 때는 Binary Search를 의심해봐야한다.
def solution(n, times):
answer = int(1e20)
max_time = n * max(times)
l, r = 0, max_time
while l <= r:
mid = (l + r) // 2
num_served = 0
for time in times:
num_served += mid // time
if num_served >= n:
answer = min(answer, mid)
r = mid - 1
else:
l = mid + 1
return answer
'Computer Science > Coding Test' 카테고리의 다른 글
LeetCode: 117. Populating Next Right Pointers in Each Node II (0) | 2021.11.03 |
---|---|
프로그래머스: 징검다리 (0) | 2021.11.03 |
LeetCode: 116. Populating Next Right Pointers in Each Node (0) | 2021.11.02 |
LeetCode: 114. Flatten Binary Tree to Linked List (0) | 2021.11.02 |
프로그래머스: 여행경로 (0) | 2021.11.01 |