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
- Unreal Engine 5
- 알고리즘
- XR Interaction Toolkit
- VR
- 유니티
- 백준
- 누적 합
- Team Fortress 2
- 시뮬레이션
- 정렬
- 자료구조
- 스택
- 유니온 파인드
- DFS
- 문자열
- 투 포인터
- c++
- 수학
- 트리
- 우선순위 큐
- 재귀
- 다익스트라
- 그래프
- BFS
- 구현
- 백트래킹
- 브루트포스
Archives
- Today
- Total
1일1알
백준 2193번 이친수 C++ 본문
맨 뒷자리가 0으로 끝날때와 1로 끝날때를 나눠서 생각했다.
0으로 끝날때는 다음에 1이나 0 아무거나 와도 되고, 1로 끝날때는 0만 와야한다.
dp[i][0]=dp[i-1][0]+dp[i-1][1]
dp[i][1]=dp[i-1][0]
이 점화식을 이용해서 문제를 풀었다.
#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);
int n;
cin >> n;
vector<vector<ll>> dp(n + 1, vector<ll>(2));
dp[1][0] = 0;
dp[1][1] = 1;
for (int i = 2; i <= n; i++) {
dp[i][0] = dp[i - 1][0] + dp[i - 1][1];
dp[i][1] = dp[i - 1][0];
}
cout << dp[n][0] + dp[n][1];
};
'알고리즘' 카테고리의 다른 글
백준 2644번 촌수계산 C++ (0) | 2022.05.29 |
---|---|
백준 1189번 컴백홈 C++ (0) | 2022.05.28 |
백준 17144번 미세먼지 안녕! C++ (0) | 2022.05.25 |
백준 1655번 가운데를 말해요 C++ (0) | 2022.05.24 |
백준 16235번 나무 재테크 C++ (0) | 2022.05.23 |