LeetCode - Easy - 696. Count Binary Substrings
生活随笔
收集整理的這篇文章主要介紹了
LeetCode - Easy - 696. Count Binary Substrings
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
Topic
- String
Description
https://leetcode.com/problems/count-binary-substrings/
Give a string s, count the number of non-empty (contiguous) substrings that have the same number of 0’s and 1’s, and all the 0’s and all the 1’s in these substrings are grouped consecutively.
Substrings that occur multiple times are counted the number of times they occur.
Example 1:
Input: "00110011" Output: 6 Explanation: There are 6 substrings that have equal number of consecutive 1's and 0's: "0011", "01", "1100", "10", "0011", and "01".Notice that some of these substrings repeat and are counted the number of times they occur.Also, "00110011" is not a valid substring because all the 0's (and 1's) are not grouped together.Example 2:
Input: "10101" Output: 4 Explanation: There are 4 substrings: "10", "01", "10", "01" that have equal number of consecutive 1's and 0's.Note:
- s.length will be between 1 and 50,000.
- s will only consist of “0” or “1” characters.
Analysis
方法一:暴力算法,遇到超長字符串會超時,故棄。
方法二:發(fā)現(xiàn)字符串其中規(guī)律
方法三:方法二改進版。
Submission
import java.util.ArrayList; import java.util.List;public class CountBinarySubstrings {// 方法一:暴力算法,遇到超長字符串會超時public int countBinarySubstrings(String s) {int result = 0;// List<String> resultList = new ArrayList<>();for (int i = 0; i < s.length(); i++) {int state = 1;char tempChar = s.charAt(i);int firstCharCount = 1, secondCharCount = 0, rightPartCount = 0;for (int j = i + 1; j < s.length(); j++) {if (state == 1) {if (tempChar == s.charAt(j)) {firstCharCount++;} else {state = 2;tempChar = s.charAt(j);}}if (state == 2) {if (tempChar == s.charAt(j)) {secondCharCount++;}rightPartCount++;if (rightPartCount == firstCharCount) {if (secondCharCount == firstCharCount) {result++;// resultList.add(repeat(tempChar=='1'?'0':'1', firstCharCount) +// repeat(tempChar, secondCharCount));}break;}}}}return result;}// 方法二:public int countBinarySubstrings2(String s) {List<int[]> list = new ArrayList<>();int result = 0, tempIndex = 0;for (int i = tempIndex + 1; i <= s.length(); i++) {if (i == s.length() || s.charAt(i) != s.charAt(tempIndex)) {list.add(new int[] { tempIndex, i - 1 });tempIndex = i;}}for (int i = 0; i < list.size(); i++) {int[] leftPart = list.get(i);if (i + 1 == list.size()) {break;}int[] rightPart = list.get(i + 1);int leftSize = leftPart[1] - leftPart[0] + 1;int rightSize = rightPart[1] - rightPart[0] + 1;result += Math.min(leftSize, rightSize);}return result;}// 方法三:方法二的改進版public int countBinarySubstrings3(String s) {int result = 0, lastIndex = 0, lastSize = 0;for (int i = lastIndex + 1; i <= s.length(); i++) {if (i == s.length() || s.charAt(i) != s.charAt(lastIndex)) {if (lastSize == 0) {lastSize = i - lastIndex;} else {int currentSize = i - lastIndex;result += Math.min(lastSize, currentSize);lastSize = currentSize;}lastIndex = i;}}return result;}private String repeat(char c, int times) {StringBuilder sb = new StringBuilder();for (int i = 0; i < times; i++) {sb.append(c);}return sb.toString();}}Test
import static org.junit.Assert.*; import org.junit.Test;public class CountBinarySubstringsTest {@Testpublic void test() {CountBinarySubstrings obj = new CountBinarySubstrings();assertEquals(6, obj.countBinarySubstrings("00110011"));assertEquals(4, obj.countBinarySubstrings("10101"));}@Testpublic void test2() {CountBinarySubstrings obj = new CountBinarySubstrings();assertEquals(6, obj.countBinarySubstrings2("00110011"));assertEquals(4, obj.countBinarySubstrings2("10101"));}@Testpublic void test3() {CountBinarySubstrings obj = new CountBinarySubstrings();assertEquals(0, obj.countBinarySubstrings3("00"));assertEquals(1, obj.countBinarySubstrings3("001"));assertEquals(6, obj.countBinarySubstrings3("00110011"));assertEquals(4, obj.countBinarySubstrings3("10101"));assertEquals(3, obj.countBinarySubstrings3("00110"));} }總結
以上是生活随笔為你收集整理的LeetCode - Easy - 696. Count Binary Substrings的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 《Java8实战》笔记(16):结论以及
- 下一篇: 大数据学习(0)-大数据知识框图