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
- 유니온파인드
- 투포인터
- 카카오
- 코딩테스트
- Union-find
- IBK기업은행 #기업은행 #디지털 #직무 #정리
- 소감
- 삼성 #코테 #2020상반기 #c++
- 식단
- c++
- 보석쇼핑
- Smilegate
- 스마일게이트
- BFS
- 서버개발캠프
- 중반부
- 알고리즘
- BaekJoon
- Algorithm
- 코테
- LIS #Algorithm #요소추적
- 백준
- 1편
- 카카오인턴
Archives
- Today
- Total
짱아의 개발 기록장
LeetCode : 63. Unique Paths II 본문
반응형
62번 문제의 연장선인 dp문제이다.
[메인 로직]
이해를 돕기위해서 그림을 그려서 첨부해보았다.
일단, 보석이 0행쪽에 있거나, 0열 쪽에 있으면 무조건 보석 이후에 있는 경로는 모두 경로가 없게 된다!!
따라서, 이것에 대한 예외처리를 해주는 것이 필요하다.
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
41
42
|
class Solution {
public:
int dp[101][101] = {0, };
int uniquePathsWithObstacles(vector<vector<int>>& obstacleGrid) {
int m = obstacleGrid.size();
int n = obstacleGrid[0].size();
if(obstacleGrid[0][0]==1){
return 0;
}
bool check = false;
bool check2 = false;
for(int i=0; i<m; i++){
for(int j=0; j<n; j++){
if(obstacleGrid[i][j]==1){
if(i==0){
check = true;
}
if(j==0){
check2 = true;
}
continue;
}
if(check==true && i==0) continue;
if(check2==true && j==0) continue;
dp[i][j] = 1;
}
}
for(int i=1; i<m; i++){
for(int j=1; j<n; j++){
if(obstacleGrid[i][j]==1) continue;
dp[i][j] = dp[i-1][j]+dp[i][j-1];
}
}
return dp[m-1][n-1];
}
};
|
cs |
반응형
'Algorithm > LeetCode' 카테고리의 다른 글
LeetCode : 35. Search Insert Position (0) | 2021.01.23 |
---|---|
64. Minimum Path Sum (0) | 2021.01.22 |
LeetCode : 62. Unique Paths (0) | 2021.01.22 |
LeetCode : 111. Minimum Depth of Binary Tree (0) | 2021.01.21 |
LeetCode : 2. Add Two Numbers (0) | 2021.01.20 |
Comments