답은 알고리즘 뿐이야!

[BOJ 16283] Farm (ICPC 2018) 본문

알고리즘/백준문제풀이

[BOJ 16283] Farm (ICPC 2018)

skyde47 2019. 10. 4. 19:11

문제 출처 : https://www.acmicpc.net/problem/16283

 

풀이 :

 

간단한 산수 문제입니다.

양을 1~N-1마리 염소를 N-1~1마리로 두고 포문을 돌리면 됩니다.

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include<stdio.h>
 
int a, b, n, w, ret1, ret2;
 
int main()
{
    scanf("%d %d %d %d"&a, &b, &n, &w);
 
    for (int i = 1; i < n&&ret1!=-1; i++)
        if (a*+ b * (n - i)==w)
        {
            if (ret1)ret1 = -1;
            else ret1 = i;
            ret2 = n - i;
        }
    if (ret1 == -1 || ret1 == 0)printf("-1");
    else printf("%d %d", ret1, ret2);
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter

'알고리즘 > 백준문제풀이' 카테고리의 다른 글

[BOJ 9095] 1, 2, 3 더하기  (0) 2019.10.08
[BOJ 17521] Byte Coin (ICPC 2019)  (0) 2019.10.07
[BOJ 16287] Parcel (ICPC 2018)  (0) 2019.10.04
[BOJ 16288] Passport Control (ICPC 2018)  (0) 2019.10.04
[BOJ 2343] 기타 레슨  (0) 2019.09.26
Comments