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 |
Tags
- 알고리즘
- 취득후기
- BFS
- spring
- java
- 세그먼트트리
- dp
- 백준코딩테스트
- 다이나믹프로그래밍
- 백준
- 게더타운시작
- 01BFS
- 엘라스틱서치
- 네트워크플로우
- 이젠 골드구현도 어렵네..
- DFS
- GatherTown
- deque
- PS
- QUICKSTARTGUIDE
- 완전탐색
- 시뮬레이션
- 우선순위큐
- 다익스트라
- 구현
- 자바PS
- COSPRO
- YBMCOS
- COSPROJAVA1급
- 재귀함수
Archives
- Today
- Total
목록2020/09/06 (1)
공부공간

programmers.co.kr/learn/courses/30/lessons/49191 코딩테스트 연습 - 순위 5 [[4, 3], [4, 2], [3, 2], [1, 2], [2, 5]] 2 programmers.co.kr 플로이드 와샬 알고리즘을 활용하여 1 ) 정방향 그래프 탐색 2 ) 역방향 그래프 탐색 으로 내가갈수있는곳과 나에게 올수있는곳의 개수를 센다. class Solution { public int solution(int n, int[][] results) { int answer = 0; int largeN = 987654321; int map[][] = new int[n+1][n+1]; int imap[][] = new int[n+1][n+1]; for(int i=1;i
알고리즘/Floyd-Warshall
2020. 9. 6. 21:33