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