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 academy
- englishbook
- 알고리즘 문제
- 원서읽기
- 알고리즘
- PyQt
- swexpertacademy
- D4
- English
- 코테
- 직무면접
- 원서
- 쉬운 알고리즘 문제
- 프로그래머스
- BFS
- dfs
- 코테 준비
- 원서읽자
- sw expert
- nightroutine
- MySQL
- STUDYENGLISH
- 코딩테스트
- 완전탐색
- the midnight library
- readingbook
- SQL
- 삼성
- 코테 대비
Archives
- Today
- Total
목록쉬운 완전탐색 문제 (1)
시나브로
14502 연구소
전형적인 전체탐색 문제이다. Solution 재귀함수를 통해 벽을 세울 위치를 3개를 탐색한다. 3개가 탐색되면, 바이러스를 퍼지는 것을 시뮬레이션 돌려서 완전공간을 확인한다. Key Point 상관은 없지만, 시간을 줄이기 위해서 check함수로 통해 중복연산을 줄였다. 하지만, 이를 하지 않아도 성공할 수 있다. #include #include #include #include #include #include using namespace std; #define INF 10000000 typedef struct A { int i, j; }; vector map; int n, m; queue list; int wall_number = 0; int dx[] = { -1,0,1,0 }; int dy[] = {..
알고리즘/백준
2020. 6. 4. 12:37