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
- mlflow
- 오토트레이딩
- de
- 흥미붙이기
- NLinear
- HY7714
- 벨만방정식
- transformer
- MPRO
- DL
- LTSF
- express
- node.js
- YOLO
- DLInear
- AI
- DataProcessing
- 프로바이오틱스
- 강화학습으로주식하기
- 강화학습
- 제발쉽게좀가르치자
- 불법마약특별단속 #부산지방경찰청
- ML
- TimeSeries
- 도커로 깃블로그 만들기
- socket.io
- RL
- 프레딧
- 엠프로
- pandas
Archives
- Today
- Total
상황파악
백준 2839번: 설탕 배달 본문
쉽게 생각하고 풀었다가 이해가 안되서 머리가 아팠다
결국 다른 사람의 코드를 참조했지만 이상하게 풀리지 않았다
결국 다시 생각해보고 풀었다
#include <iostream>
using namespace std;
int main() {
int mount;
int f_count = 0;
int t_count = 0;
cin >> mount;
int temp = mount;
while(mount>0){
if(mount % 5==0){
mount -= 5;
f_count++;
}
else if(mount %3 ==0){
mount -= 3;
t_count++;
}
else if(mount > 5){
mount -= 5;
f_count++;
}
else {
break;
}
}
if(5*f_count+3*t_count != temp){
cout << -1;
}
else {
cout << f_count+t_count;
}
return 0;
}
우선적으로 입력값에 바로 mod를 대입하면 값이 극단적으로 달라지게 된다
따라서 한번씩 연산하고 비교하는 과정을 거친다
여기서 살펴볼 부분은 이 부분이다
if(5*f_count+3*t_count != temp){
cout << -1;
}
-1을 출력하는 기준을 잡는데 시간이 오래 걸렸다
'백준' 카테고리의 다른 글
백준 - 1149 RGB 거리 (0) | 2021.01.12 |
---|---|
백준 1032: 명령 프롬프트 (0) | 2021.01.04 |