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
- 99클럽 #99일지 #코딩테스트 #개발자스터디 #항해 #til
- print sep
- 99일지
- 파이썬 |
- 주니어개발자멘토링
- EnvCommandError
- vscode cp949
- 백준
- cp949
- 항해99
- 항해
- 코딩테스트
- 10430번
- 파이썬
- 파이썬 map 함수
- 99클럽
- print("""
- not a git repository
- 파이썬 클래스
- 개발자스터디
- fatal:not a git repository
- 항해플러스
- 코딩부트캠프후기
- Fatal Python error: init_fs_encoding: failed to get the Python codec of the filesystem encoding
- MomentumParameters
- 주니어개발자역량강화
- 파이썬 int()
- 파이썬 sep
- Til
- 개발자사이드프로젝트
Archives
- Today
- Total
선발대
[스파르타] 99클럽 2기 코테스터디 23일차 TIL / Leet 1011 본문
LeetCode: 1011. Capacity To Ship Packages Within D Days (링크)
class Solution:
def shipWithinDays(self, weights: List[int], days: int) -> int:
l, r = max(weights), sum(weights)
res = r
def canShip(cap):
ships, currCap = 1, cap
for w in weights:
if currCap - w < 0:
ships += 1
currCap = cap
currCap -= w
return ships <= days
while l <= r:
cap = (l + r) // 2
if canShip(cap):
res = min(res, cap)
r = cap - 1
else:
l = cap + 1
return res
'스파르타코딩클럽 > 활동 내용' 카테고리의 다른 글
[스파르타] 99클럽 2기 코테스터디 25일차 TIL / 순위 (0) | 2024.06.13 |
---|---|
[스파르타] 99클럽 2기 코테스터디 24일차 TIL / 가장 먼 노드 (1) | 2024.06.12 |
[스파르타] 99클럽 2기 코테스터디 22일차 TIL / 입국심사 (0) | 2024.06.10 |
[스파르타] 99클럽 2기 코테스터디 21일차 TIL / leet 1277 (0) | 2024.06.09 |
[스파르타] 99클럽 2기 코테스터디 20일차 TIL / leet 1043 (0) | 2024.06.08 |
Comments