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 |
Tags
- java
- hash table
- Stack
- dynamic programming
- Counting
- 파이썬
- Data Structure
- 자바
- Tree
- Method
- geometry
- Matrix
- 코딩테스트
- sorting
- Binary Search
- array
- bit manipulation
- Number Theory
- Math
- implement
- two pointers
- SQL
- Class
- simulation
- 코테
- string
- greedy
- database
- 구현
- Binary Tree
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 599. Minimum Index Sum of Two Lists 본문
1. Input
1) String[] list1
2) String[] list2
2. Output
1) 두 배열의 공통 문자열이 있을 때, 그 인덱스의 합이 최소가 되는 문자열을 담은 배열을 반환
- 인덱스의 합이 최소가 되는 문자열이 여러개라면 순서에 상관없이 담아서 반환
3. Constraint
1) 1 <= list1.length, list2.length <= 1000
2) 1 <= list1[i].length, list2[i].length <= 30
3) 두 배열의 문자열은 공백문자와 영어 대소문자로 이루어져 있다.
4) 각 배열에는 중복 문자열이 없다.
5) 두 배열의 공통 문자열은 최소 1개 이상 있다.
4. Example
Input: list1 = ["happy","sad","good"], list2 = ["sad","happy","good"] -> Output: ["sad","happy"]
설명:
- happy의 인덱스 합은 0 + 1 = 1
- sad의 인덱스 합은 1 + 0 = 1
- good의 인덱스 합은 2 + 2 = 4
- 합의 최소는 1이므로 ["sad","happy“] 또는 [”happy“,”sad“]를 반환한다.
5. Code
1) 첫 코드(2023/03/07)
int min = list1.length + list2.length;
HashMap<String,Integer> m = new HashMap<String,Integer>();
for(int i=0 ; i<list1.length ; i++){
for(int j=0 ; j<list2.length ; j++){
if(list1[i].equals(list2[j])){
if(i+j<=min){
min = i+j;
m.put(list1[i],i+j);
}
break;
}
}
}
ArrayList<String> answer = new ArrayList<String>();
Iterator it = m.entrySet().iterator();
while(it.hasNext()){
Map.Entry e = (Map.Entry)it.next();
if((int)e.getValue()==min)
answer.add((String)e.getKey());
}
return answer.toArray(new String[0]);
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[백준 온라인 저지] 11720. 숫자의 합 (0) | 2023.03.07 |
---|---|
[백준 온라인 저지] 11654. 아스키 코드 (0) | 2023.03.07 |
[LeetCode/Easy] 594. Longest Harmonious Subsequence (0) | 2023.03.07 |
[백준 온라인 저지] 2839. 설탕 배달 (0) | 2023.03.07 |
[백준 온라인 저지] 1193. 분수찾기 (0) | 2023.03.07 |