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
- object detection
- 백준
- Python
- 모두를 위한 딥러닝
- 프로그래머스
- coding test
- 알고리즘
- computer vision
- 내용추가
- reinforcement learning
- 논문
Archives
- Today
- Total
NISSO
[프로그래머스 Lv2][스택/큐] 기능개발 본문
import math
def solution(progresses, speeds):
queue,answer = [math.ceil((100-progresses[0])/speeds[0])],[]
for p,s in zip(progresses[1:]+[0], speeds[1:]+[1]):
crnt = math.ceil((100-p)/s)
if crnt > queue[0]:
answer.append(len(queue))
queue = []
queue.append(crnt)
return answer
레벨 2는 처음 푸는데 스택/큐 문제도 거의 안 풀어봤고, 알 것 같은데 안 풀려서 문제랑 거의 싸우다싶이 풀었다.
코테가 약 2시간 남았으니 코드 설명은 나중에 쓰기로... (지금 안 쓰면 나중에도 안 쓸 것 같아서 게시글은 올려둔다)
'Coding Test' 카테고리의 다른 글
[프로그래머스 Lv2] 순위검색 (0) | 2022.05.11 |
---|---|
[프로그래머스 Lv2][완전탐색] 소수찾기 (0) | 2021.07.02 |
[프로그래머스 Lv1][해시] 완주하지 못한 선수 (0) | 2021.07.02 |
[백준 1260] DFS와 BFS (0) | 2021.07.02 |
[알고리즘] DFS와 BFS (0) | 2021.07.01 |
Comments