일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- MiniHeap
- 트리
- Git
- type 함수
- 그리디
- 알고리즘
- 문법
- 자기개발
- 정렬
- sys.stdin.readline()
- NQueen
- 순차 탐색
- UNIX
- 배열
- 백준
- 스택
- 그래프
- 분할 정복
- format 메서드
- 파이썬
- 탐색
- 이진 탐색
- 재귀 함수
- git hub
- 동적 계획
- 유닉스
- 자료구조
- IT
- 기초
- 우분투
Archives
- Today
- Total
코딩고치
[백준][수학]숨바꼭질 본문
수빈이와 동생의 위치 차이를 구하고 그 차이들의 최대공약수를 구하면 되는 문제.
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
|
'백준 알고리즘 기초 > 수학' 카테고리의 다른 글
[백준][수학]골드바흐의 파티션 (0) | 2019.09.13 |
---|---|
[백준][수학]-2진법 (0) | 2019.09.13 |
[백준][수학]GCD 합 (0) | 2019.09.12 |
[백준][수학]순열 0의 개수 (0) | 2019.09.12 |
[백준][수학]팩토리얼 0의 개수 (0) | 2019.09.11 |
Comments