일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 그리디알고리즘
- 3344
- 걷는건귀찮아
- 탄막 이동
- 알고리즘 목차
- 강의실2
- 우분투
- 단어 수학
- 마우스 따라다니기
- 토글 그룹
- 윈도우
- 회의실 배정
- 18249
- 원형
- 유니티
- 자료구조 목차
- mysqld.sock
- 2020 KAKAO BLIND RECRUITMENT
- 알고리즘
- 탄막
- c#
- SWEA
- 백준
- 탄막 스킬 범위
- 문자열 압축
- MySQL
- 수 만들기
- AI Hub
- 영상 프레임 추출
- 3273
- Today
- Total
목록코딩테스트 (137)
와이유스토리
https://school.programmers.co.kr/learn/courses/30/lessons/1836 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr #include #include #include #include using namespace std; struct pos { int x, y; }; int M, N; vector Board; bool bfs(char alp, pos p) { int dx[4] = {0, 1, 0, -1}; // 상우하좌 int dy[4] = {-1, 0, 1, 0}; int turn[M][N]; // 방향 꺾기 최소..
https://school.programmers.co.kr/learn/courses/30/lessons/42895 #include using namespace std; int n, num, answer; void dfs(int depth, int val) { if (val == num) { answer = min(answer, depth); return; } if (depth >= 8) return; int temp = 0; for(int i=0; i 8)? -1 : answer; }
https://www.acmicpc.net/problem/14500 14500번: 테트로미노 폴리오미노란 크기가 1×1인 정사각형을 여러 개 이어서 붙인 도형이며, 다음과 같은 조건을 만족해야 한다. 정사각형은 서로 겹치면 안 된다. 도형은 모두 연결되어 있어야 한다. 정사각형의 변 www.acmicpc.net #include #include using namespace std; int n, m, answer; int dx[4] = { 0, 0, -1, 1 }; int dy[4] = { -1, 1, 0, 0 }; int arr[500][500]; bool visited[500][500]; void dfs(int depth, int x, int y, int sum) { if ((x < 0) || (y < ..
https://www.acmicpc.net/problem/20057 20057번: 마법사 상어와 토네이도마법사 상어가 토네이도를 배웠고, 오늘은 토네이도를 크기가 N×N인 격자로 나누어진 모래밭에서 연습하려고 한다. 위치 (r, c)는 격자의 r행 c열을 의미하고, A[r][c]는 (r, c)에 있는 모래의 양을www.acmicpc.net#include using namespace std;int n;int A[500][500];float wind[4][5][5] = { { {0, 0, 0.02, 0, 0}, {0, 0.1, 0.07, 0.01, 0}, {0.05, 0, 0, 0, 0}, {0, 0.1, 0.07, 0.01, 0}, {0, 0, 0.02, 0, 0} } , { {0, 0, 0.02, 0, ..
https://school.programmers.co.kr/learn/courses/30/lessons/84021 #include #include using namespace std; int N, answer; int dx[4] = {1, 0, -1, 0}; // 우하좌상 int dy[4] = {0, 1, 0, -1}; vector Board, Table; bool check(int bx, int by, int tx, int ty, int k) { // k 회전 차이 vector B = Board; vector T = Table; int cnt = 0; queue q; q.push({bx, by, tx, ty}); while(!q.empty()) { vector v = q.front(); q.pop();..
https://school.programmers.co.kr/learn/courses/30/lessons/17678 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr #include #include #include using namespace std; int timeToInt(string time) { return stoi(time.substr(0,2)) * 60 + stoi(time.substr(3,2)); } string intToTime(int time) { return to_string(time/60/10) + to_string(time/60%10) +..
https://school.programmers.co.kr/learn/courses/30/lessons/42892 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr#include #include using namespace std;int n;vector> answer(2);struct Node { int x, y, key; Node* left; Node* right; Node(int x, int y, int key) : x(x), y(y), key(key), left(NULL), right(NULL) {}};bool comp(vect..
void preorder(Node* root) { if (root == nullptr) return; cout key key; preorder(root->left); preorder(root->right);}void inorder(Node* root) { if (root == nullptr) return; inorder(root->left); cout key key; inorder(root->right);}void postorder(Node* root) { if (root == nullptr) return; postorder(root->left); postorder(root->right); cout key key;}void levelorder(Node* root) { if (root == nullptr)..