696. Count Binary Substrings

Description

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.

Solution

Slide window, time O(n), space O(1)

初始的想法就是找到兩個元素不同的位置,然后往兩邊擴散谦趣。

class Solution {
    public int countBinarySubstrings(String s) {
        if (s == null || s.length() < 2) {
            return 0;
        }
        
        char[] arr = s.toCharArray();
        int i = 0;
        int len = s.length();
        int count = 0;
        while (i < len - 1) {
            if (arr[i] == arr[i + 1]) {
                ++i;
                continue;
            }
            
            ++count;
            int j = i + 1;
            while (i > 0 && j < len - 1 && arr[i - 1] == arr[i] && arr[j + 1] == arr[j]) {
                ++count;
                --i;
                ++j;
            }
            
            i = j;
        }
        
        return count;
    }
}

time O(n), space O(1)

這是一個蠻有意思的解法

  • preRun count the same item happend before (let say you have 0011, preRun = 2 when you hit the first 1, means there are two zeros before first ‘1’)
  • curRun count the current number of items (let say you have 0011, curRun = 2 when you hit the second 1, means there are two 1s so far)
  • Whenever item change (from 0 to 1 or from 1 to 0), preRun change to curRun, reset curRun to 1 (store the curRun number into PreRun, reset curRun)
  • Every time preRun >= curRun means there are more 0s before 1s, so could do count++ . (This was the tricky one, ex. 0011 when you hit the first ‘1’, curRun = 1, preRun = 2, means 0s number is larger than 1s number, so we could form “01” at this time, count++ . When you hit the second ‘1’, curRun = 2, preRun = 2, means 0s’ number equals to 1s’ number, so we could form “0011” at this time, that is why count++)
class Solution {
    public int countBinarySubstrings(String s) {
        if (s == null || s.length() < 2) {
            return 0;
        }
        
        int preRun = 0;
        int curRun = 1;
        int count = 0;
        
        for (int i = 1; i < s.length(); ++i) {
            if (s.charAt(i) == s.charAt(i - 1)) {
                ++curRun;
            } else {
                preRun = curRun;
                curRun = 1;
            }
            
            if (preRun >= curRun) {
                ++count;
            }            
        }
        
        return count;
    }
}
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末智袭,一起剝皮案震驚了整個濱河市毁渗,隨后出現(xiàn)的幾起案子蛛壳,更是在濱河造成了極大的恐慌,老刑警劉巖集峦,帶你破解...
    沈念sama閱讀 210,978評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件仅胞,死亡現(xiàn)場離奇詭異,居然都是意外死亡饺藤,警方通過查閱死者的電腦和手機包斑,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,954評論 2 384
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來涕俗,“玉大人罗丰,你說我怎么就攤上這事≡俟茫” “怎么了丸卷?”我有些...
    開封第一講書人閱讀 156,623評論 0 345
  • 文/不壞的土叔 我叫張陵,是天一觀的道長询刹。 經(jīng)常有香客問我谜嫉,道長萎坷,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,324評論 1 282
  • 正文 為了忘掉前任沐兰,我火速辦了婚禮哆档,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘住闯。我一直安慰自己瓜浸,他們只是感情好,可當我...
    茶點故事閱讀 65,390評論 5 384
  • 文/花漫 我一把揭開白布比原。 她就那樣靜靜地躺著插佛,像睡著了一般。 火紅的嫁衣襯著肌膚如雪量窘。 梳的紋絲不亂的頭發(fā)上雇寇,一...
    開封第一講書人閱讀 49,741評論 1 289
  • 那天,我揣著相機與錄音蚌铜,去河邊找鬼锨侯。 笑死,一個胖子當著我的面吹牛冬殃,可吹牛的內(nèi)容都是我干的囚痴。 我是一名探鬼主播,決...
    沈念sama閱讀 38,892評論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼审葬,長吁一口氣:“原來是場噩夢啊……” “哼深滚!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起涣觉,我...
    開封第一講書人閱讀 37,655評論 0 266
  • 序言:老撾萬榮一對情侶失蹤成箫,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后旨枯,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體蹬昌,經(jīng)...
    沈念sama閱讀 44,104評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,451評論 2 325
  • 正文 我和宋清朗相戀三年攀隔,在試婚紗的時候發(fā)現(xiàn)自己被綠了皂贩。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,569評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡昆汹,死狀恐怖明刷,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情满粗,我是刑警寧澤辈末,帶...
    沈念sama閱讀 34,254評論 4 328
  • 正文 年R本政府宣布,位于F島的核電站,受9級特大地震影響挤聘,放射性物質(zhì)發(fā)生泄漏轰枝。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,834評論 3 312
  • 文/蒙蒙 一组去、第九天 我趴在偏房一處隱蔽的房頂上張望鞍陨。 院中可真熱鬧,春花似錦从隆、人聲如沸诚撵。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,725評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽寿烟。三九已至,卻和暖如春辛燥,著一層夾襖步出監(jiān)牢的瞬間筛武,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,950評論 1 264
  • 我被黑心中介騙來泰國打工购桑, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人氏淑。 一個月前我還...
    沈念sama閱讀 46,260評論 2 360
  • 正文 我出身青樓勃蜘,卻偏偏與公主長得像,于是被迫代替她去往敵國和親假残。 傳聞我的和親對象是個殘疾皇子缭贡,可洞房花燭夜當晚...
    茶點故事閱讀 43,446評論 2 348

推薦閱讀更多精彩內(nèi)容

  • **2014真題Directions:Read the following text. Choose the be...
    又是夜半驚坐起閱讀 9,427評論 0 23
  • 合同到期之后,需從原單位搬離出去辉懒,我不得不再次和房東打交道阳惹。房東者流,在我看來眶俩,多有副冷漠的嘴臉莹汤。這使我在找房的時...
    秋水齋主人閱讀 2,891評論 1 7
  • 你伴我走過旅程的一站, 又默默地抓緊離別的瞬間 眼睛問著眼睛 問出流溢的情感 沒有言語再見 沒有淚眼漣連 只有緊扣...
    六瓣丁香閱讀 123評論 3 1
  • 前些天颠印,某讀書群里的書友艾草分享了“HDD室內(nèi)設(shè)計”(一微信公眾號的名字)里一篇名為《花100萬他就開了家小店,不...
    谷雨一一閱讀 810評論 1 1