반응형
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
- BFS
- 물채우기
- Docker
- 백트래킹
- 소프티어
- 연결요소
- compose
- 백준
- 성적평가
- BOJ
- softeer
- 퇴사통보
- OFFSET
- boj #19237 #어른 상어
- 처우협의
- Kafka
- 파라메트릭
- 6987
- msSQL
- 매개변수탐색
- 기술면접
- 경력
- 처우산정
- @P0
- dfs
- 오퍼레터
- upper_bound
- incr
- 13908
- 이분탐색
Archives
- Today
- Total
기술 블로그
4677번 Oil Deposits 본문
728x90
반응형
https://www.acmicpc.net/problem/4677
처음에 영어 해석을 이상하게 하는 바람에
처음 제출할 때, 틀렸다 떴다.
나는 처음에
@가 아래로 내려온 다음, 연결 요소의 개수를 구하는 것인 줄 알았다.
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | #include <iostream> #include <queue> #include <stack> #include <cstdio> #include <vector> #include <cstring> #include <string> #include <math.h> #include <algorithm> #include <map> #include <set> #include <sstream> #include <tuple> #pragma warning(disable:4996) #pragma comment(linker, "/STACK:336777216") using namespace std; int R = 0, C = 0; int dy[8] = { 0, 1, 1, 1, 0, -1, -1, -1 }; int dx[8] = { 1, 1, 0, -1, -1, -1, 0, 1 }; char Map[103][103]; bool visit[103][103] = { false, }; int DFS(int r, int c) { visit[r][c] = true; for (int i = 0; i < 8; i++) { int y = r + dy[i]; int x = c + dx[i]; if (y < 0 || y >= R || x < 0 || x >= C || visit[y][x] || Map[y][x] == '*') continue; DFS(y, x); } return 1; } int main(void) { while (1) { scanf("%d %d", &R, &C); if (R == 0) break; memset(visit, false, sizeof(visit)); for (int i = 0; i < R; i++) scanf("%s", Map[i]); int ans = 0; for (int i = 0; i < R; i++) for (int j = 0; j < C; j++) if (Map[i][j] == '@' && !visit[i][j]) ans += DFS(i, j); printf("%d\n", ans); } return 0; } | cs |
728x90
반응형
'알고리즘 문제 > BOJ' 카테고리의 다른 글
2292번 벌집 (0) | 2019.04.18 |
---|---|
17140번 이차원 배열과 연산 (0) | 2019.04.18 |
17144번 미세먼지 안녕! (0) | 2019.04.17 |
16943번 숫자 재배치 (0) | 2019.04.16 |
16987번 계란으로 계란치기 (4) | 2019.04.16 |