반응형
250x250
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
- 프래그먼트
- 우선순위큐
- 카이스트맛집
- nodeJS
- 안드로이드스튜디오
- 카이스트
- BFS
- glfw
- DP
- 백준
- 타입스크립트
- 자바스크립트
- 컴퓨터그래픽스
- node.js
- 몰입캠프후기
- computergraphics
- 대전맛집
- 자바
- 어은동맛집
- 궁동
- 위상정렬
- html
- 알고리즘
- 후기
- 분리집합
- 리사이클러뷰
- 앱개발
- 몰입캠프
- MySQL
- 프로그래머스
Archives
- Today
- Total
소근소근
[프로그래머스 - 단어 변환] BFS C++ 본문
728x90
반응형
SMALL
level3 지만 bfs로 간단하게 해결할 수 있는 문제였다. 오히려 level2보다 더 쉬운거 같기도 하고 ,.?
dog -> dot
처럼 한 char만 바꿀 수 있다. 주어진 words의 문자들의 길이는 모두 동일하다고 조건이 주어졌기 때문에 단순히 두 문자열을 앞에서부터 비교하여 다른 char가 하나만 있을때 변환이 가능하도록 한다.
#include <string>
#include <vector>
#include <queue>
#include <algorithm>
#include <string>
#include <map>
#include <string.h>
using namespace std;
bool able = false;
queue <pair<string , int>> q;
map <string, int> visit;
int compchar(string a, string b){
int len = a.length();
int cnt =0;
for(int i=0;i<len;i++){
if(a[i] != b[i])
cnt++;
}
if(cnt == 1) return 1;
else return 0;
}
int solution(string begin, string target, vector<string> words) {
for(int i=0;i<words.size();i++){
visit[words[i]] = 0;
if(words[i] == target){
able = true;
}
}
if(!able){
return 0;
}
//words에 없다면 변환 불가능
q.push({begin,0});
visit[begin] = 1;
while(!q.empty()){
string cur = q.front().first;
int level = q.front().second;
q.pop();
if(cur == target){
return level;
}
for(int i=0;i<words.size();i++){
string next = words[i];
if(visit[next]==0 && compchar(cur,next) == 1){
visit[next] =1;
q.push({next, level+1});
}
}
}
}
queue에는 <string, int> pair을 넣어 현재 변환된 문자열과, 몇단계를 거쳤는지를 저장한다.
보통 bfs문제 풀이에서는 정수로 노드가 주어져서 visit을 배열로 선언했었다. (visit : 이미 방문한 문자열인지 확인하기 위해 필요)
이 문제에선 문자열을 처리하기 위해 map<string,int> 로 방문 여부를 저장했다.
728x90
반응형
LIST
'Algorithm' 카테고리의 다른 글
[백준 BOJ 2573 glod4 - 빙산] DFS C++ (0) | 2022.01.13 |
---|---|
[백준 BOJ 1937 glod3 - 욕심쟁이 판다] DFS(?) , DP C++ (0) | 2022.01.12 |
[프로그래머스 - 네트워크] BFS, 분리집합(disjoint set) Union & Find C++ (0) | 2022.01.08 |
[프로그래머스 - 타겟 넘버] BFS C++ (0) | 2022.01.08 |
[프로그래머스 - 베스트앨범] 해시 C++ (0) | 2022.01.06 |