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
- PyQt
- 완전탐색
- dfs
- nightroutine
- English
- 원서읽기
- BFS
- 알고리즘
- 백준
- SQL
- 코테
- 원서읽자
- MySQL
- 직무면접
- 코테 대비
- englishbook
- readingbook
- 프로그래머스
- 원서
- swexpertacademy
- the midnight library
- STUDYENGLISH
- 코딩테스트
- sw expert academy
- 쉬운 알고리즘 문제
- 알고리즘 문제
- 코테 준비
- 삼성
- D4
- sw expert
Archives
- Today
- Total
목록17142 (1)
시나브로
17142. 연구소3
고려사항 1. 비활성화 세포가 활성화될 수 있다는 것을 인지하자 => 마지막에 비활성화세포가 활성세포가 되도, 큐에 넣지 않거나 시간 카운팅을 하면 안 되다. 2. 벽에 막혀서 세포번식이 안되는 경우를 생각하자. #include #include #include using namespace std; typedef struct m { int i; int j; }; typedef struct q { int i; int j; int t; }; int maxs = 100000; int N, M; int map[55][55]; int emptys = 0; int dx[] = { 0,1,0,-1 }; int dy[] = { -1,0,1,0 }; int simul(vector list) { int make_map[55..
알고리즘/백준
2020. 10. 17. 22:57