Recent Posts
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 | 31 |
Tags
- 오블완
- taint
- tolerated
- Value too long for column
- terminal
- 자원부족
- 코루틴 빌더
- Spring Batch
- JanusWebRTCServer
- 겨울 부산
- preemption #
- JanusWebRTCGateway
- kotlin
- JanusWebRTC
- JanusGateway
- PytestPluginManager
- vfr video
- k8s #kubernetes #쿠버네티스
- table not found
- 깡돼후
- 티스토리챌린지
- 코루틴 컨텍스트
- 헥사고날아키텍처 #육각형아키텍처 #유스케이스
- PersistenceContext
- 달인막창
- VARCHAR (1)
- mp4fpsmod
- 개성국밥
- python
- pytest
Archives
너와 나의 스토리
[BOJ] 9095번: 1,2,3 더하기 본문
반응형
문제: https://www.acmicpc.net/problem/9095
문제 풀이:
n=3인 경우
3
= 1+1+1
= 1+2
= 2+1
= 3
이렇게 4가지 경우가 있다.
n=4인 경우
4
= 3+1 -> [n=3]인 경우에 1씩 다 더하면 된다.
= 2+2 -> [n=2]인 경우에 2씩 다 더하면 된다.
= 1+3 -> [n=1]인 경우에 3씩 다 더하면 된다.
그럼 총 7가지 경우의 수가 나온다.
즉, dp[n]=dp[n-1]+dp[n-2]+dp[n-3] 으로 점화식을 세울 수 있다.
소스 코드:
더보기
#include <iostream>
#include <cmath>
#include <algorithm>
#include <string>
#include <vector>
#include <stack>
#include <string.h>
using namespace std;
int dp[13],n,tc;
int main() {
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
dp[1] = 1;
dp[2] = 2;
dp[3] = 4;
cin >> tc;
for (int i = 0; i < tc; i++) {
cin >> n;
for (int j = 4; j <= n; j++) {
dp[j] = dp[j - 1] + dp[j - 2] + dp[j - 3];
}
cout << dp[n] << '\n';
}
return 0;
}
반응형
'Algorithm > Dynamic Programming' 카테고리의 다른 글
[Python 걸음마] LeetCode 368. Largest Divisible Subset 문제 풀이 (0) | 2024.07.06 |
---|---|
[BOJ] 5557 1학년 (0) | 2020.05.16 |
[BOJ] 2225 합분해 (0) | 2020.05.04 |
[BOJ] 2579 계단 오르기 (0) | 2020.03.25 |
(BOJ) 14863 서울에서 경산까지 (0) | 2019.07.16 |
Comments