[BaekJoon] 10814 나이순 정렬 (java)
🔗 문제 링크
https://www.acmicpc.net/problem/10814
👨🏻💻 내가 작성한 코드
import java.util.ArrayList;
import java.util.Collections;
import java.util.Scanner;
class User implements Comparable<User>{
public String name;
public int age;
public int order;
public User(String name, int age, int order) {
this.name = name;
this.age = age;
this.order = order;
}
@Override
public int compareTo(User o) {
if (this.age > o.age) {
return 1;
}
else if (this.age == o.age) {
return this.order < o.order? -1:1;
}
return -1;
}
}
public class Main {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sc = new Scanner(System.in);
int num = Integer.parseInt(sc.nextLine());
String userInfo;
String[] ageName = new String[num];
User user;
ArrayList<User> userList = new ArrayList<>();
for (int i=0; i<num; i++) {
userInfo = sc.nextLine();
ageName = userInfo.split(" ");
user = new User(ageName[1], Integer.parseInt(ageName[0]), i);
userList.add(user);
}
Collections.sort(userList);
for (int i=0; i<num; i++) {
System.out.println(userList.get(i).age+" "+ userList.get(i).name);
}
}
}
Author And Source
이 문제에 관하여([BaekJoon] 10814 나이순 정렬 (java)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@seongwon97/BaekJoon-10814-나이순-정렬-java저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)