CSES - Datatähti 2016 alku - Results
Submission details
Task:Bittipeli
Sender:siirikuoppala
Submission time:2015-10-07 19:14:11 +0300
Language:Python3
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
#40
Test results
testverdicttimegroup
#10.08 s1details
#2ACCEPTED0.09 s1details
#3ACCEPTED0.10 s1details
#40.10 s1details
#50.10 s1details
#6ACCEPTED0.10 s1details
#70.09 s1details
#8ACCEPTED0.09 s1details
#9ACCEPTED0.09 s1details
#10ACCEPTED0.10 s1details
#11ACCEPTED0.11 s1details
#12ACCEPTED0.10 s1details
#13ACCEPTED0.09 s1details
#140.10 s1details
#150.09 s1details
#160.10 s1details
#170.09 s1details
#18ACCEPTED0.10 s1details
#190.10 s1details
#200.10 s1details
#210.09 s2details
#220.09 s2details
#23ACCEPTED0.10 s2details
#24ACCEPTED0.10 s2details
#250.10 s2details
#260.10 s2details
#270.10 s2details
#280.10 s2details
#290.09 s2details
#30ACCEPTED0.09 s2details
#31ACCEPTED0.09 s2details
#32ACCEPTED0.09 s2details
#330.10 s2details
#340.08 s2details
#350.10 s2details
#360.10 s2details
#370.10 s2details
#380.10 s2details
#390.09 s2details
#400.10 s2details
#410.10 s3details
#420.11 s3details
#430.10 s3details
#440.10 s3details
#450.09 s3details
#46ACCEPTED0.09 s3details
#47ACCEPTED0.10 s3details
#48ACCEPTED0.10 s3details
#490.10 s3details
#500.11 s3details
#510.10 s3details
#52ACCEPTED0.09 s3details
#53ACCEPTED0.09 s3details
#540.10 s3details
#550.10 s3details
#560.20 s3details
#570.18 s3details
#580.16 s3details
#590.11 s3details
#600.24 s3details
#610.10 s4details
#620.09 s4details
#630.10 s4details
#640.09 s4details
#65ACCEPTED0.10 s4details
#66ACCEPTED0.10 s4details
#670.09 s4details
#680.10 s4details
#69ACCEPTED0.10 s4details
#700.09 s4details
#71ACCEPTED0.10 s4details
#720.10 s4details
#73ACCEPTED0.10 s4details
#740.10 s4details
#750.10 s4details
#76--4details
#77--4details
#78--4details
#790.66 s4details
#80--4details

Code

'''
Created on 30.9.2015

@author: siiri
'''
from collections import Counter
bitit = str(input())

def muuna():
    k=1
    joku=[]
    for i in range(1, len(bitit)):
        if bitit[i] == bitit[i-1]:
            k+=1
        else:
            if k > 1:
                joku.append(1)
            if k < 2:
                joku.append(0)
            k = 1
        if i == len(bitit)-1:
            if k>1:
                joku.append(1)
            else:
                joku.append(0)
    
    return(joku)

joku = muuna()
counter = Counter(joku)
kaks = counter[1]

def yks(joku, teko):
    x = joku.index(1)
    if x != 0 and x != len(joku)-1:
        joku = dele(x)
    else:
        joku.remove(1)
    teko.append(1)
    return(teko, joku)

def dele(lol):
    if lol>0 and lol < len(joku)-1:
        joku.remove(joku[lol-1])
        joku.remove(joku[lol-1])
        joku.remove(joku[lol-1])
        joku.insert(lol-1, 1)
    elif lol ==0:
        joku.remove(joku[0])
    elif lol == len(joku)-1:
        joku.remove(joku[lol])
    return joku
def moneskak(s):
    v=0
    j = 0
    while j<=s:
        if joku[j]==1:
            v+=1
        j+=1
    return(v)
def yliyks(joku, teko):
    i=1
    o=0
    j=0
    while o == 0:
        while i < len(joku)-1:
            if joku[i]==1 and joku[i-1]== 0 and joku[i+1]==0:
                    v=moneskak(i)
                    joku = dele(i)
                    i-=1
                    teko.append(v)
                    j+=1
            i+=1
        if j == 0:
            o=1
        j=0
    return teko, joku
def pisinkak():
    i=0
    d = 0
    a=0
    while i < len(joku):
        if joku[i] == 1:
            if d==0:
                g=i
            d+=1
        else:
            if d>a:
                a=d
                gg=g
            d=0
        i+=1
    if d>a:
        a=d
        gg=g
    return gg,a
def minus(gg):
    w=1
    f=0
    while w<=gg:
        if joku[gg-w]==0:
            f+=1
        else:
            w=gg+1
        w+=1
    return f
def plusus(w):
    r=0
    while w<len(joku):
        if joku[w]==0:
            r+=1
        else:
            w=len(joku)+1
        w+=1
    return r
def Mm(joku, teko):
    gg, a = pisinkak()
    f=minus(gg)
    w=gg+a
    g=plusus(w)
    if f<g:
        s=gg+a-1
        teko.append(moneskak(s))
        joku=dele(s)
        print(joku)
    if g<=f:
        s=gg
        teko.append(moneskak(s))
        joku=dele(s)
    return teko, joku
            
teko = []
f = 0
while kaks > 0 and f < 20:
    if kaks == 1:
        teko, joku = yks(joku, teko)
    counter=Counter(joku)
    if counter[0] == 0:
        while len(joku)>0:
            joku.remove(joku[0])
            teko.append(1)
    counter=Counter(joku)
    if counter[1]>1:
        teko, joku = yliyks(joku, teko)
    counter=Counter(joku)
    if counter[1]>1:
        teko, joku = Mm(joku, teko)
    counter=Counter(joku) 
    kaks = counter[1]
    f += 1
    
    

    
def prin():
    if len(joku) > 0:
        print("QAQ")
    else:
        print(len(teko))
        hei = ""
        for q in teko:
            hei += str(q)
            hei += " "
        hei.rstrip()
        print(hei)    

prin()






Test details

Test 1

Group: 1

Verdict:

input
1011001010

correct output
QAQ

user output
[0, 0, 1, 0, 0, 0]
QAQ

Test 2

Group: 1

Verdict: ACCEPTED

input
0000001001

correct output
3
1 1 1 

user output
3
2 1 1 

Test 3

Group: 1

Verdict: ACCEPTED

input
0111011100

correct output
3
2 1 1 

user output
4
1 1 1 1 

Test 4

Group: 1

Verdict:

input
0100100100

correct output
4
2 1 1 1 

user output
[0, 1]
QAQ

Test 5

Group: 1

Verdict:

input
1110010110

correct output
4
2 1 1 1 

user output
[1, 1]
4
3 2 1 1 

Test 6

Group: 1

Verdict: ACCEPTED

input
1111110110

correct output
3
1 1 1 

user output
3
2 1 1 

Test 7

Group: 1

Verdict:

input
0011110001

correct output
3
1 2 1 

user output
[1, 1]
3
3 1 1 

Test 8

Group: 1

Verdict: ACCEPTED

input
0111111000

correct output
2
1 1 

user output
2
1 1 

Test 9

Group: 1

Verdict: ACCEPTED

input
1111111100

correct output
2
1 1 

user output
2
1 1 

Test 10

Group: 1

Verdict: ACCEPTED

input
1000010011

correct output
3
2 1 1 

user output
4
1 1 1 1 

Test 11

Group: 1

Verdict: ACCEPTED

input
1101110000

correct output
3
1 1 1 

user output
3
2 1 1 

Test 12

Group: 1

Verdict: ACCEPTED

input
1101101100

correct output
4
1 2 1 1 

user output
5
2 1 1 1 1 

Test 13

Group: 1

Verdict: ACCEPTED

input
0100111110

correct output
3
1 1 1 

user output
3
1 1 1 

Test 14

Group: 1

Verdict:

input
1101001011

correct output
4
2 2 2 1 

user output
[0, 1, 0, 1]
5
2 1 1 1 1 

Test 15

Group: 1

Verdict:

input
1110110010

correct output
4
1 2 1 1 

user output
[1, 0, 1, 0]
4
3 2 1 1 

Test 16

Group: 1

Verdict:

input
0011011100

correct output
3
3 2 1 

user output
[1, 1, 1]
4
2 1 1 1 

Test 17

Group: 1

Verdict:

input
1100101011

correct output
QAQ

user output
[1, 0, 0, 0, 1]
[0, 0, 0, 1]
QAQ

Test 18

Group: 1

Verdict: ACCEPTED

input
1101100111

correct output
3
2 2 1 

user output
4
2 1 1 1 

Test 19

Group: 1

Verdict:

input
0110000100

correct output
3
2 1 1 

user output
[0, 1]
QAQ

Test 20

Group: 1

Verdict:

input
0000101000

correct output
QAQ

user output
[0, 0, 0, 1]
QAQ

Test 21

Group: 2

Verdict:

input
1110010100

correct output
QAQ

user output
[1, 0, 0, 1]
[0, 0, 1]
QAQ

Test 22

Group: 2

Verdict:

input
1110010000

correct output
3
2 1 1 

user output
[1, 1]
3
2 1 1 

Test 23

Group: 2

Verdict: ACCEPTED

input
1001101100

correct output
4
1 1 1 1 

user output
4
1 2 1 1 

Test 24

Group: 2

Verdict: ACCEPTED

input
0000000111

correct output
2
1 1 

user output
2
1 1 

Test 25

Group: 2

Verdict:

input
0011111110

correct output
2
2 1 

user output
[1]
2
2 1 

Test 26

Group: 2

Verdict:

input
1100101100

correct output
4
2 1 1 1 

user output
[1, 0, 1, 1]
4
2 2 1 1 

Test 27

Group: 2

Verdict:

input
0111101110

correct output
3
2 1 1 

user output
[1]
3
1 2 1 

Test 28

Group: 2

Verdict:

input
0000011011

correct output
3
2 1 1 

user output
[1, 1]
3
2 1 1 

Test 29

Group: 2

Verdict:

input
1110011101

correct output
3
3 2 1 

user output
[1, 1, 0]
[1]
3
3 2 1 

Test 30

Group: 2

Verdict: ACCEPTED

input
0001011011

correct output
4
1 1 1 1 

user output
4
2 2 1 1 

Test 31

Group: 2

Verdict: ACCEPTED

input
0010110011

correct output
4
1 1 1 1 

user output
4
2 1 1 1 

Test 32

Group: 2

Verdict: ACCEPTED

input
0011100000

correct output
2
2 1 

user output
3
1 1 1 

Test 33

Group: 2

Verdict:

input
1110100110

correct output
4
1 1 1 1 

user output
QAQ

Test 34

Group: 2

Verdict:

input
0110110111

correct output
4
2 1 1 1 

user output
[1, 1]
4
1 2 1 1 

Test 35

Group: 2

Verdict:

input
1110110010

correct output
4
1 2 1 1 

user output
[1, 0, 1, 0]
4
3 2 1 1 

Test 36

Group: 2

Verdict:

input
110011001100110011001010101010...

correct output
QAQ

user output
[1, 1, 1, 1, 1, 1, 1, 1, 1, 0,...

Test 37

Group: 2

Verdict:

input
110011001100110011001100101010...

correct output
QAQ

user output
[1, 1, 1, 1, 1, 1, 1, 1, 1, 1,...

Test 38

Group: 2

Verdict:

input
110011001100110011001100110011...

correct output
31
1 20 20 20 20 20 20 20 20 20 2...

user output
[1, 1, 1, 1, 1, 1, 1, 1, 1, 1,...

Test 39

Group: 2

Verdict:

input
010101010101010101010101010101...

correct output
48
2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

user output
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0,...

Test 40

Group: 2

Verdict:

input
011010000011111011110000110011...

correct output
23
13 13 12 11 11 11 11 10 9 9 9 ...

user output
[1, 0, 1, 1, 1, 1, 1, 0, 1, 0,...

Test 41

Group: 3

Verdict:

input
0010101000

correct output
QAQ

user output
[0, 0, 0, 0, 0, 1]
QAQ

Test 42

Group: 3

Verdict:

input
0100010110

correct output
4
2 1 1 1 

user output
[0, 1]
QAQ

Test 43

Group: 3

Verdict:

input
0100110110

correct output
4
2 1 1 1 

user output
[0, 1, 0, 1]
5
3 1 1 1 1 

Test 44

Group: 3

Verdict:

input
1110000001

correct output
2
2 1 

user output
[1]
2
2 1 

Test 45

Group: 3

Verdict:

input
0001001110

correct output
3
2 2 1 

user output
[1]
3
2 2 1 

Test 46

Group: 3

Verdict: ACCEPTED

input
0011100011

correct output
3
1 2 1 

user output
4
1 1 1 1 

Test 47

Group: 3

Verdict: ACCEPTED

input
0100111100

correct output
3
1 1 1 

user output
3
1 1 1 

Test 48

Group: 3

Verdict: ACCEPTED

input
0001001000

correct output
3
2 2 1 

user output
4
2 1 1 1 

Test 49

Group: 3

Verdict:

input
0100100010

correct output
4
2 1 1 1 

user output
[0, 1, 0]
4
1 2 1 1 

Test 50

Group: 3

Verdict:

input
1100101110

correct output
4
2 1 1 1 

user output
[1, 1]
4
3 2 1 1 

Test 51

Group: 3

Verdict:

input
1000111011

correct output
3
2 1 1 

user output
[0, 1]
QAQ

Test 52

Group: 3

Verdict: ACCEPTED

input
1000111111

correct output
2
1 1 

user output
2
1 1 

Test 53

Group: 3

Verdict: ACCEPTED

input
0110011100

correct output
3
2 1 1 

user output
4
1 1 1 1 

Test 54

Group: 3

Verdict:

input
0001000110

correct output
3
2 2 1 

user output
[1]
3
2 2 1 

Test 55

Group: 3

Verdict:

input
1110110010

correct output
4
1 2 1 1 

user output
[1, 0, 1, 0]
4
3 2 1 1 

Test 56

Group: 3

Verdict:

input
110011001100110011001100110011...

correct output
QAQ

user output
[1, 1, 1, 1, 1, 1, 1, 1, 1, 1,...

Test 57

Group: 3

Verdict:

input
110011001100110011001100110011...

correct output
QAQ

user output
[1, 1, 1, 1, 1, 1, 1, 1, 1, 1,...

Test 58

Group: 3

Verdict:

input
110011001100110011001100110011...

correct output
1501
1 1000 1000 1000 1000 1000 100...

user output
[1, 1, 1, 1, 1, 1, 1, 1, 1, 1,...

Test 59

Group: 3

Verdict:

input
010101010101010101010101010101...

correct output
2498
2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

user output
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0,...

Test 60

Group: 3

Verdict:

input
011100011001011111111000010110...

correct output
1272
1 1 648 647 646 646 645 645 64...

user output
[1, 1, 1, 1, 1, 1, 1, 1, 1, 1,...

Test 61

Group: 4

Verdict:

input
1110101110

correct output
QAQ

user output
4
2 1 1 1 

Test 62

Group: 4

Verdict:

input
0111001011

correct output
4
2 1 1 1 

user output
[0, 1, 0, 1]
4
2 1 1 1 

Test 63

Group: 4

Verdict:

input
1101111101

correct output
3
2 2 1 

user output
[1]
3
2 2 1 

Test 64

Group: 4

Verdict:

input
1001110001

correct output
3
2 1 1 

user output
[1]
3
1 2 1 

Test 65

Group: 4

Verdict: ACCEPTED

input
1000000011

correct output
2
1 1 

user output
2
1 1 

Test 66

Group: 4

Verdict: ACCEPTED

input
0100010111

correct output
4
1 1 1 1 

user output
4
1 1 1 1 

Test 67

Group: 4

Verdict:

input
0100111010

correct output
4
2 1 1 1 

user output
[0, 0, 1, 0, 0]
4
2 1 1 1 

Test 68

Group: 4

Verdict:

input
0010111101

correct output
4
1 1 1 1 

user output
[0, 1, 0]
4
2 1 1 1 

Test 69

Group: 4

Verdict: ACCEPTED

input
0011111000

correct output
2
2 1 

user output
3
1 1 1 

Test 70

Group: 4

Verdict:

input
1101001101

correct output
4
2 2 2 1 

user output
[0, 1, 0]
4
2 2 1 1 

Test 71

Group: 4

Verdict: ACCEPTED

input
0110111000

correct output
3
2 1 1 

user output
4
1 1 1 1 

Test 72

Group: 4

Verdict:

input
1100110111

correct output
3
3 2 1 

user output
[1, 1, 1]
4
3 1 1 1 

Test 73

Group: 4

Verdict: ACCEPTED

input
1110011111

correct output
2
2 1 

user output
3
1 1 1 

Test 74

Group: 4

Verdict:

input
1011000101

correct output
4
2 1 1 1 

user output
[0, 0, 1, 0, 0]
4
2 1 1 1 

Test 75

Group: 4

Verdict:

input
1110110010

correct output
4
1 2 1 1 

user output
[1, 0, 1, 0]
4
3 2 1 1 

Test 76

Group: 4

Verdict:

input
110011001100110011001100110011...

correct output
QAQ

user output
(empty)

Test 77

Group: 4

Verdict:

input
110011001100110011001100110011...

correct output
QAQ

user output
(empty)

Test 78

Group: 4

Verdict:

input
110011001100110011001100110011...

correct output
30001
1 20000 20000 20000 20000 2000...

user output
(empty)

Test 79

Group: 4

Verdict:

input
010101010101010101010101010101...

correct output
49998
2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

user output
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0,...

Test 80

Group: 4

Verdict:

input
111000110000011000001101010010...

correct output
25011
1 12471 12470 12469 12468 1246...

user output
(empty)