Dev.baelanche

[백준 3009] 네 번째 점 본문

Data Structure & Algorithm/PS - JAVA

[백준 3009] 네 번째 점

baelanche 2019. 7. 16. 21:44
반응형

 

짱짱 쉬운 문제이다.

 

사각형의 특성상 같은 x좌표에 점이 두개, 같은 y좌표에 점이 두개 있어야 한다.

주어진 입력에서 x, y 좌표 각각에 왕따인 수를 찾아주면 된다.

 

구현방법은 엄청 많겠지만 간단한 문제인 만큼 편하게 짰다.

 

public class Main {
    
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        
        int x[] = new int[1001];
        int y[] = new int[1001];
        for(int i=0; i<3; i++) {
            x[sc.nextInt()]++;
            y[sc.nextInt()]++;
        }
        
        for(int i=1; i<1001; i++)
            if(x[i] % 2 == 1) System.out.print(i + " ");
        
        for(int i=1; i<1001; i++)
            if(y[i] % 2 == 1) System.out.print(i);
    }
}
반응형

'Data Structure & Algorithm > PS - JAVA' 카테고리의 다른 글

[백준 11946] ACM-ICPC  (0) 2019.07.17
[백준 2420] 사파리 월드  (0) 2019.07.16
[백준 7453] 합이 0인 네 정수  (0) 2019.07.16
[백준 1072] 게임  (0) 2019.07.16
[백준 2869] 달팽이는 올라가고 싶다  (0) 2019.07.16
Comments