티스토리 뷰
Algorithm/LeetCode
[LeetCode - Daily Challenge] 1446. Consecutive Characters
Jaime.Lee 2021. 12. 13. 22:30Problem
The power of the string is the maximum length of a non-empty substring that contains only one unique character.
Given a string s, return the power of s.
Example 1:
Input: s = "leetcode"
Output: 2
Explanation: The substring "ee" is of length 2 with the character 'e' only.
Example 2:
Input: s = "abbcccddddeeeeedcba"
Output: 5
Explanation: The substring "eeeee" is of length 5 with the character 'e' only.
Example 3:
Input: s = "triplepillooooow"
Output: 5
Example 4:
Input: s = "hooraaaaaaaaaaay"
Output: 11
Example 5:
Input: s = "tourist"
Output: 1
Constraints:
- 1 <= s.length <= 500
- s consists of only lowercase English letters.
Solution
문자열의 power를 하나의 고유 문자만 포함하는 비어 있지 않은 하위 문자열의 최대 길이라고 할 때 주어진 문자열 s의 power를 구하는 문제입니다.
단순하게 기준 문자와 비교하면서 같을 때 count를 증가시키고, max 값을 갱신하고, 다를 때 count를 초기화하고 기준 문자를 바꿔주도록 구현하였습니다.
모든 문자열이 다를 때를 대비해 마지막에도 count와 max 값 중 더 높은 값을 반환해야 합니다.
public class Solution {
public int maxPower(String s) {
char[] chars = s.toCharArray();
char c = chars[0];
int cnt = 1;
int max = 0;
for (int i = 1; i < chars.length; i++) {
if (c == chars[i]) {
cnt++;
max = Math.max(max, cnt);
} else {
c = chars[i];
cnt = 1;
}
}
return Math.max(max, cnt);
}
}
저는 일단 생각나는 방법으로 풀어본 뒤 최적화시키거나 잘 모를 때는 답을 빨리 찾아보는 편인데, 한 방에 runtime 에서도 100%를 받아 당황스러웠습니다.
반면 메모리 측면으로는 캐릭터 배열을 따로 선언해서 그런지 45%의 점수를 획득하였는데, 메모리 측면에서 이득을 보기 위해선 배열을 따로 선언하지 않고 charAt을 사용하면 됩니다.
Test
package io.lcalmsky.leetcode.consecutive_characters;
import static org.junit.jupiter.api.Assertions.assertAll;
import static org.junit.jupiter.api.Assertions.assertEquals;
import org.junit.jupiter.api.Test;
class SolutionTest {
@Test
void testAll() {
assertAll(
() -> test("leetcode", 2),
() -> test("abbcccddddeeeeedcba", 5),
() -> test("triplepillooooow", 5),
() -> test("hooraaaaaaaaaaay", 11),
() -> test("tourist", 1)
);
}
private void test(String given, int expected) {
// when
Solution solution = new Solution();
int actual = solution.maxPower(given);
// then
assertEquals(expected, actual);
}
}
'Algorithm > LeetCode' 카테고리의 다른 글
[LeetCode - Daily Challenge] 938. Range Sum of BST (0) | 2021.12.15 |
---|---|
[LeetCode - Daily Challenge] 790. Domino and Tromino Tiling (0) | 2021.12.14 |
[LeetCode - Daily Challenge] 416. Partition Equal Subset Sum (0) | 2021.12.12 |
[LeetCode - Daily Challenge] 878. Nth Magical Number (0) | 2021.12.11 |
[LeetCode - Daily Challenge] 1306. Jump Game III (0) | 2021.12.09 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Spring Data JPA
- Java
- leetcode
- 스프링부트
- 스프링 부트 회원 가입
- Jackson
- proto3
- QueryDSL
- 알고리즘
- 스프링 부트 애플리케이션
- Spring Boot Tutorial
- @ManyToOne
- 함께 자라기 후기
- gRPC
- 스프링 부트 튜토리얼
- JPA
- 헥사고날 아키텍처
- intellij
- Spring Boot JPA
- spring boot application
- JSON
- spring boot app
- 스프링 부트
- Linux
- 함께 자라기
- spring boot jwt
- r
- Spring Boot
- 클린 아키텍처
- 스프링 데이터 jpa
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함