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
- reconstruction
- 딥러닝
- Object Detection
- deep learning
- OpenCV
- cv2
- attention
- Python
- Knowledge Distillation
- 파이썬
- flame
- NLP
- 프로그래머스
- point cloud
- 스택
- Object Tracking
- re-identification
- center loss
- 자료구조
- 알고리즘
- 논문 구현
- 3D
- transformer
- 임계처리
- Computer Vision
- Threshold
- Deeplearning
- level2
- numpy
- 큐
Archives
- Today
- Total
목록다리를건너는트럭 (1)
공돌이 공룡의 서재
[프로그래머스 Level 2] 다리를 지나는 트럭 / (스택/큐) / 파이썬
def solution(bridge_length, weight, truck_weights): time = 0 truck = truck_weights[::-1]# (1) bridge = [] input = [] while not (len(bridge) == 0 and len(truck) == 0):# (2) time += 1 # print(time, 'AM: ', bridge, input) if len(input) > 0: if time - input[0] == bridge_length: bridge.pop(0) input.pop(0) if len(truck) != 0: go = truck.pop() if (len(bridge) + 1 다리 안에 있는 트럭에서 pop을 하는 횟수 라고 생각하여서 효율성에 ..
코딩/프로그래머스
2020. 8. 29. 15:32