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
- 코루틴 컨텍스트
- VARCHAR (1)
- 오블완
- JanusGateway
- JanusWebRTCServer
- JanusWebRTC
- JanusWebRTCGateway
- mp4fpsmod
- PytestPluginManager
- taint
- 티스토리챌린지
- 겨울 부산
- terminal
- 달인막창
- Value too long for column
- preemption #
- 자원부족
- pytest
- kotlin
- tolerated
- table not found
- PersistenceContext
- 헥사고날아키텍처 #육각형아키텍처 #유스케이스
- k8s #kubernetes #쿠버네티스
- Spring Batch
- python
- 코루틴 빌더
- vfr video
- 깡돼후
- 개성국밥
Archives
너와 나의 스토리
(BOJ) 14697 방 배정하기 본문
반응형
문제: https://www.acmicpc.net/problem/14697
소스 코드:
int n,arr[3];
bool dp[301];
int main() {
ios::sync_with_stdio(false);
cin.tie(NULL), cout.tie(NULL);
for (int i = 0; i < 3; i++) cin >> arr[i];
cin >> n;
dp[n] = true;
for (int i = n; i > 0; i--) {
if (!dp[i]) continue;
for (int j = 0; j < 3; j++) {
if (i - arr[j] >= 0) dp[i - arr[j]] = true;
}
}
if (dp[0]) cout << "1\n";
else cout << "0\n";
return 0;
}
반응형
'Algorithm > Dynamic Programming' 카테고리의 다른 글
[BOJ] 2579 계단 오르기 (0) | 2020.03.25 |
---|---|
(BOJ) 14863 서울에서 경산까지 (0) | 2019.07.16 |
(BOJ) 1890 점프 (0) | 2019.05.21 |
(BOJ) 11722 가장 긴 감소하는 부분 수열 - O(NlogN) 구현 (1) | 2019.05.21 |
(BOJ) 11053 가장 긴 증가하는 부분수열 - O(NlogN)방법 / lower_bound 구현 (0) | 2019.05.21 |
Comments