[알고리즘/정올] #1828 냉장고
문제)
package algorithm_lab.day09.hw;
import java.util.Arrays;
import java.util.Comparator;
import java.util.Scanner;
public class JO1828 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int N = sc.nextInt();
int cnt=1;
Degree[] d = new Degree[N];
for(int i=0;i<N;i++) {
d[i]= new Degree(sc.nextInt(),sc.nextInt());
}
Arrays.sort(d);
Degree temp = d[0];
for(int i=1;i<N;i++) {
if(temp.high<d[i].low) {
cnt++;
temp=d[i];
}
}
System.out.println(cnt);
}
static class Degree implements Comparable<Degree>{
int low;
int high;
Degree(int low, int high){
this.low =low;
this.high = high;
}
@Override
public int compareTo(Degree o) {
return this.high-o.high;
}
}
}
Author And Source
이 문제에 관하여([알고리즘/정올] #1828 냉장고), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@judylia/알고리즘정올-1828-냉장고저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)