문제: https://www.acmicpc.net/problem/1002
두 원 사이의 접점을 구하는 문제입니다. 해외 judge 사이트에 비해 어려웠던 점은 실패 시 어느 부분이 틀렸는지 정보를 제공해주지 않는다는 점입니다. 마지막으로 터렛안에 군인이 있을지는 생각 못했었네요 ㅋㅋ;
my solving
c++
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 <fstream> #include <iostream> #include <algorithm> #include <cmath> using namespace std; struct Pos { int x, y, r; }; int getNumIntersection(Pos a, Pos b) { double distance_centralPoints = sqrt((double)((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); int sumRedius = a.r + b.r; int differenceRedius = abs(a.r - b.r); if (a.x == b.x && a.y == b.y) { if (a.r == b.r) return -1; else return 0; } else if (sumRedius > distance_centralPoints && differenceRedius < distance_centralPoints) return 2; else if (sumRedius == distance_centralPoints || differenceRedius == distance_centralPoints) return 1; else return 0; } int main() { int cases; cin >> cases; for (int i = 0; i < cases; i++) { Pos a, b; cin >> a.x >> a.y >> a.r >> b.x >> b.y >> b.r; cout << getNumIntersection(a, b) << endl; } return 0; } | cs |
'Algorithm, Data structure > Solved Algorithmic Problem' 카테고리의 다른 글
BAEKJOON 1004 - 어린왕자 (0) | 2016.07.12 |
---|---|
BAEKJOON 1003 - 파보나치 함수 (0) | 2016.07.10 |
USACO 2.2 - Party Lamps (0) | 2016.07.09 |
USACO 2.2 - Runaround Numbers (0) | 2016.07.08 |
USACO 2.2 - Subset Sums (0) | 2016.07.07 |