BFS8 [BOJ 1012번] 유기농 배추(C++) www.acmicpc.net/problem/1012 1012번: 유기농 배추 차세대 영농인 한나는 강원도 고랭지에서 유기농 배추를 재배하기로 하였다. 농약을 쓰지 않고 배추를 재배하려면 배추를 해충으로부터 보호하는 것이 중요하기 때문에, 한나는 해충 방지에 � www.acmicpc.net #include int arr[52][52] = { 0 }; void dfs(int x, int y) { arr[y][x] = 0; if (arr[y][x+1] == 1) dfs(x + 1, y); if (arr[y][x - 1] == 1) dfs(x - 1, y); if (arr[y+1][x] == 1) dfs(x, y + 1); if (arr[y-1][x] == 1) dfs(x, y - 1); } int main(v.. 2020. 9. 21. [BOJ 2667번] 단지번호붙이기(C++) www.acmicpc.net/problem/2667 2667번: 단지번호붙이기 과 같이 정사각형 모양의 지도가 있다. 1은 집이 있는 곳을, 0은 집이 없는 곳을 나타낸다. 철수는 이 지도를 가지고 연결된 집들의 모임인 단지를 정의하고, 단지에 번호를 붙이려 한다. � www.acmicpc.net #include #include int arr[27][27] = { 0 }; int arr2[100] = { 0 }; int n = 0; void dfs(int x, int y) { arr[y][x] = 0; if (arr[y][x+1] == 1) dfs(x + 1, y); if (arr[y][x - 1] == 1) dfs(x - 1, y); if (arr[y+1][x] == 1) dfs(x, y + 1); i.. 2020. 9. 18. [BOJ 1260번] DFS와 BFS(C++) www.acmicpc.net/problem/1260 1260번: DFS와 BFS 첫째 줄에 정점의 개수 N(1 ≤ N ≤ 1,000), 간선의 개수 M(1 ≤ M ≤ 10,000), 탐색을 시작할 정점의 번호 V가 주어진다. 다음 M개의 줄에는 간선이 연결하는 두 정점의 번호가 주어진다. 어떤 두 정점 사 www.acmicpc.net #include #include #include #include using namespace std; #define MAX 1001 bool visit[MAX]; vector arr[MAX]; queue q; void DFS(int x) { visit[x] = true; printf("%d ", x); for (int i : arr[x]) { if (!visit[i]) { .. 2020. 9. 17. [BOJ 2606번] 바이러스(JAVA) www.acmicpc.net/problem/2606 2606번: 바이러스 첫째 줄에는 컴퓨터의 수가 주어진다. 컴퓨터의 수는 100 이하이고 각 컴퓨터에는 1번 부터 차례대로 번호가 매겨진다. 둘째 줄에는 네트워크 상에서 직접 연결되어 있는 컴퓨터 쌍의 수가 주어�� www.acmicpc.net import java.io.*; import java.util.*; import java.util.regex.Matcher; import java.util.regex.Pattern; class Main{ static BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); static BufferedWriter bw=new BufferedWr.. 2020. 9. 16. 이전 1 2 다음