티스토리 뷰
기본 DFS문제 1인곳부터 dfs를 시작하되 방문한곳은 0으로 바꿔놓는다.
dfs를 시작하는곳에서 count를 증가시켜준다.
소스코드
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 | #include <iostream> #include <algorithm> #include <vector> using namespace std; vector<int> result; bool input[51][51]; int n,m; int diffx[8] = {-1,0,1,-1,1,-1,0,1}; int diffy[8] = {1,1,1,0,0,-1,-1,-1}; void dfs(int x,int y) { if(x<1 || x>n || y<1 || y>m)return; if(input[x][y] == 0) return; input[x][y] = 0; for(int i=0; i<8; i++) { int nextX = x + diffx[i]; int nextY = y + diffy[i]; dfs(nextX,nextY); } return; } int main() { while(1) { cin>>m>>n; int count = 0; if(m==0&& n==0) break; for(int i=1; i<=n; i++) for(int j=1; j<=m; j++) cin>>input[i][j]; for(int i=1; i<=n; i++) { for(int j=1; j<=m; j++) { if(input[i][j]) { dfs(i,j); count++; } } } result.push_back(count); } for(int i=0; i<result.size(); i++) cout<<result[i]<<endl; return 0; } | cs |
'알고리즘' 카테고리의 다른 글
[DP/LIS] 11053 가장 긴 증가하는 부분 수열 (0) | 2017.12.28 |
---|---|
플로이드 알고리즘(All pair shortest path) 자바로 구현 (0) | 2017.11.28 |
[카카오/신입공채] 다트게임 (난이도 하 정답률 73퍼) (1) | 2017.10.09 |
[카카오/신입공채] 1번 비밀지도(정답률81%) (0) | 2017.10.08 |
[DP/중~중하] 9465번 스티커 (0) | 2017.10.08 |
댓글
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Babel
- storybook
- react
- javascript
- async
- Polyfill
- useRef
- Action
- react hooks
- props
- type alias
- server side rendering
- webpack
- reflow
- typescript
- useEffect
- hydrate
- await
- mobx
- promise
- atomic design
- design system
- return type
- es6
- reactdom
- computed
- rendering scope
- Next.js
- state
- reducer
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함