728x90

Baekjoon 10

백준 #1012 [c++]

#include #include #include #include using namespace std; int farm[51][51] = { 0 }; // 땅으로 초기화 bool visit[51][51] = { false }; // 방문 false로 초기화 int t, m, n, k; // 테스트케이스 개수, 가로길이, 세로길이, 배추개수 // 상하 좌우 int dir_x[] = { 0,0,-1,1 }; int dir_y[] = { 1,-1,0,0 }; void bfs(int y, int x) { queue q; q.push(make_pair(y, x)); visit[y][x] = true; // 좌표에 해당하는 곳 방문 표시 // 큐가 빌 때까지 while (!q.empty()) { auto node =..

Baekjoon 2021.08.01

백준 #2606 [c++]

// bfs #include #include #include #include using namespace std; int n, m; // n : 정점의 개수, m : 이어져있는 노드의 수 vector visit; // 방문한 노드를 표시하기 위함 vector node; // vector 배열을 받기 위함 int bfs(int start) { int count = 0; queue q; q.push(start); // 시작점 큐에 넣고 visit[start] = true; // 시작점 방문표시 while (!q.empty()) { // 큐가 비어있지 않으면 int x = q.front(); // 큐의 front값 x에 저장 q.pop(); // 큐에서 front를 pop count++; for (int i ..

Baekjoon 2021.07.22

백준 #2667 [c++]

// 풀이 #include #include #include #include using namespace std; bool visited[25][25] = { false }; int map[25][25]; // 상하좌우 int dir_x[] = { 0,0,-1,1 }; int dir_y[] = { 1,-1,0,0 }; int n = 0; // 지도의 크기 int bfs(int y, int x) { queue q; q.push(make_pair(y, x)); visited[y][x] = true; int count = 1; // 이미 1인 노드를 선택했으므로 count는 1부터 시작, 단지의 집 갯수 // 큐가 빌 때 까지 while (!q.empty()) { auto node = q.front(); q.p..

Baekjoon 2021.07.22