Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 크리티컬섹션
- 언리얼엔진구조체
- C++최적화
- 정렬알고리즘
- enumasByue
- unorder_map
- 선택정렬
- 정렬
- 람다사용정렬
- 언리얼가비지컬렉터
- C++
- 델리게이트
- BFS
- 강참조
- 알고리즘
- 데이터애셋
- 애셋로드
- 약참조
- 프로그래머스
- moreeffectiveC++
- UE4 커스텀로그
- 람다
- UML관련
- stl
- UELOG
- 자료구조
- 스마트포인터
- map
- dataasset
- UE_LOG
Archives
- Today
- Total
기억을 위한 기록들
[백준 10162: 전자레인지] - C++ 본문
#pragma once
#include <iostream>
using namespace std;
int main() {
int a = 300;
int b = 60;
int c = 10;
int t;
int cnt[3] = { 0 };
cin >> t;
bool bImpossible = false;
while (t>0)
{
if (a <= t)
{
cnt[0] += 1;
t -= a;
}
else if (b <= t)
{
cnt[1] += 1;
t -= b;
}
else if (c <= t)
{
cnt[2] += 1;
t -= c;
}
else
{
bImpossible = true;
break;
}
}
if (bImpossible)
cout << -1 << endl;
else
{
cout << cnt[0]<<" "<< cnt[1] << " "<< cnt[2]<< endl;
}
return 0;
}//end of main
'Coding Test - cpp > Greedy' 카테고리의 다른 글
[프로그래머스 lv 1 ] - 모의고사 (0) | 2021.04.22 |
---|---|
[백준 1946: 신입 사원] - C++ (0) | 2021.04.12 |
[백준 1449: 수리공 항승] - C++ (0) | 2021.03.16 |
[백준 1541: 잃어버린 괄호] - C++ (0) | 2021.03.05 |
[백준 18238: ZOAC 2] - C++ (0) | 2021.02.18 |