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
- sw expert
- nightroutine
- 쉬운 알고리즘 문제
- 완전탐색
- PyQt
- dfs
- STUDYENGLISH
- sw expert academy
- 직무면접
- 코테 대비
- 코테 준비
- swexpertacademy
- 원서읽기
- 원서읽자
- SQL
- 코딩테스트
- BFS
- D4
- 백준
- 삼성
- MySQL
- 프로그래머스
- English
- englishbook
- 알고리즘
- readingbook
- the midnight library
- 코테
- 원서
- 알고리즘 문제
Archives
- Today
- Total
목록아기상어2 (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