[문제]
https://school.programmers.co.kr/learn/courses/30/lessons/131127
[풀이]
Map을 이용해서 disccount 목록을 이동시켜가며 비교한다.
단순 시뮬레이션 문제!
[코드]
import java.util.*;
class Solution {
public int solution(String[] want, int[] number, String[] discount) {
int answer = 0;
//회원등록시 정현이가 원하는 제품을 모두 할인 받을 수 있는 회원등록 날짜의 총 일수를 return
Map<String, Integer> hm = new HashMap<>(); //종류:개수
for(int i=0; i<10; i++){
hm.put(discount[i], hm.getOrDefault(discount[i], 0)+1);
}
if(compareToWant(hm, want, number)) answer = 1;
//want:number와 discount 비교
for(int i=0; i<discount.length-10; i++){
hm.replace(discount[i], hm.get(discount[i])-1);
hm.put(discount[i+10], hm.getOrDefault(discount[i+10], 0)+1);
if(compareToWant(hm, want, number)) answer++;
}
return answer;
}
public boolean compareToWant(Map<String, Integer> hm, String[] want, int[] number){
for(int i=0; i<want.length; i++){
if(!hm.containsKey(want[i]) || hm.get(want[i])!=number[i]){
return false;
}
}
return true;
}
}
'알고리즘 공부 및 문제 풀이 > 프로그래머스(PRO)' 카테고리의 다른 글
[pro] 프로그래머스 level1 64061 크레인 인형뽑기 (Java) - 스택 (0) | 2023.03.21 |
---|---|
[pro] 프로그래머스 level2 131704 택배 상자 (Java) - 시뮬레이션 (0) | 2023.03.07 |
[pro] 프로그래머스 level2 134239 우박수열 정적분 (Java) - 시뮬레이션 (0) | 2023.03.04 |
[pro] 프로그래머스 level2 132265 롤케이크 자르기 (Java) - 시뮬레이션 (0) | 2023.03.03 |
[pro] 프로그래머스 level2 135807 숫자 카드 나누기 (Java) - 시뮬레이션 (0) | 2023.03.03 |