gimmickbutreal
[프로그래머스/자바] 피로도 - DFS 본문
https://school.programmers.co.kr/learn/courses/30/lessons/87946
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
|
class Solution {
public int answer = 0;
public boolean[] visited;
public int solution(int k, int[][] dungeons) {
visited = new boolean[dungeons.length]; // 던전의 개수만큼만 방문함
dfs(0,k,dungeons);
return answer;
}
public void dfs(int depth, int k, int[][] dungeons){
for(int i = 0; i < dungeons.length; i++){ // 던전의 크기만큼만 보기
if(!visited[i] && k >= dungeons[i][0]){
visited[i] = true;
dfs(depth+1,k-dungeons[i][1],dungeons);
visited[i] = false;
}
}
answer = Math.max(answer,depth);
}
}
|
cs |
'Algorithm > Java' 카테고리의 다른 글
[프로그래머스/자바] 스킬트리 - Java (0) | 2023.04.30 |
---|---|
[프로그래머스/자바] 소수찾기 - DFS (0) | 2023.04.30 |
[프로그래머스/자바] 여행경로 - DFS (0) | 2023.04.19 |
[백준/자바] 특정 거리의 도시 찾기 - Java 18352 (0) | 2023.03.09 |
[백준/자바] DFS와BFS - Java 1260 (0) | 2023.03.05 |