일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- sw expert
- SQL
- the midnight library
- nightroutine
- MySQL
- englishbook
- readingbook
- dfs
- sw expert academy
- 완전탐색
- 직무면접
- 알고리즘
- 코테
- 원서
- 원서읽자
- 코테 대비
- BFS
- STUDYENGLISH
- 백준
- PyQt
- swexpertacademy
- 원서읽기
- 프로그래머스
- English
- 알고리즘 문제
- D4
- 쉬운 알고리즘 문제
- 코테 준비
- 삼성
- 코딩테스트
- Today
- Total
목록알고리즘 (105)
시나브로
#include #include #include #include #include using namespace std; int main() { int a, b; cin >> a >> b; if (a > b) b--; else b++; for (int i = a; i != b;) { for (int j = 1; j < 10; j++) { cout
#include #include #include #include #include using namespace std; int main() { for (;;) { //문제에서 제대로 출력될 때까지 계속 입력을 받아 처리해야된다. int a, b; cin >> a >> b; if (a > 9 || b > 9 || a < 2 || b < 2) { // 범위를 넘었을 때 cout
41개에 오답이 뜬다면, visit 체크를 해보길 바랍니다... 등산로에 포함된 길을 깍으면 안되기 때문입니다. #include #include #include #include using namespace std; typedef struct node { int i; int j; }; int dx[] = { 0,-1,0,1 }; int dy[] = { 1,0,-1,0 }; int max_length = 0; void search(vector map,node point,int possible,int count,vector visit) { for (int k = 0; k = 0 && point.i + dx[k] < map.size() && point...
고려사항 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..