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
- 프로래머스
- MySQL
- spring oauth
- Spring
- with recursive
- 프로그래머스
- 백준 파이썬
- Spring Boot
- 백준 16719
- spring security
- 파이썬
- springboot
- java 기술면접
- JPA
- 백준 17626
- 백준 16236
- java
- Kotlin
- 백준 19238
- 백준 15685
- spring cloud
- re.split
- 백준 16235
- 백준 17779
- Coroutine
- 웹어플리케이션 서버
- 백준
- sql 기술면접
- MSA
- JVM
Archives
- Today
- Total
목록백준 17135 (1)
시작이 반
[백준] 17135번 (python 파이썬)
구현, 시뮬레이션 문제이다. 여기서 필요한 알고리즘은 BFS, BackTracking이다. BFS는 궁수가 최단 거리에있는 적을 죽일때 필요하며 BackTracking은 궁수의 배치에대한 조합을 구할때 필요하다. 궁수는 3명을 배치한다. 즉, 열의 개수가 m 이기 때문에 mC3 의 조합이 필요하다 두개의 알고리즘을 사용하고 실수만 하지 않으면 풀수 있을 것이다. import heapq from collections import deque n, m, d = map(int, input().split(' ')) graph = [list(map(int, input().split(' '))) for _ in range(n)] visitied = [False] * m max_kill = 0 def combinati..
알고리즘/백준
2021. 4. 16. 15:12