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 | 31 |
Tags
- the midnight library
- MySQL
- 직무면접
- englishbook
- 원서읽자
- 알고리즘
- 코딩테스트
- 원서읽기
- 원서
- D4
- 삼성
- sw expert academy
- 백준
- dfs
- PyQt
- SQL
- readingbook
- 코테 준비
- nightroutine
- 완전탐색
- 알고리즘 문제
- STUDYENGLISH
- BFS
- English
- 프로그래머스
- 코테
- 쉬운 알고리즘 문제
- 코테 대비
- swexpertacademy
- sw expert
Archives
- Today
- Total
목록15683 (1)
시나브로
15683. 감시
#include #include #include using namespace std; typedef struct node { int i; int j; }; vector list = { {0,0,0,0},{0,1,0,0},{0,1,0,1},{1,1,0,0}, {1,1,0,1},{1,1,1,1} }; int dx[] = {-1,0,1,0 }; int dy[] = {0,1,0,-1 }; int N, M; int max_check; vector shift(vector i) { vector k; k.push_back(i[3]); k.push_back(i[0]); k.push_back(i[1]); k.push_back(i[2]); return k; } void dfs(vector map, int check, que..
알고리즘/백준
2020. 10. 15. 21:07