728x90
문제 링크 https://school.programmers.co.kr/learn/courses/30/lessons/42898
KEY
- 101 * 101 의 arr배열을 선언 한 후, 물 웅덩이가 있는 부분에 -1을 넣는다.
- 시작부분인 arr[1][1]에 1을 넣는다.
1 | 0 | 0 | 0 |
0 | -1 | 0 | 0 |
0 | 0 | 0 | 0 |
- arr[i][j] = arr[i-1][j] + arr[i][j-1]의 점화식으로 arr[i][j]에 값을 넣어가며 최단경로의 가짓 수를 구할 수 있다.
1 | 1 | 1 | 1 |
1 | -1 | 1 | 2 |
1 | 1 | 2 | 4 |
백트래킹으로 최단경로의 가짓수를 구하는 방식으로 풀면 테스트케이슨는 모두 통과했지만 전부 시간 초과가 발생한다.
격자의 크기가 100*100이나 되서 재귀로 푸는데에는 시간초과가 뜰 수 밖에 없다.
Dfs(백트래킹) - 시간초과
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
32
33
34
35
36
37
38
39
40
|
#include <string>
#include <vector>
#include <iostream>
using namespace std;
int M,N;
int dir[2][2] = {{0,1},{1,0}};
bool visited[101][101];
int arr[101][101];
long long answer;
void dfs(int x, int y){
if(x==N && y==M){
answer++;
return;
}
for(int i=0;i<2;i++){
int nx = x + dir[i][0];
int ny = y + dir[i][1];
if(visited[nx][ny])
continue;
if(nx>N || nx<0 || ny>M || ny<0)
continue;
if(arr[nx][ny] == 1)
continue;
visited[nx][ny] = true;
dfs(nx,ny);
visited[nx][ny] = false;
}
}
int solution(int m, int n, vector<vector<int>> puddles) {
N = m;
M = n;
for(int i=0;i<puddles.size();i++){
arr[puddles[i][0]][puddles[i][1]] = 1;
}
dfs(1,1);
return answer%1000000007;
}
|
cs |
Dp - 통과
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
|
#include <string>
#include <vector>
#include <iostream>
#include <cstring>
using namespace std;
int arr[101][101];
int solution(int m, int n, vector<vector<int>> puddles) {
//물에 잠긴 지역은 -1으로 만든다.
for(int i=0;i<puddles.size();i++){
arr[puddles[i][1]][puddles[i][0]] = -1;
}
arr[1][1] = 1;
for(int i=1; i<=n; i++){
for(int j=1; j<=m; j++){
int a=0;
int b=0;
if(arr[i][j] == -1)
continue;
if(arr[i-1][j] != -1){
a = arr[i-1][j];
}
if(arr[i][j-1] != -1){
b = arr[i][j-1];
}
arr[i][j] += (a+b) % 1000000007;
}
}
return arr[n][m];
}
|
cs |
728x90
'Algorithm > 동적계획법' 카테고리의 다른 글
[백준] 9251 LCS c++ (0) | 2023.03.29 |
---|---|
[백준] 2565 전깃줄 c++ (0) | 2023.03.28 |
[백준] 11054 가장 긴 바이토닉 부분 수열 c++ (0) | 2023.03.28 |
[백준] 11053 가장 긴 증가하는 부분수열 c++ (0) | 2023.03.27 |
[백준] 1932 정수 삼각형 c++ (0) | 2023.03.26 |
댓글