일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 문자열 압축
- 영상 프레임 추출
- 마우스 따라다니기
- 강의실2
- 자료구조 목차
- 2020 KAKAO BLIND RECRUITMENT
- c#
- 원형
- 18249
- 수 만들기
- SWEA
- 3273
- 단어 수학
- 토글 그룹
- AI Hub
- 회의실 배정
- 우분투
- 탄막
- 알고리즘
- MySQL
- 탄막 이동
- 탄막 스킬 범위
- 유니티
- 백준
- 걷는건귀찮아
- 윈도우
- mysqld.sock
- 알고리즘 목차
- 그리디알고리즘
- 3344
- Today
- Total
목록분류 전체보기 (176)
와이유스토리
중복 없는 숫자 (사이클 크기 - 1)의 합 사이클 내에서 무조건 한 칸씩 이동 Union-Find or Set 이용 가능 // 횟수만 체크 int minimumSwaps(vector arr) { int answer = 0; vector visited(arr.size(), false); for(int i=0; i
https://www.acmicpc.net/problem/1005 1005번: ACM Craft첫째 줄에는 테스트케이스의 개수 T가 주어진다. 각 테스트 케이스는 다음과 같이 주어진다. 첫째 줄에 건물의 개수 N과 건물간의 건설순서 규칙의 총 개수 K이 주어진다. (건물의 번호는 1번부www.acmicpc.net최대 중 최소X, 전제조건#include #include #include using namespace std;int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); int t; cin >> t; int n, k, w; int d[1001]; for(int i=0; i> n >> k; for(i..
1. VSCode에서 Workspace 열기 Visual Studio에서 생성한 프로젝트 폴더를 VSCode에서 Workspace 지정 2. C/C++ Extension 설치 Extension에 들어가 C/C++를 설치한다. 3. 환경변수 설정 환경변수 Path에 아래 경로를 추가한다. 위 경로는 VsDevCmd.bat, 아래 경로는 cl.exe를 나타낸다. 버전은 자신의 컴퓨터에 설치된 버전으로 수정해서 사용하면 된다. Visual Studio를 설치할 때, Build Tools를 설치했다면 Community 대신 사용 가능하다. C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\Tools C:\Program Files (x86..
https://school.programmers.co.kr/learn/courses/30/lessons/214288 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 자연수의 분할 P(n,k)
Link https://app.datascientist.fr/learn/learning/57/60/166/762 DataScientist.fr : La plateforme la plus interactive pour apprendre la data science, l'intelligence artificielle et le cloud app.datascientist.fr CRISP-DM Process 1. Opportunity Assessment & Business Understanding 2. Data Understanding & Acquisition 3. Data Preparation & Cleaning & Transformation 4. Modeling 5. Evaluation & Residuals..
Link https://app.datascientist.fr/learn/learning/57/58/168/761 DataScientist.fr : La plateforme la plus interactive pour apprendre la data science, l'intelligence artificielle et le cloud app.datascientist.fr 라이브러리 종류 - Numpy : List - Pandas : Dictionary NumPy - Dimension : 행렬 차원 - 행렬 생성 import numpy as np arr1 = np.array(862) # Create a 0-D array with value 862 arr2 = np.array([1,2,3,4,5]) # Cr..
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; }