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

맨 뒷자리가 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 #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..
알고리즘
2022. 5. 26. 12:48