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 |
Tags
- 그리디
- hackerrank
- dfs
- BOJ
- 구현
- C++
- BFS
- 다이나믹 프로그래밍
- koitp
- 소수
- 삼성 SDS 대학생 알고리즘 특강
- 맛집
- 에라토스테네스의 체
- 브루트포스
- 잠실
- SWEA
- PS
- Algorithm
- 삼성 기출
- 시뮬레이션
- 해커랭크
- 백준
- DP
- 동적 계획법
- 알고리즘
- 스택
- 백트래킹
- 완전탐색
- dynamic programming
- sw expert academy
Archives
- Today
- Total
펭로그
[C++] 백준 BOJ 8916 이진 검색 트리 본문
문제링크 : https://noj.am/8916
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | // BOJ 8916 이진 검색 트리 #include <bits/stdc++.h> using namespace std; long long comb(int n, int r) { // nCr r = n - r > r ? r : n - r; long long result = 1; for (int i = 0; i < r; i++) result *= n - i; for (int i = 2; i <= r; i++) result /= i; return result; } struct node { int value = -1; int lcnt = 0; // 좌측 자식 수 int rcnt = 0; // 우측 자식 수 int left = -1;// 좌측 자식 인덱스 int right = -1;// 우측 자식 인덱스 }; int main() { ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); freopen("../input.txt", "r", stdin); int tc; cin >> tc; while (tc--) { int num, input; vector<node> tree(1); cin >> num; while(num--) { int idx = 0; // 루트노드 인덱스 cin >> input; while (true) { // 빈노드이면 값 추가 if (tree[idx].value == -1) { tree[idx].value = input; break; // 입력 값이 부모노드보다 작을 경우 } else if (input < tree[idx].value) { // 자식노드 카운팅 tree[idx].lcnt++; // 좌측 자식이 존재하지 않을 경우 if (tree[idx].left == -1) { // 자식 추가 tree.push_back({}); tree[idx].left = tree.size() - 1; } idx = tree[idx].left; // 인덱스 저장 } else { tree[idx].rcnt++; if (tree[idx].right == -1) { tree.push_back({}); tree[idx].right = tree.size() - 1; } idx = tree[idx].right; } } } long long result = 1; for (node i : tree) result = (result * comb(i.lcnt + i.rcnt, i.lcnt)) % 9999991; cout << result << '\n'; } return 0; } | cs |
'Study > PS(Algorithm)' 카테고리의 다른 글
[C++] 백준 BOJ 13458 시험 감독 (0) | 2018.10.05 |
---|---|
[C++] 백준 BOJ 1991 트리 순회 (0) | 2018.10.03 |
[C++] 백준 BOJ 11403 경로 찾기 (0) | 2018.10.02 |
[C++] 백준 BOJ 1759 암호 만들기 (0) | 2018.10.01 |
[C++] 백준 BOJ 11726 2xn 타일링 / 11727 2xn 타일링 2 (0) | 2018.09.27 |
Comments