티스토리 뷰
dfs로 푼 문제
1,1 부터 n,n까지 검색하면서 1인곳부터 dfs를 시작한다 dfs를 시작후 깊이 들어가면서 1이라고 표시된곳을 0으로 고치고 1을 더해줌으로써 한 동의 몇개의 세대가 있는지를 체크한다.
알고리즘 자체는 오류가 없었으나 정적배열의 크기를 25*25로 잡고 int형으로 했더니 오류가 났던 문제 bool 26*26으로 수정했더니 잘 동작했다.
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<vector> #include<algorithm> using namespace std; bool W[26][26]; bool visited[26][26]; int diffx[4] = {1,0,-1,0}; int diffy[4] {0,1,0,-1}; vector<int> a; int go(int x, int y) { visited[x][y] = 1; W[x][y] = 0; int result = 1; for(int i=0; i<4; i++) { int nextX = x+diffx[i]; int nextY = y+diffy[i]; if(W[nextX][nextY] && !visited[nextX][nextY]) result += go(nextX,nextY); } return result; } int main() { int n; cin>>n; for(int i=1; i<=n; i++) for(int j=1; j<=n; j++) scanf("%1d",&W[i][j]); for(int i=1; i<=n; i++) { for(int j=1; j<=n; j++) { if(W[i][j]) { a.push_back(go(i,j)); } } } cout<<a.size()<<endl; sort(a.begin(),a.end()); for(int i=0; i<a.size(); i++) cout<<a[i]<<endl; return 0; } | cs |
'알고리즘' 카테고리의 다른 글
[DP/난이도 중하] 동전 2(다시한번 풀어보기) (0) | 2017.10.06 |
---|---|
[dp/난이도 하] 2156번 포도주 시식 (0) | 2017.10.06 |
백준 10757번 큰 수 A+B (0) | 2017.09.20 |
[백준/중하] 11053번 가장 긴 증가하는 부분 수열 (LIS,DP,다이나믹 프로그래밍) (1) | 2017.08.31 |
[백준/중상] 9935번 문자열 폭발 문제(스택+문자열 처리) (0) | 2017.08.31 |
댓글
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- reactdom
- storybook
- mobx
- useEffect
- typescript
- type alias
- reducer
- reflow
- Action
- await
- useRef
- javascript
- Babel
- Next.js
- return type
- design system
- react hooks
- react
- webpack
- computed
- es6
- rendering scope
- props
- promise
- state
- Polyfill
- async
- atomic design
- hydrate
- server side rendering
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함