[알고리즘] 백준 - 7568 (덩치) / 자바
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = 0;
n = sc.nextInt();
int[][] person = new int[n][n];
for (int i = 0 ; i < n ; i ++) {
person[i][0] = sc.nextInt(); // 키
person[i][1] = sc.nextInt(); // 몸무게
}
for (int i = 0 ; i < n ; i ++) { //기준
int count = 1;
for (int j = 0 ; j < n ; j++) { //비교
if(i==j) { // 같은 사람은 비교하지 않는다
continue;
}
if ( (person[i][0] < person[j][0] ) && ( person[i][1] < person[j][1] )) { // 자신보다 덩치가 큰 사람이 있으면 카운트를 증가
count++;
}
}
System.out.print(count + " " );
}
}
}
Author And Source
이 문제에 관하여([알고리즘] 백준 - 7568 (덩치) / 자바), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@cheal3/알고리즘-백준-7568-덩치-자바저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)