프로그래밍 문제68 [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. 백준 / 10818 / 최소, 최대 / C / * #include int main(void) { int a, n; int max = -1000000; int min = 1000000; scanf("%d", &n); for (int i = 0; i = max)max = a; if (a 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. 백준 15552/빠른 A+B/C #include int main(void) { int a, b, n; scanf("%d", &n); for (int i = 0; i < n; i++) { scanf("%d%d", &a, &b); printf("%d\n", a + b); } return 0; } 문제 : 본격적으로 for문 문제를 풀기 전에 주의해야 할 점이 있다. 입출력 방식이 느리면 여러 줄을 입력받거나 출력할 때 시간초과가 날 수 있다는 점이다. C++을 사용하고 있고 cin/cout을 사용하고자 한다면, cin.tie(NULL)과 sync_with_stdio(false)를 둘 다 적용해 주고, endl 대신 개행문자(\n)를 쓰자. 단, 이렇게 하면 더 이상 scanf/printf/puts/getchar/putchar 등 C의 입출.. 2020. 9. 17. 이전 1 ··· 3 4 5 6 7 8 9 ··· 17 다음