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 |
Tags
- 삼성 SDS 대학생 알고리즘 특강
- sw expert academy
- 그리디
- hackerrank
- koitp
- 동적 계획법
- 삼성 기출
- SWEA
- 맛집
- PS
- 브루트포스
- 다이나믹 프로그래밍
- 시뮬레이션
- 구현
- 완전탐색
- 잠실
- dynamic programming
- 알고리즘
- 백트래킹
- C++
- Algorithm
- 에라토스테네스의 체
- 소수
- BOJ
- 해커랭크
- 스택
- 백준
- dfs
- DP
- BFS
Archives
- Today
- Total
목록Connected Cells in a Grid (1)
펭로그
[C++] HackerRank 해커랭크 Connected Cells in a Grid
문제링크 : https://www.hackerrank.com/challenges/connected-cell-in-a-grid 123456789101112131415161718192021222324252627282930313233343536373839404142#include using namespace std; int mat[10][10];int visited[10][10] = {0,};int max_size = 0; int find(int row, int col){ if(!mat[row][col] || visited[row][col]) return 0; visited[row][col] = 1; int size = 1; int x = row; int y = col; for(int i = -1; i n; ..
Study/PS(Algorithm)
2018. 3. 16. 16:57