백준 9095번 1,2,3 더하기 문제 풀이
https://www.acmicpc.net/problem/9095
1이 먼저올 때
2가 먼저올 때
3이 먼저올 때
의 각각의 경우의 수를 더해준다
#include<bits/stdc++.h>
using namespace std;
int dp[1000000];
int Plus(int n) {
dp[1] = 1;
dp[2] = 2;
dp[3] = 4;
for (int i = 4; i <= n; i++) {
dp[i] = dp[i - 1] + dp[i - 2] + dp[i - 3];
}
return dp[n];
}
int main() {
ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);
int t, n;
cin >> t;
for (int i = 0; i < t; i++) {
cin >> n;
cout << Plus(n) << '\n';
}
return 0;
}
Author And Source
이 문제에 관하여(백준 9095번 1,2,3 더하기 문제 풀이), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@uheejoon/백준-9095번-문제-풀이저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)