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
- 그리디 알고리즘
- Team Fortress 2
- 브루트포스
- 백준
- 유니티
- 재귀
- 시뮬레이션
- 누적 합
- 트리
- BFS
- 유니온 파인드
- 백트래킹
- 알고리즘
- 다익스트라
- c++
- 다이나믹 프로그래밍
- 정렬
- 스택
- VR
- ue5
- Unreal Engine 5
- 구현
- 그래프
- 자료구조
- 문자열
- 우선순위 큐
- DFS
- XR Interaction Toolkit
- 투 포인터
- 수학
Archives
- Today
- Total
1일1알
백준 2705번 팰린드롬 파티션 C++ 본문
1. 자기 자신도 팰린드롬 파티션이기때문에 dp배열을 1로 초기화한다.
2. 0 ~ i - 1 까지 i 에서 뺀 값이 짝수이면 2로 나눠서 양쪽으로 배치해서 팰린드롬 파티션으로 만들 수 있기 때문에
dp[(i - 뺀 값) / 2] 를 dp[i]에 더해준다.
#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 <unordered_map>
#include <unordered_set>
#include <iomanip>
using namespace std;
using ll = long long;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
vector<ll> dp(1001, 1);
for (int i = 2; i <= 1000; i++) {
for (int j = 0; j < i; j++) {
if ((i - j) % 2 != 0) continue;
dp[i] += dp[(i - j) / 2];
}
}
int t;
cin >> t;
while (t--) {
int n;
cin >> n;
cout << dp[n] << "\n";
}
};
'알고리즘' 카테고리의 다른 글
백준 2296번 건물짓기 C++ (0) | 2022.02.15 |
---|---|
백준 2418번 단어 격자 C++ (0) | 2022.02.14 |
백준 3258번 컴포트 C++ (0) | 2022.02.12 |
백준 2082번 시계 C++ (0) | 2022.02.11 |
백준 1730번 판화 C++ (0) | 2022.02.10 |