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
- SIFT
- 딥러닝
- dynamic programming
- classification
- canny edge detection
- TD
- image processing
- AlexNet
- DP
- clustering
- Reinforcement Learning
- object detection
- dropout
- dfs
- 그래프 이론
- Mask Processing
- MinHeap
- MySQL
- edge detection
- 백준
- sklearn
- BFS
- opencv
- overfitting
- C++
- exists
- machine learning
- 머신러닝
- Python
- 강화학습
Archives
- Today
- Total
목록heapq (1)
JINWOOJUNG
[ 자료구조-1715 ] 카드 정렬하기(Python)
접근법 최소 비교 횟수를 구하기 위해서는 입력받은 묶음의 크기를 정렬한 후 작은 2개의 묶음의 크기부터 더해나가서 계산할 수 있다. 따라서 양쪽으로 입출력이 가능한 deque 자료구조를 사용하여 구현하였다. from collections import deque N = int(input()) tmp = [] for i in range(N): tmp.append(int(input())) tmp.sort() queue = deque() for i in range(N): queue.append(tmp[i]) result = 0 for _ in range(1,N): a = queue.popleft() b = queue.popleft() result += a+b queue.appendleft(a+b) print(r..
백준
2023. 12. 28. 16:29