Skip to content

Latest commit

 

History

History
117 lines (46 loc) · 1.88 KB

File metadata and controls

117 lines (46 loc) · 1.88 KB

中文文档

Description

Given an array A of 0s and 1s, divide the array into 3 non-empty parts such that all of these parts represent the same binary value.

If it is possible, return any [i, j] with i+1 < j, such that:

    <li><code>A[0], A[1], ..., A[i]</code> is the first part;</li>
    
    <li><code>A[i+1], A[i+2], ..., A[j-1]</code> is the second part, and</li>
    
    <li><code>A[j], A[j+1], ..., A[A.length - 1]</code> is the third part.</li>
    
    <li>All three parts have equal binary value.</li>
    

If it is not possible, return [-1, -1].

Note that the entire part is used when considering what binary value it represents.  For example, [1,1,0] represents 6 in decimal, not 3.  Also, leading zeros are allowed, so [0,1,1] and [1,1] represent the same value.

 

Example 1:

Input: [1,0,1,0,1]

Output: [0,3]

Example 2:

Input: [1,1,0,1,1]

Output: [-1,-1]

 

Note:

    <li><code>3 &lt;= A.length &lt;= 30000</code></li>
    
    <li><code>A[i] == 0</code>&nbsp;or <code>A[i] == 1</code></li>
    
 

Solutions

Python3

Java

...