관리 메뉴

🌲자라나는청년

Q11650 좌표정렬하기(java) 본문

알고리즘 문제풀이

Q11650 좌표정렬하기(java)

JihyunLee 2019. 9. 15. 17:49
반응형

array를 이용. array.sort를 이용해서 정렬

 

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
import java.util.*;
 
class Q11650{
    public static void main(String[] args){
        Scanner scan = new Scanner(System.in);
        int N = scan.nextInt();
        int[][] arr = new int[N][2];
 
        for(int i=0; i<N; i++){
            arr[i][0= scan.nextInt();
            arr[i][1= scan.nextInt();
        }
 
        Arrays.sort(arr, new Comparator<int[]>() {
            public int compare(int[] x, int[] y){
                if(x[0]>y[0])
                    return 1;
                else if(x[0]<y[0])
                    return -1;
                else{
                    if(x[1]>y[1])
                        return 1;
                    else if(x[1]<y[1])
                        return -1;
                }
                return 1;
 
            }
        });
 
        for(int i=0; i<N; i++){
            System.out.print(arr[i][0]);
            System.out.print(" ");
            System.out.println(arr[i][1]);
        }
 
    }
    
    
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs
반응형

'알고리즘 문제풀이' 카테고리의 다른 글

[백준] Q10026 적록색약(java)  (0) 2019.09.26
Q1463 1로 만들기(java)  (0) 2019.09.19
Q1181 단어 정렬(java)  (0) 2019.09.15
Q1427 소트인사이드(java)  (0) 2019.09.15
Q1026 보물(java)  (0) 2019.09.15