티스토리 뷰
이항계수(메모이제이션)
#include <iostream>
#include <vector>
#include <queue>
#include <algorithm>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
int dy[21][21];
int DFS(int n, int r){
if(dy[n][r]>0) return dy[n][r];
if(n==r || r==0) return 1;
else return dy[n][r]=DFS(n-1, r-1)+DFS(n-1, r);
}
int main() {
//freopen("input.txt", "rt", stdin);
int n, m;
scanf("%d %d", &n, &m);
printf("%d\n", DFS(n, m));
return 0;
}
친구인가(Union&Find 자료구조)
#include <iostream>
#include <vector>
#include <queue>
#include <algorithm>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
int unf[1001];
int Find(int v){
if(v==unf[v]) return v;
else return unf[v]=Find(unf[v]);
}
void Union(int a, int b){
a=Find(a);
b=Find(b);
if(a!=b) unf[a]=b;
}
int main() {
int i;
//freopen("input.txt", "rt", stdin);
int n, m, a ,b;
scanf("%d %d", &n, &m);
for(i=1; i<=n; i++){
unf[i]=i;
}
for(i=1; i<=m; i++){
scanf("%d %d", &a, &b);
Union(a, b);
}
scanf("%d %d", &a, &b);
a=Find(a);
b=Find(b);
if(a==b) printf("YES");
else printf("NO");
return 0;
}
'lecture > algorithm - c++' 카테고리의 다른 글
[c++] 순열구하기(DFS: Depth First Search) (0) | 2021.01.22 |
---|---|
[c++] 원더랜드(Kruskal MST, Prim MST 알고리즘) (0) | 2021.01.17 |
[c++] 최대수입 스케줄 (0) | 2021.01.15 |
[c++] 최대힙, 최소힙 - priority_queue : 우선순위 큐 (0) | 2021.01.14 |
[c++] 송아지 찾기, 공주구하기(queue) (0) | 2021.01.14 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- server side rendering
- 스텍
- 교착상태
- 소프트웨어
- 운영체제
- stackframe
- 퀵정렬
- 알고리즘
- 자료구조
- 동적프로그래밍
- client side rendering
- 인접리스트
- 클래스
- BFS
- dfs
- 이진탐색
- C
- 병행프로세스
- Java
- 구조체
- javascript
- 입출력장치
- 세마포어
- 인접행렬
- react
- Stack
- 최단경로
- 재귀함수
- C++
- 배열
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함