250x250
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
- English
- sw expert academy
- BFS
- sw expert
- 프로그래머스
- swexpertacademy
- 완전탐색
- 원서읽기
- PyQt
- 코테 준비
- 코테 대비
- MySQL
- 백준
- dfs
- 알고리즘 문제
- 코테
- 쉬운 알고리즘 문제
- nightroutine
- 삼성
- 알고리즘
- readingbook
- 코딩테스트
- 원서
- SQL
- 원서읽자
- STUDYENGLISH
- 직무면접
- englishbook
- D4
- the midnight library
Archives
- Today
- Total
목록17086 (1)
시나브로
17086. 아기 상어 2
#include #include using namespace std; int main(void) { freopen("inp.inp", "r", stdin); freopen("out.out", "w", stdout); int r, c; cin >> r >> c; int map[60][60] = { 0 }; int check[60][60] = { 0 }; queue q; for(int i=0;i> map[i][j]; if (map[i][j] == 1) { check[i][j] = 1; q.push({ i,j }); } } } int dx[] = { -1,-1,0,1,1,1,0,-1 }; int dy[] = { 0,1,1,1,0,-1,-1,-1 }; int max = 0; while (!q.empty()) {..
알고리즘/백준
2021. 10. 31. 00:08