CSES - Datatähti 2019 alku - Results
Submission details
Task:Leimasin
Sender:kaurip
Submission time:2018-10-09 09:16:20 +0300
Language:Python3
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.04 s1details
#20.05 s1details
#30.06 s1details
#40.05 s1details
#50.06 s1details
#60.04 s1details
#70.06 s1details
#80.05 s1details
#90.05 s1details
#100.04 s1details
#11ACCEPTED0.04 s1details
#12ACCEPTED0.05 s1details
#130.04 s1details
#14ACCEPTED0.04 s1details
#150.04 s2details
#160.04 s2details
#170.05 s2details
#180.05 s2details
#190.06 s2details
#200.06 s2details
#210.05 s2details
#220.06 s2details
#230.05 s2details
#240.05 s2details
#25ACCEPTED0.05 s2details
#26ACCEPTED0.05 s2details
#270.05 s2details
#28ACCEPTED0.05 s2details
#290.04 s3details
#300.04 s3details
#310.05 s3details
#320.05 s3details
#330.04 s3details
#340.04 s3details
#350.04 s3details
#360.04 s3details
#370.04 s3details
#380.04 s3details
#39ACCEPTED0.03 s3details
#40ACCEPTED0.04 s3details
#410.04 s3details
#42ACCEPTED0.04 s3details

Code

# row = input()
# stamp = input()
row = "AABCABAABCAABCBCBCB"
stamp = "ABC"
stampl = len(stamp)
rowl = len(row)

stamps = []
fulls = []

def give_results():
    print(len(stamps))
    for pos in reversed(stamps):
        print(pos+1, end = " ")

def fail():
    print(-1)

def front(endpos):
    #endpos is the last not included
    if endpos == 0:
        return 0
    for f in reversed(range(1,stampl)):
        if endpos-f < 0 :
            continue
        if row[endpos-f:endpos] == stamp[0:f]:
            stamps.append(endpos-f)
            return front(endpos-f)
    return -1

def tail(startpos):
    startpos += 1
    #startpos is the last not included
    if startpos == rowl:
        return 0
    for f in reversed(range(1,stampl)):
        if startpos+f > rowl:
            continue
        if row[startpos:startpos+f] == stamp[stampl-f:stampl]:
            stamps.append(startpos-stampl+f)
            return tail(startpos+f-1)
    return -1

def full(startpos):
    index = row.find(stamp,startpos)
    if index == -1:
        return -1
    stamps.append(index)
    fulls.append(index)
    return full(index+stampl)

def middle(startpos,endpos):
    startpos += 1
    ml = endpos-startpos
    if ml == 0:
        return 0
    for f in reversed(range(1,stampl)):
        if f < ml:
            ml = f
        if row[startpos:startpos+f][0:ml] == stamp[stampl-f:stampl][0:ml]:
            stamps.append(startpos-stampl+f)
            return middle(startpos+f,endpos)
        if row[endpos-f:endpos][f-ml:f] == stamp[0:f][f-ml:f]:
            stamps.append(endpos-f)
            return middle(startpos-1,endpos-f)
    return -1
    

def main():

    full(0)
    
    if(len(fulls) == 0):
        fail()
        return
    
    if front(fulls[0]) == -1:
        fail()
        return

    if tail(fulls[len(fulls)-1]+stampl-1) == -1:
        fail()
        return

    for i in range(0,len(fulls)-1):
        if middle(fulls[i]+stampl-1,fulls[i+1]) == -1:
            fail()
            return 0

    give_results()

main()

Test details

Test 1

Group: 1

Verdict:

input
BBBBBBBBBB
B

correct output
10
10 9 8 7 6 5 4 3 2 1 

user output
-1

Test 2

Group: 1

Verdict:

input
AABBABABAB
AB

correct output
6
1 9 7 5 3 2 

user output
-1

Test 3

Group: 1

Verdict:

input
AABAAABAAA
AABAA

correct output
4
6 5 2 1 

user output
-1

Test 4

Group: 1

Verdict:

input
BAAAAAABBB
BAAAAAABB

correct output
2
2 1 

user output
-1

Test 5

Group: 1

Verdict:

input
AAABBABBAA
AAABBABBAA

correct output
1

user output
-1

Test 6

Group: 1

Verdict:

input
GGGGGGGGGG
G

correct output
10
10 9 8 7 6 5 4 3 2 1 

user output
-1

Test 7

Group: 1

Verdict:

input
QUUQUUQUQU
QU

correct output
6
9 7 5 4 2 1 

user output
-1

Test 8

Group: 1

Verdict:

input
DWXDWDWXHJ
DWXHJ

correct output
3
1 4 6 

user output
-1

Test 9

Group: 1

Verdict:

input
FSOCRDGQBB
FSOCRDGQB

correct output
2
2 1 

user output
-1

Test 10

Group: 1

Verdict:

input
OETMIMPUPD
OETMIMPUPD

correct output
1

user output
-1

Test 11

Group: 1

Verdict: ACCEPTED

input
DOWEUOWUEU
DOWEU

correct output
-1

user output
-1

Test 12

Group: 1

Verdict: ACCEPTED

input
JQZYVSIWTE
JQZVYSIWTE

correct output
-1

user output
-1

Test 13

Group: 1

Verdict:

input
ABABABABA
ABA

correct output
4
7 5 3 1 

user output
-1

Test 14

Group: 1

Verdict: ACCEPTED

input
AAAAAAAAAA
AAAAAAAAAB

correct output
-1

user output
-1

Test 15

Group: 2

Verdict:

input
BBBBBBBBBBBBBBBBBBBBBBBBBBBBBB...

correct output
100
100 99 98 97 96 95 94 93 92 91...

user output
-1

Test 16

Group: 2

Verdict:

input
BABABAAAAAAAAAAAAAAAAAABABAAAA...

correct output
36
87 43 24 1 91 79 69 68 67 66 6...

user output
-1

Test 17

Group: 2

Verdict:

input
ABABAAAAABABBBBAAAABBBBAABBBBB...

correct output
22
51 50 43 41 31 28 26 24 21 20 ...

user output
-1

Test 18

Group: 2

Verdict:

input
AAABABAAAABBBBBABABBAABBABABBA...

correct output
2
1 2 

user output
-1

Test 19

Group: 2

Verdict:

input
AABABBBBBBAABBABABBBBBBAABBAAA...

correct output
1

user output
-1

Test 20

Group: 2

Verdict:

input
SSSSSSSSSSSSSSSSSSSSSSSSSSSSSS...

correct output
100
100 99 98 97 96 95 94 93 92 91...

user output
-1

Test 21

Group: 2

Verdict:

input
NNNININIMNIMKLMXCNIMKLMXCDEIMK...

correct output
18
1 2 3 74 5 79 58 7 84 64 37 10...

user output
-1

Test 22

Group: 2

Verdict:

input
VYQFNHMVTKOEYCXWINLKLHVFMEPQEU...

correct output
3
51 2 1 

user output
-1

Test 23

Group: 2

Verdict:

input
IISNROLHLOJIWPTVFHFLUQRIROVLYP...

correct output
2
1 2 

user output
-1

Test 24

Group: 2

Verdict:

input
WPMEMERJXXADLKONUZPUUFTPSXDHIV...

correct output
1

user output
-1

Test 25

Group: 2

Verdict: ACCEPTED

input
LNSBGZAWFJZAWFJWFJLNSBLNSBGZAL...

correct output
-1

user output
-1

Test 26

Group: 2

Verdict: ACCEPTED

input
IPIPYFUMRIPYFUMRLPIIIPYFIPYFUM...

correct output
-1

user output
-1

Test 27

Group: 2

Verdict:

input
ABABABABABABABABABABABABABABAB...

correct output
49
97 95 93 91 89 87 85 83 81 79 ...

user output
-1

Test 28

Group: 2

Verdict: ACCEPTED

input
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
-1

user output
-1

Test 29

Group: 3

Verdict:

input
BBBBBBBBBBBBBBBBBBBBBBBBBBBBBB...

correct output
1000
1000 999 998 997 996 995 994 9...

user output
-1

Test 30

Group: 3

Verdict:

input
BBBBBBBBAABBBBBBBBAABBBBBBBAAB...

correct output
218
1 626 607 519 415 5 975 957 92...

user output
-1

Test 31

Group: 3

Verdict:

input
AABBBABAABABAAABBAAAAAAABBBAAB...

correct output
55
569 639 403 761 663 437 172 90...

user output
-1

Test 32

Group: 3

Verdict:

input
ABBAAABAAABAAAAABBABABBABBABBB...

correct output
2
2 1 

user output
-1

Test 33

Group: 3

Verdict:

input
BAAABBABBBAAAABAAAABBBBABAABAA...

correct output
1

user output
-1

Test 34

Group: 3

Verdict:

input
UUUUUUUUUUUUUUUUUUUUUUUUUUUUUU...

correct output
1000
1000 999 998 997 996 995 994 9...

user output
-1

Test 35

Group: 3

Verdict:

input
KSBMRKKSBMRZXBDKSKSBMRZXBDAMRZ...

correct output
178
723 731 1 935 857 820 760 735 ...

user output
-1

Test 36

Group: 3

Verdict:

input
ILYLILYLVJILYLVJZCCQDLFRLSXZDM...

correct output
21
671 54 747 504 113 1 856 764 5...

user output
-1

Test 37

Group: 3

Verdict:

input
ZZJZNKHDLJBPXIAZNJIIGBEEJFSDAF...

correct output
2
1 2 

user output
-1

Test 38

Group: 3

Verdict:

input
FIMWTOLSRKOWYDPCOFUJZMXJEJFKSU...

correct output
1

user output
-1

Test 39

Group: 3

Verdict: ACCEPTED

input
AIVHCGUMKSTIYBRNPONXHRFVBKPYHX...

correct output
-1

user output
-1

Test 40

Group: 3

Verdict: ACCEPTED

input
QPMSLIDCLFLBEXGVVQQNSVKJYXGETC...

correct output
-1

user output
-1

Test 41

Group: 3

Verdict:

input
ABABABABABABABABABABABABABABAB...

correct output
499
997 995 993 991 989 987 985 98...

user output
-1

Test 42

Group: 3

Verdict: ACCEPTED

input
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
-1

user output
-1