티스토리 뷰
const fs = require("fs");
const filePath = process.platform === "linux" ? "./input.txt" : "/dev/stdin"; // 실제 백준사이트에 제출할 때는 위에 filePath를 삭제하고 이 부분을 입력하면 됩니다.
//const filePath = process.platform === "linux" ? "/dev/stdin" : "./input.txt"; // 실제 백준사이트에 제출할 때는 위에 filePath를 삭제하고 이 부분을 입력하면 됩니다.
let input = fs.readFileSync(filePath).toString().split("\n");
input.pop();
//console.log(input)
solution(input);
function solution(A) {
let testCount = +A[0];
for (let i = 1; i <= testCount; i++) {
A[i] = A[i].split(" ").map((item) => +item);
let x1 = A[i][0];
let y1 = A[i][1];
let x2 = A[i][3];
let y2 = A[i][4];
let range = Math.sqrt((x1 - x2) ** 2 + (y1 - y2) ** 2);
//console.log(range)
let round1 = A[i][2];
let round2 = A[i][5];
if (range === 0) {
// 같은 위치에 있을 때
if (round1 !== round2) {
// 반지름이 같지 않을 때
console.log(0);
} else if (round1 === round2) {
//반지름이 같을 때
console.log(-1);
}
} else if (range < round1 + round2) {
// 두 원의 중심거리가 두 반지름의 합보다 작을 때
if (range + round1 < round2) {
// 원 안에 다른 원이 있지만 내접하지 않는 경우
console.log(0);
} else if (range + round2 < round1) {
// 원 안에 다른 원이 있지만 내접하지 않는 경우
console.log(0);
} else if (range + round1 === round2) {
// 두 원의 중심선 + 반지름 = 다른 반지름의 거리 === 내접
console.log(1);
} else if (range + round2 === round1) {
// 같음
console.log(1);
} else {
console.log(2); // 두 개의 교차점
}
} else if (range === round1 + round2) {
// 두 중심선의 거리 === 두 원의 반지름의 합 == 외접
console.log(1);
} else if (range > round1 + round2) {
// 두 중심선의 거리 > 두 원의 반지름의 합 == 접하지 않음
console.log(0);
}
}
}
'알고리즘 > 백준 문제풀이' 카테고리의 다른 글
백준 nodejs 10870번: 피보나치 수 5 (0) | 2021.10.04 |
---|---|
백준 nodejs 10872번: 팩토리얼 (0) | 2021.10.04 |
백준 nodejs 4153번: 직각삼각형 (0) | 2021.10.01 |
백준 nodejs 3009번: 네 번째 점 (0) | 2021.10.01 |
백준 nodejs 1085번: 직사각형에서 탈출 (0) | 2021.09.29 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- WSL2
- Storybook
- 프리온보딩
- env
- 북클럽
- 초보
- TopLayer
- 노개북
- 노마드코더
- nextjs
- 프론트앤드
- createPortal
- NextRequest
- 스토리 북
- electron
- CLASS
- jest
- C언어
- React
- NextApiRequest
- javascript
- error
- nodejs
- 위코드
- import/order
- 원티드
- 우아한테크코스
- 윤성우 열혈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 |
글 보관함