1. 문제 링크
2. 문제 및 입출력예제
3. 문제 풀이
각 좌표들을 Point 객체로 PQ에 넣는다.
y좌표 기준으로 비교하고 x 좌표 기준으로 비교해 정렬한다.
pq를 x좌표 y좌표 순으로 출력하면 끝이다.
4. 코드
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.PriorityQueue;
public class Main {
static class Point implements Comparable<Point>{
int x;
int y;
public Point(int x, int y) {
super();
this.x = x;
this.y = y;
}
@Override
public int compareTo(Point o) {
if(this.y==o.y) {
return this.x-o.x;
}
return this.y-o.y;
}
}
public static void main(String[] args) throws NumberFormatException, IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int N = Integer.parseInt(br.readLine());
PriorityQueue<Point> pq = new PriorityQueue<>();
for(int i=0;i<N;i++) {
String[] split = br.readLine().split(" ");
int x = Integer.parseInt(split[0]);
int y = Integer.parseInt(split[1]);
pq.offer(new Point(x, y));
}
while(!pq.isEmpty()) {
Point p = pq.poll();
System.out.println(p.x+" "+p.y);
}
}
}
'ALGORITHM' 카테고리의 다른 글
백준 17219 비밀번호 찾기 (Java) (0) | 2023.05.24 |
---|---|
백준 20920 영단어 암기는 괴로워 (Java) (0) | 2023.05.23 |
백준 3020 개똥벌레 (Java) (1) | 2023.05.21 |
백준 13549 숨바꼭질 3 (Java) (1) | 2023.05.20 |
백준 21611 마법사 상어와 블리자드 (Java) (0) | 2023.05.19 |