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
- 스마일게이트
- 식단
- c++
- 중반부
- LIS #Algorithm #요소추적
- 서버개발캠프
- 소감
- Smilegate
- 1편
- BFS
- 삼성 #코테 #2020상반기 #c++
- 코테
- Union-find
- BaekJoon
- 유니온파인드
- Algorithm
- IBK기업은행 #기업은행 #디지털 #직무 #정리
- 카카오인턴
- 알고리즘
- 코딩테스트
- 투포인터
- 보석쇼핑
- 카카오
- 백준
Archives
- Today
- Total
짱아의 개발 기록장
LeetCode : 72. Edit Distance 본문
반응형
LCS와 매우 유사한 유형이다.. LCS와 Edit Distance모두 2차원 DP를 이용한다? 그리고 전체적인 로직 부분이 매우 유사합니다.
다만! LCS는 공통된 부분을 찾으면 +1을 해나가는 로직이지만,
Edit Distance는 공통된 부분을 찾으면 그냥 놔두고 공통되지 않은 부분이 나오면 오히려 insert, delete, replace작업을 해주어야 하기 때문에 +1만큼 더해준다.
사실 처음에는 어떻게 풀지 감이 오지 않아서...ㅎㅎ
유투브를 참고해서 풀었다.
www.youtube.com/watch?v=b6AGUjqIPsA&feature=youtu.be
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
|
class Solution {
public:
int minDistance(string word1, string word2) {
int n = word1.size();
int m = word2.size();
int dp[502][502] = {0, };
for(int i=1; i<=n; i++){
dp[i][0] = i;
}
for(int j=1; j<=m; j++){
dp[0][j] = j;
}
for(int i=1; i<=n; i++){
for(int j=1; j<=m; j++){
if(word1[i-1]==word2[j-1]){
dp[i][j] = dp[i-1][j-1];
}else{ // insert, delete, replace
dp[i][j] = min(dp[i-1][j-1], min(dp[i-1][j], dp[i][j-1]))+1;
}
}
}
return dp[n][m];
}
};
|
cs |
반응형
'Algorithm > LeetCode' 카테고리의 다른 글
LeetCode : 131. Palindrome Partitioning (Backtracking + String) (0) | 2021.02.16 |
---|---|
LeetCode : 132. Palindrome Partitioning II (BFS+String) (0) | 2021.02.16 |
LeetCode : 202. Happy Number (0) | 2021.02.04 |
LeetCode : 73. Set Matrix Zeroes (0) | 2021.02.03 |
LeetCode : 57. Insert Interval (0) | 2021.02.02 |
Comments