[BOJ][구현][브4][17256] 달달함이 넘쳐흘러

문제 링크

문제링크

첫 번째 풀이

알고리즘

struct를 사용한 풀이로 완전탐색으로 진행합니다.

정답 코드

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
32
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

struct cake {
    int x, y, z;
};
int main()
{
    //freopen("input.txt", "r", stdin);
    ios_base::sync_with_stdio(0); cin.tie(0);

    
    cake a, b, c;
    cin >> a.x >> a.y >> a.z;
    cin >> c.x >> c.y >> c.z;

    for (int i = 1; i <= 100; i++) {
        for (int j = 1; j <= 100; j++) {
            for (int k = 1; k <= 100; k++) {
                if (a.z + i == c.x &&
                    a.y * j == c.y &&
                    a.x + k == c.z) {
                    cout << i << " " << j << " " << k << "\n";
                    return 0;
                }
            }
        }
    }

    return 0;
}

Success Notice: 수고하셨습니다. :+1:

Leave a comment