https://www.acmicpc.net/problem/7568
1. map에 몸무게, 키입력 하여 list 담기
2. list 돌며 두조건이 모두 클때만 더하여 순위리스트 등재
3. 출력
package solution;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;
public class Bakjun_7568{
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int T = sc.nextInt();
ArrayList<Map> list = new ArrayList();
for(int i=0;i<T;i++) {
Map<String,Object> temp = new HashMap();
int weight = sc.nextInt();
int height = sc.nextInt();
temp.put("weight", weight);
temp.put("height", height);
list.add(temp);
}
String answer = "";
for(int i=0;i<list.size();i++) {
int rank = 0;
for(int j=0;j<list.size();j++) {
if(Integer.parseInt(list.get(i).get("weight").toString()) < Integer.parseInt(list.get(j).get("weight").toString())
&& Integer.parseInt(list.get(i).get("height").toString()) < Integer.parseInt(list.get(j).get("height").toString())) {
rank++;
};
}
answer=answer+(rank+1)+" ";
}
System.out.println(answer);
sc.close();
}
}
'IT_tech > 알고리즘' 카테고리의 다른 글
백준) 2750 수정렬하기 - JAVA (0) | 2020.08.04 |
---|---|
백준) 1436 영화감독 숌 - JAVA (0) | 2020.08.03 |
백준) 2331 분해합 - JAVA (1) | 2020.07.28 |
백준) 2798 블랙잭 -JAVA (0) | 2020.07.23 |
프로그래머스)기능개발-java (0) | 2020.07.21 |