해결된 질문
작성
·
247
·
수정됨
0
큰돌님 안녕하십니까?
해당 문제 2636 치즈 문제가 떠올라서 DFS로 풀이를 해서 통과했는데요, 해설에는 BFS 하셔서 질문 올립니다.
해당 문제 DFS풀이는 어떻다고 생각하시나요?
왜냐하면 이 다음 문제인 3-K 3197 백조의 호수는 이래 풀면 시간 초과 뜨더라구요!
제가 짠 코드는 2636 치즈 참고해서 아래와 같습니다.
http://boj.kr/cc3ec76201724d44a5c35f955a9e41cc
#include <bits/stdc++.h>
using namespace std;
////////////bfs dfs 용//////////
char a[302][302];
int visited[302][302];
int m,n;
int aa,bb;
int c,d;
string oneline;
const int dy[] = {-1, 0, 1, 0};
const int dx[] = {0, 1, 0, -1};
vector<pair<int,int>> temp;
int ret;
bool dfs(int y, int x)
{
bool tempbool=false;
visited[y][x]=1;
for(int i = 0; i< 4;i++)
{
int ny = y + dy[i];
int nx = x + dx[i];
if( ny<0|| ny>=m || nx < 0 ||nx>=n) continue;
if(visited[ny][nx]==1) continue;
if(a[ny][nx]=='#')
{
return true;
}
if(a[ny][nx]== '1')
{
temp.push_back({ny,nx});
continue;
}
else
{
tempbool = dfs(ny,nx);
if(tempbool) return tempbool;
}
}
return tempbool;
}
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin>>m>>n;
cin>>aa>>bb>>c>>d;
for(int i = 0 ; i< m ; i++)
{
cin>>oneline;
for(int j=0; j<n;j++)
{
a[i][j]= oneline[j];
}
}
while(true)
{
ret++;
fill(&visited[0][0], &visited[0][0]+302*302,0);
bool tempbool= dfs(aa-1,bb-1);
if(tempbool) break;
while(temp.size())
{
pair<int,int> aaa = temp[temp.size()-1];
temp.pop_back();
a[aaa.first][aaa.second] = '0' ;
}
}
cout<<ret;
return 0;
}
답변 미리 감사합니다.
답변 1
0
안녕하세요 ㅎㅎ
해당 문제 2636 치즈 문제가 떠올라서 DFS로 풀이를 해서 통과했는데요, 해설에는 BFS 하셔서 질문 올립니다.
해당 문제 DFS풀이는 어떻다고 생각하시나요?
>> mh님 잘 하시네요 ㅎㅎ
잘하셨지만,
while(true)
{
ret++;
fill(&visited[0][0], &visited[0][0]+302*302,0);
이부분에서 불필요한 로직이 발생되긴 합니다.
만약 BFS + queue2개로 하게 되면
방문한 정점을 사실 다시 방문할 필요가 없는데 이렇게 해버리면 다시 처음부터 방문하게 되니까요.
왜냐하면 이 다음 문제인 3-K 3197 백조의 호수는 이래 풀면 시간 초과 뜨더라구요!
>> 아 그것은.. 백조의 호수 자체가 시간초과가 엄청 타이트해서 그런것도 있고 불필요한 로직이 있어서 그렇습니다.
또 질문 있으시면 언제든지 질문 부탁드립니다.
좋은 수강평과 별점 5점은 제게 큰 힘이 됩니다. :)
감사합니다.
강사 큰돌 올림.