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
- 다이나믹 프로그래밍
- 정렬
- 시뮬레이션
- 그리디 알고리즘
- ue5
- 다익스트라
- 재귀
- 문자열
- 그래프
- 자료구조
- c++
- XR Interaction Toolkit
- 백준
- 구현
- 백트래킹
- 스택
- 투 포인터
- 알고리즘
- 우선순위 큐
- 유니티
- Unreal Engine 5
- 수학
- 브루트포스
- VR
- 누적 합
- 유니온 파인드
- Team Fortress 2
- DFS
- 트리
- BFS
Archives
- Today
- Total
목록팰린드롬 파티션 C++ (1)
1일1알

1. 자기 자신도 팰린드롬 파티션이기때문에 dp배열을 1로 초기화한다. 2. 0 ~ i - 1 까지 i 에서 뺀 값이 짝수이면 2로 나눠서 양쪽으로 배치해서 팰린드롬 파티션으로 만들 수 있기 때문에 dp[(i - 뺀 값) / 2] 를 dp[i]에 더해준다. #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; using ll = long long; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); vector ..
알고리즘
2022. 2. 13. 12:08