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
- 자바 리트코드
- daily challenge
- 리트코드 자바
- 스택
- leetcode 1721
- 구현
- java 프로그래머스
- 인텔리제이 에러
- 백준 18222
- 카카오
- 리트코드 1557
- 백준
- 코테
- 파이썬
- 프로그래머스 java
- 백준 16935
- 분할정복
- 리트코드
- dfs
- java leetcode
- BFS
- 스프링 에러
- 그래프 자바
- 코딩테스트
- 자바 5464
- DP
- 프로그래머스
- leetcode
- Java
- 자바
Archives
- Today
- Total
레벨업 일지
[Java] leetcode 30. Substring with Concatenation of All Words 본문
알고리즘/leetcode
[Java] leetcode 30. Substring with Concatenation of All Words
24시간이모자란 2023. 5. 6. 05:01문제
https://leetcode.com/problems/substring-with-concatenation-of-all-words/description/
풀이
풀이 알고리즘은 다음과 같다.
- 주어진 words 로 각 문자열 출현 개수를 카운트 한다.
- 주어진 문자열 s 의 인덱스를 선형 탐색하면서 다음을 수행한다.
- words 배열의 문자 하나 길이 = len 이라 하면, s의 substring을 만든다.
- s.substring 을 카운트해서 알고리즘 1 에서 만든 카운트 보다 크면 break을 건다.
- words 의 길이만큼 탐색 한 경우, ans에 현재 인덱스 i를 추가한다.
처음에words Count 를 만드는 방법이 아닌, 주어진 문자열 S를 선형 탐색하여 HashMap<String, List<Integer>> 맵을 만든다음 words배열 인덱스를 백트레킹으로 브루트 탐색하였는데 위의 알고리즘처럼 조기 종료가 없어서 TLE가 떴다.
초기 맵 구성을 s 에서 만드는 것이 아닌 words 배열을 이용하여 문제를 풀었더니 풀렸다.
코드
class Solution {
public List<Integer> findSubstring(String s, String[] words) {
HashMap<String, Integer> wordCnt = new HashMap<>();
List<Integer> ans = new ArrayList<>();
int n = words.length;
int len = words[0].length();
String str;
for(String x : words)wordCnt.put(x, wordCnt.getOrDefault(x,0)+1);
for(int i =0 ;i < s.length() - (n*len)+1 ;i ++){
HashMap<String, Integer> lookAtI = new HashMap<>();//i번째를 봅니다.
int j = 0;
while(j < n){
str = s.substring(i + j*len , i+(j+1)*len);
if(!wordCnt.containsKey(str))break;
lookAtI.put(str, lookAtI.getOrDefault(str,0)+1);
if(wordCnt.get(str) < lookAtI.get(str))break;
j++;
}
if(j == n){
ans.add(i);
}
}
return ans;
}
}
'알고리즘 > leetcode' 카테고리의 다른 글
[Java] leetCode 1557. Minimum Number of Vertices to Reach All Nodes (0) | 2023.05.18 |
---|---|
[Java] leetcode 1721. Swapping Nodes in a Linked List (1) | 2023.05.16 |
[Java] leetcode 307. Range Sum Query - Mutable (0) | 2023.05.04 |
[Java] leetcode 662. Maximum Width of Binary Tree (0) | 2023.04.20 |
leetcode 946. Validate Stack Sequences (0) | 2023.04.13 |
Comments