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