본문 바로가기

백준/수학

[KOI] 백준 2485 - 가로수

728x90
728x90

icpc.me/2485

 

예제 tc를 잘 보면 각 가로수 사이의 간격은 최소 공약수가 돼야 함을 알 수 있다.

 

주어진 가로수들의 간격에서 최대공약수를 구하고 각 가로수의 거리가 최대공약수를 만족하도록 추가할 가로수를 결정하면 된다.

 

전체 코드

더보기
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
#include <bits/stdc++.h>
 
using namespace std;
using ll = long long;
 
ll res = 0;
 
int gcd(int n, int m) { return !m ? n : gcd(m, n % m); }
 
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(0); cout.tie(0);
    
    int n; cin >> n;
    
    vector<int> street(n);
    
    int dist;
    
    for (int i = 0; i < n; ++i)
    {
        cin >> street[i];
        
        if (i == 1)
            dist = street[1- street[0];
        else if (i > 1)
            dist = gcd(dist, street[i] - street[i - 1]);
    }
    
    for (int j = 1; j < n; ++j)
        res += (street[j] - street[j - 1- dist) / dist;
    
    cout << res;
}
cs

728x90
728x90

'백준 > 수학' 카테고리의 다른 글

백준 1670 - 정상 회담 2  (0) 2020.11.30
백준 11439 - 이항 계수 5  (0) 2020.11.30
백준 1947 - 선물 전달  (0) 2020.11.10
백준 1188 - 음식 평론가  (0) 2020.06.01
백준 1629 - 곱셈  (0) 2020.05.25