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
- leetcode
- #심플즈 크랙미
- #abex크랙미
- #크랙미 9번
- #abex
- #크랙미2번
- #abex크랙미4번
- #파밍
- #심플즈
- Easy
- java
- #크랙미
- #보안뉴스
- #고클린
- #크랙미4번
- #크랙미 5번
- 리버싱
- Spring
- #크랙미3번
- springframework
- GraphQL
- #리버싱
- java8
- #보안이슈
- #크랙미 10번
Archives
- Today
- Total
Halo World
[LeetCode] 696. Count Binary Substrings 본문
https://leetcode.com/problems/count-binary-substrings/
//풀이 봄
class Solution {
/*public int countBinarySubstrings(String s) {
int[] groups = new int[s.length()];
int idx = 0;
groups[0]=1;
for(int i=1;i<s.length(); i++){
if(s.charAt(i-1) != s.charAt(i)) {
groups[++idx]=1;
} else {
groups[idx]++;
}
}
int ans = 0;
for(int i=1;i<=idx;i++) {
ans+=Math.min(groups[i-1], groups[i]);
}
return ans;
}*/
public int countBinarySubstrings(String s) {
int result = 0, prev = 0, cur = 1;
for(int i=1;i<s.length();i++){
if(s.charAt(i-1)!=s.charAt(i)) {
result += Math.min(prev, cur);
prev = cur;
cur = 1;
} else {
cur++;
}
}
return result+Math.min(prev,cur);
}
}
'스터디 > 알고리즘 문제풀이' 카테고리의 다른 글
[LeetCode] 617. Merge Two Binary Trees (0) | 2021.10.05 |
---|---|
[LeetCode] 101. Symmetric Tree (0) | 2021.10.04 |
[LeetCode] 226. Invert Binary Tree (0) | 2021.10.04 |
[LeetCode] 543. Diameter of Binary Tree (0) | 2021.09.30 |
[문제풀이] 백준 14499 주사위 (2) | 2017.10.18 |