Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 백엔드
- 인텔리제이
- 해시맵
- 도커
- 이직
- spring
- 개발자
- 배열
- Linux
- 자료구조
- docker
- 프로그래머스
- HashMap
- 스프링 부트
- dfs
- 해결
- IntelliJ
- 구름LEVEL
- 주니어
- 코딩테스트
- 구현
- 명령어
- 스타트업
- HTTP
- 스프링
- spring boot
- bfs
- 스프링부트
- Java
- 문자열
Archives
- Today
- Total
마이의 개발 블로그
[프로그래머스] 할인 행사 (Java) 본문
반응형
접근 방식
해시맵 두 개를 활용하여 간단하게 해결할 수 있는 문제였다.
로직 설명
- 해시맵 map을 선언하여 want와 number 배열로부터 목표로 하는 할인 정보(제품명, 수량) 저장
- (discount 배열을 탐색하며) 해시맵 dMap을 선언하여 일별로 10일 간의 할인 정보 저장
- 생성된 dMap과 map을 비교하여 수량이 다른 경우 isIdentical 변수 false로 지정
- 두 해시맵이 동일하면 answer 증가
작성 코드
import java.util.*;
class Solution {
public int solution(String[] want, int[] number, String[] discount) {
int answer = 0;
int days = 10;
Map<String, Integer> map = new HashMap<>();
for(int i = 0; i < want.length; i++){
map.put(want[i], number[i]);
}
for(int i = 0; i < discount.length - days + 1; i++){
Map<String, Integer> dMap = new HashMap<>();
for(int j = 0; j < days; j++){
dMap.put(discount[i + j], dMap.getOrDefault(discount[i + j], 0) + 1);
}
Boolean isIdentical = true;
for(String key : map.keySet()){
if(map.get(key) != dMap.get(key)){
isIdentical = false;
break;
}
}
answer += isIdentical ? 1 : 0;
}
return answer;
}
}
Note
- 처음에 10일로 고정된 줄 모르고 number를 합산하여 days를 산출하고 있었다. 문제를 잘 읽자.
반응형
'코딩테스트 > 프로그래머스' 카테고리의 다른 글
[프로그래머스] 가장 큰 수 (Java) (0) | 2023.02.08 |
---|---|
[프로그래머스] 둘만의 암호 (Java) (0) | 2023.02.04 |
[프로그래머스] 더 맵게 (Java) (0) | 2023.02.04 |
[프로그래머스] 스킬트리 (Java) (0) | 2023.02.02 |
[프로그래머스] 괄호 회전하기 (Java) - 간단한 버전 (0) | 2023.02.01 |
Comments