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 |
Tags
- 프로그래머스
- Baekjoon
- dfs
- select
- SQL 고득점 KIT
- LEVEL 2
- softeer
- 깊이 우선 탐색
- Lv. 0
- programmers
- 너비 우선 탐색
- Lv. 2
- Lv. 3
- 자바스크립트
- 백준
- Python
- 소프티어
- Java
- Lv. 1
- 티스토리챌린지
- bfs
- DP
- Dynamic Programming
- level 3
- group by
- join
- SQL
- 파이썬
- javascript
- 오블완
Archives
- Today
- Total
목록마스터 (1)
몸과 마음이 건전한 SW 개발자
Softeer level3 택배 마스터 광우 Python
문제 링크 : https://softeer.ai/practice/info.do?idx=1&eid=581 Softeer 연습문제를 담을 Set을 선택해주세요. 취소 확인 softeer.ai import sys input = sys.stdin.readline N, M, K = map(int, input().split()) rails = list(map(int, input().split())) minW = 10e9 def dfs(S, V, box): if S == N: global minW nowW = basket(box) if nowW < minW: minW = nowW return for i in range(N): if i not in V: dfs(S+1, V+[i], box+[rails[i]]) def ..
알고리즘
2023. 8. 4. 22:45