Algorithm/Programmers
[Programmers] Lv.0 / PCCE / 8번 / 창고 정리 / Java
unknownomad
2024. 6. 18. 22:46
문제
풀이
class Solution {
public String solution(String[] storage, int[] num) {
int num_item = 0;
String[] clean_storage = new String[storage.length];
int[] clean_num = new int[num.length];
for(int i=0; i<storage.length; i++){
int clean_idx = -1;
for(int j=0; j<num_item; j++){
if(storage[i].equals(clean_storage[j])){
clean_idx = j;
break;
}
}
if(clean_idx == -1){
clean_storage[num_item] = storage[i];
clean_num[num_item] = num[i];
num_item += 1;
} else{
clean_num[clean_idx] += num[i];
}
}
int num_max = -1;
String answer = "";
for(int i=0; i<num_item; i++){
if(clean_num[i] > num_max){
num_max = clean_num[i];
answer = clean_storage[i];
}
}
return answer;
}
}
출처
https://school.programmers.co.kr/learn/courses/30/lessons/250126