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
- 우선순위 큐
- DFS
- c++
- 그래프
- 재귀
- 시뮬레이션
- 자료구조
- 트리
- 유니티
- 투 포인터
- XR Interaction Toolkit
- 스택
- BFS
- 브루트포스
- 문자열
- 정렬
- 구현
- 백트래킹
- 다이나믹 프로그래밍
- 그리디 알고리즘
- Team Fortress 2
- Unreal Engine 5
- 다익스트라
- 백준
- 수학
- 알고리즘
- VR
- 누적 합
- ue5
- 유니온 파인드
Archives
- Today
- Total
1일1알
백준 2407번 조합 C++ 본문
파이썬으로 하면 그냥 계산하면 되지만 C++에서는 int64 범위를 넘어가기 때문에 문자열로 처리해야 한다.
조합 계산은 파스칼의 삼각형을 이용해 메모이제이션과 재귀 방식을 이용하였고 수를 더할때는 문자열을 이용하였다.
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using ll = long long;
vector<vector<string>> cache;
string Combination(int n, int m) {
if (m == 0 || m == n)
return "1";
string& ret = cache[n][m];
if (ret != "")
return ret;
string left = Combination(n - 1, m - 1);
string right = Combination(n - 1, m);
int maxLength = max(left.length(), right.length());
if (left.length() < maxLength) {
int length = left.length();
for (int i = 0; i < maxLength - length; i++) {
left = " " + left;
}
}
if (right.length() < maxLength) {
int length = right.length();
for (int i = 0; i < maxLength - length; i++) {
right = " " + right;
}
}
stack<string> st;
int up = 0;
for (int i = maxLength - 1; i >= 0; i--) {
int num = up;
if (left[i] != ' ') {
num += left[i] - '0';
}
if (right[i] != ' ') {
num += right[i] - '0';
}
if (num >= 10) {
up = 1;
num -= 10;
}
else {
up = 0;
}
st.push(to_string(num));
}
if (up == 1)
st.push("1");
while (!st.empty()) {
ret += st.top();
st.pop();
}
return ret;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cache = vector<vector<string>>{ 101,vector<string>(101,"") };
int n, m;
cin >> n >> m;
cout << Combination(n, m);
};
'알고리즘' 카테고리의 다른 글
백준 1991번 트리 순회 C++ (0) | 2022.06.12 |
---|---|
백준 1629번 곱셈 C++ (0) | 2022.06.11 |
백준 1043번 거짓말 C++ (0) | 2022.06.09 |
백준 2504번 괄호의 값 C++ (0) | 2022.06.08 |
백준 1715번 카드 정렬하기 C++ (0) | 2022.06.07 |