BOJ 1002

2020-02-11

위 문제는 백준 사이트의 알고리즘 1002 문제에 관한 설명입니다.


문제

조규현과 백승환은 터렛에 근무하는 직원이다. 하지만 워낙 존재감이 없어서 인구수는 차지하지 않는다. 다음은 조규현과 백승환의 사진이다.

My Image

이석원은 조규현과 백승환에게 상대편 마린(류재명)의 위치를 계산하라는 명령을 내렸다.

조규현과 백승환은 각각 자신의 터렛 위치에서 현재 적까지의 거리를 계산했다.

조규현의 좌표 (x1, y1)와 백승환의 좌표 (x2, y2)가 주어지고, 조규현이 계산한 류재명과의 거리 r1과

백승환이 계산한 류재명과의 거리 r2가 주어졌을 때, 류재명이 있을 수 있는 좌표의 수를 출력하는 프로그램을 작성하시오.

입력

첫째 줄에 테스트 케이스의 개수 T가 주어진다. 각 테스트 케이스는 다음과 같이 이루어져 있다.

한 줄에 x1, y1, r1, x2, y2, r2가 주어진다. x1, y1, x2, y2는 -10,000보다 크거나 같고, 10,000보다 작거나 같은 정수이고, r1, r2는 10,000보다 작거나 같은 자연수이다.

출력

각 테스트 케이스마다 류재명이 있을 수 있는 위치의 수를 출력한다. 만약 류재명이 있을 수 있는 위치의 개수가 무한대일 경우에는 -1을 출력한다.


import java.io.*;
import java.util.Scanner;

public class Main {
    static class Circle {
        int x, y, r;

        public Circle(int x, int y, int r) {
            this.x = x;
            this.y = y;
            this.r = r;
        }
    }

    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        int T = scanner.nextInt();
        int x;
        int y;
        int r;
        for (int i = 0; i < T; i++) {
            x = scanner.nextInt();
            y = scanner.nextInt();
            r = scanner.nextInt();
            Circle A = new Circle(x, y, r);
            x = scanner.nextInt();
            y = scanner.nextInt();
            r = scanner.nextInt();
            Circle B = new Circle(x, y, r);
            System.out.println(ryuPosition(A, B));
        }

    }

    private static int ryuPosition(Circle A, Circle B) {
        int pointCount = 0, plusR = A.r + B.r, subtractionR = Math.abs(A.r - B.r);
        double distance = Math.sqrt(Math.pow(A.x - B.x, 2) + Math.pow(A.y-B.y, 2));

        if (A.x == B.x && A.y == B.y) {
            if (subtractionR == 0) pointCount = -1;
            else pointCount = 0;
        } else {
            if (distance < plusR && subtractionR < distance) pointCount = 2;
            else if (distance == plusR || distance == subtractionR) pointCount = 1;
        }
        return pointCount;

    }
}

제가 푼 소스코드입니다.

코드 설명

Class Circle 객체를 만들어서 사용하려 했습니다.

ryuPosition를 이용해서 류재명의 거리를 확인하고 겹치는 점의 수만큼을 return시켰습니다.


    private static int ryuPosition(Circle A, Circle B) {
        int pointCount = 0, plusR = A.r + B.r, subtractionR = Math.abs(A.r - B.r);
        double distance = Math.sqrt(Math.pow(A.x - B.x, 2) + Math.pow(A.y-B.y, 2));

        if (A.x == B.x && A.y == B.y) {
            if (subtractionR == 0) pointCount = -1;
            else pointCount = 0;
        } else {
            if (distance < plusR && subtractionR < distance) pointCount = 2;
            else if (distance == plusR || distance == subtractionR) pointCount = 1;
        }
        return pointCount;
    }

첫번째 if문의 내용은 A의 X, Y좌표와 B의 X, Y좌표가 같을 때 입니다.

이것은 중점의 위치가 같다 라는 뜻이고, 이때 좌표는 같은데 길이마저 같다면 무한의 갯수가 count 됩니다. - 문제발생

아니라면 겹치는 수가 없습니다.

좌표가 다르다면

distance < plusR && subtractionR < distance

를 이용해서 겹치는 구간 2개의 점을 표현합니다.

distance == plusR || distance == subtractionR

딱 그 거리에서 접점 1개가 만나는 점입니다.

터렛