1년 정도 손을 놓았던 알고리즘을 다시 해보려고 한다. 유명한 것 먼저 풀어 보려고하는데 마침 1년 전에 풀었던 문제가 있어서 지금과 비교해 보면 어떨까 해서 글을 작성하게 되었다.
[ 상근날드 문제 ]
문제는 대충 버거 제일 저렴한 가격과 음료의 저렴한 가격을 더해 50원을 빼라 뭐 이런 문제이다.
[ 1년전의 나 ]
1년전의 나는 ArrayList<Integer> 리스트를 사용하여 코드를 짰었다.
왜그랬지...? 아마 저때는 아는 것 중 ArrayList가 제일 적합하다고 생각했었게지...ㅎㅎ
아무튼 다시보니 굳이 리스트를 쓰지 않아도 할 수 있는 문제였었다. 그리고 두개의 리스트를 사용하는 바람에 조금 더 효율을 떨어뜨린 것 같기도하다.
import java.util.ArrayList;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sc = new Scanner(System.in);
ArrayList<Integer> list = new ArrayList<>();
list.add(sc.nextInt());
list.add(sc.nextInt());
list.add(sc.nextInt());
list.sort(null);
ArrayList<Integer> list2 = new ArrayList<>();
list2.add(sc.nextInt());
list2.add(sc.nextInt());
list2.sort(null);
System.out.println((list.get(0) +list2.get(0))-50);
}
}
[오늘의 나 ]
배열로 값을 저장해서 비교하고 싶은 값만 Math.min 을 통해 바로 구해 오는 걸 택했다.
조금 더 간결해지고 남들이 봐도 알아보기 더 쉬울 것 같다는 생각을 하였다.
package algorithm;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int [] priceList = new int[5];
for (int i =0; i < 5; i ++) {
priceList[i] = sc.nextInt();
}
int lowBugger = Math.min(priceList[0], Math.min(priceList[1], priceList[2]));
int lowDrink =Math.min(priceList[3], priceList[4]);
System.out.println((lowBugger +lowDrink)-50 );
}
}
'알고리즘' 카테고리의 다른 글
Merge Strings Alternately (0) | 2023.09.10 |
---|---|
자바, 자바스크립트 난수 생성 코드 (0) | 2023.07.25 |
백준 2798번 블랙잭 (0) | 2023.05.21 |