코딩고치

[백준][수학]숨바꼭질 본문

백준 알고리즘 기초/수학

[백준][수학]숨바꼭질

코딩고치 2019. 9. 12. 20:44

수빈이와 동생의 위치 차이를 구하고 그 차이들의 최대공약수를 구하면 되는 문제.

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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#include <iostream>
#include <vector>
using namespace std;
 
int gcd(int x, int y)
{
    if (y == 0)
        return x;
    else
        return gcd(y, x % y);
}
 
int main(void)
{
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    int n;    //동생 수
    int s;    //수빈 위치
    cin >> n >> s;
    vector<int> A(n);
    vector<int> B(n); 
 
    for (int i = 0; i < n; i++)
    {
        cin >> A[i];    //동생들 위치
    }
 
    for (int i = 0; i < n; i++)    // 수빈 위치 - 동생들 위치
    {
        if (s > A[i])    
            B[i] = s - A[i];
        else
            B[i] = A[i] - s;
    }
 
    int result = gcd(B[0], 0);
 
    for (int i = 1; i < n; i++)    // 모든 수의 최대 공약수
    {
        result = gcd(result, B[i]);
    }
    
    cout << result << '\n';
 
    return 0;
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
 
Comments