CSES - Datatähti 2019 alku - Results
Submission details
Task:Leimasin
Sender:1
Submission time:2018-10-03 22:09:30 +0300
Language:Python3
Status:READY
Result:29
Feedback
groupverdictscore
#1ACCEPTED29
#20
#30
Test results
testverdicttimegroup
#1ACCEPTED0.06 s1details
#2ACCEPTED0.06 s1details
#3ACCEPTED0.04 s1details
#4ACCEPTED0.05 s1details
#5ACCEPTED0.05 s1details
#6ACCEPTED0.06 s1details
#7ACCEPTED0.05 s1details
#8ACCEPTED0.04 s1details
#9ACCEPTED0.04 s1details
#10ACCEPTED0.05 s1details
#11ACCEPTED0.05 s1details
#12ACCEPTED0.04 s1details
#13ACCEPTED0.05 s1details
#14ACCEPTED0.05 s1details
#15--2details
#16--2details
#17ACCEPTED0.06 s2details
#18ACCEPTED0.04 s2details
#19ACCEPTED0.05 s2details
#20--2details
#21--2details
#22ACCEPTED0.04 s2details
#23ACCEPTED0.04 s2details
#24ACCEPTED0.05 s2details
#25--2details
#26ACCEPTED0.04 s2details
#27--2details
#28ACCEPTED0.05 s2details
#290.10 s3details
#30--3details
#31--3details
#32ACCEPTED0.23 s3details
#33ACCEPTED0.05 s3details
#340.10 s3details
#35--3details
#36--3details
#37ACCEPTED0.06 s3details
#38ACCEPTED0.05 s3details
#39--3details
#40--3details
#41--3details
#42ACCEPTED0.05 s3details

Code

string = input()
s = input()

def listOccurenceIndices(r, x):
	occs = []
	for i in range(0, len(r)):
		if r[i] == x:
			occs.append(i)
	return occs

def leftComplete(string, s, i, sindex):
	if i == -1:
		return string
	r = list(string)
	for x in range(sindex, sindex + len(s) - i - 1):
		r[x] = s[i + x - sindex + 1]
	return "".join(r)

def rightComplete(string, s, j, sindex):
	if j == -1:
		return string
	r = list(string)
	for x in range(sindex + len(s) - j, sindex + len(s)):
		r[x] = s[x - sindex - len(s) + j]
	return "".join(r)

def deleteStamp(string, index, l):
	r = list(string)
	for i in range(index, index + l):
		r[i] = "?"
	return "".join(r)


def brancher(string, s, locs):
	sindex = string.find(s)
	if sindex == -1:
		if string == "?" * len(string):
			return locs
		else:
			return -1
	leftCompletionStarts = [-1]
	rightCompletionStarts = [-1]
	if sindex != 0:
		leftCompletionStarts = leftCompletionStarts + list(filter(lambda x: x <= sindex - 1, listOccurenceIndices(list(s), string[sindex - 1])))
	if sindex + len(s) != len(string):
		rightCompletionStarts = rightCompletionStarts + list(filter(lambda x: len(s) - x <= len(string) - sindex + len(s) + 1, listOccurenceIndices(list(s), string[sindex + len(s)])))
	for i in leftCompletionStarts:
		for j in rightCompletionStarts:
			stringLR = leftComplete(rightComplete(deleteStamp(string, sindex, len(s)), s, j, sindex), s, i, sindex)
			stringRL = rightComplete(leftComplete(deleteStamp(string, sindex, len(s)), s, i, sindex), s, j, sindex)
			newLocs = locs + [sindex]
			locList1 = brancher(stringLR, s, newLocs)
			locList2 = brancher(stringRL, s, newLocs)
			if locList1 != -1:
				return locList1
			if locList2 != -1:
				return locList2
	return -1

res = brancher(string, s, [])
if res == -1:
	print(res)
else:
	print(len(res))
	print(" ".join(map(lambda x: str(x + 1), res[::-1])))

Test details

Test 1

Group: 1

Verdict: ACCEPTED

input
BBBBBBBBBB
B

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

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

Test 2

Group: 1

Verdict: ACCEPTED

input
AABBABABAB
AB

correct output
6
1 9 7 5 3 2 

user output
6
9 7 5 3 1 2

Test 3

Group: 1

Verdict: ACCEPTED

input
AABAAABAAA
AABAA

correct output
4
6 5 2 1 

user output
3
6 5 1

Test 4

Group: 1

Verdict: ACCEPTED

input
BAAAAAABBB
BAAAAAABB

correct output
2
2 1 

user output
2
2 1

Test 5

Group: 1

Verdict: ACCEPTED

input
AAABBABBAA
AAABBABBAA

correct output
1

user output
1
1

Test 6

Group: 1

Verdict: ACCEPTED

input
GGGGGGGGGG
G

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

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

Test 7

Group: 1

Verdict: ACCEPTED

input
QUUQUUQUQU
QU

correct output
6
9 7 5 4 2 1 

user output
6
9 7 5 4 2 1

Test 8

Group: 1

Verdict: ACCEPTED

input
DWXDWDWXHJ
DWXHJ

correct output
3
1 4 6 

user output
3
1 4 6

Test 9

Group: 1

Verdict: ACCEPTED

input
FSOCRDGQBB
FSOCRDGQB

correct output
2
2 1 

user output
2
2 1

Test 10

Group: 1

Verdict: ACCEPTED

input
OETMIMPUPD
OETMIMPUPD

correct output
1

user output
1
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: ACCEPTED

input
ABABABABA
ABA

correct output
4
7 5 3 1 

user output
4
7 5 3 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
(empty)

Test 16

Group: 2

Verdict:

input
BABABAAAAAAAAAAAAAAAAAABABAAAA...

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

user output
(empty)

Test 17

Group: 2

Verdict: ACCEPTED

input
ABABAAAAABABBBBAAAABBBBAABBBBB...

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

user output
5
51 50 43 41 1

Test 18

Group: 2

Verdict: ACCEPTED

input
AAABABAAAABBBBBABABBAABBABABBA...

correct output
2
1 2 

user output
2
1 2

Test 19

Group: 2

Verdict: ACCEPTED

input
AABABBBBBBAABBABABBBBBBAABBAAA...

correct output
1

user output
1
1

Test 20

Group: 2

Verdict:

input
SSSSSSSSSSSSSSSSSSSSSSSSSSSSSS...

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

user output
(empty)

Test 21

Group: 2

Verdict:

input
NNNININIMNIMKLMXCNIMKLMXCDEIMK...

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

user output
(empty)

Test 22

Group: 2

Verdict: ACCEPTED

input
VYQFNHMVTKOEYCXWINLKLHVFMEPQEU...

correct output
3
51 2 1 

user output
2
51 1

Test 23

Group: 2

Verdict: ACCEPTED

input
IISNROLHLOJIWPTVFHFLUQRIROVLYP...

correct output
2
1 2 

user output
2
1 2

Test 24

Group: 2

Verdict: ACCEPTED

input
WPMEMERJXXADLKONUZPUUFTPSXDHIV...

correct output
1

user output
1
1

Test 25

Group: 2

Verdict:

input
LNSBGZAWFJZAWFJWFJLNSBLNSBGZAL...

correct output
-1

user output
(empty)

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
(empty)

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
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 60, in <module>
    res = brancher(string, s, [])
  File "input/code.py", line 52, in brancher
    locList1 = brancher(stringLR, s, newLocs)
  File "input/code.py", line 52, in brancher
    locList1 = brancher(stringLR, s, newLocs)
  File "input/code.py", line 52, in brancher
    locList1 = brancher(stringLR, s, newLocs)
  [Previous line repeated 991 more times]
  File "input/code.py", line 46, in brancher
    rightCompletionStarts = rightCompletionStarts + list(filter(lambda x: len(s) - x <= len(string) - sindex + len(s) + 1, listOccurenceIndices(list(s), string[sindex + len(s)])))
  File "input/code.py", line 46, in <lambda>
    rightCompletionStarts = rightCompletionStarts + list(filter(lambda x: len(s) - x <= len(string) - sindex + len(s) + 1, listOccurenceIndices(list(s), string[sindex + len(s)])))
RecursionError: maximum recursion depth exceeded in comparison

Test 30

Group: 3

Verdict:

input
BBBBBBBBAABBBBBBBBAABBBBBBBAAB...

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

user output
(empty)

Test 31

Group: 3

Verdict:

input
AABBBABAABABAAABBAAAAAAABBBAAB...

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

user output
(empty)

Test 32

Group: 3

Verdict: ACCEPTED

input
ABBAAABAAABAAAAABBABABBABBABBB...

correct output
2
2 1 

user output
2
2 1

Test 33

Group: 3

Verdict: ACCEPTED

input
BAAABBABBBAAAABAAAABBBBABAABAA...

correct output
1

user output
1
1

Test 34

Group: 3

Verdict:

input
UUUUUUUUUUUUUUUUUUUUUUUUUUUUUU...

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

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 60, in <module>
    res = brancher(string, s, [])
  File "input/code.py", line 52, in brancher
    locList1 = brancher(stringLR, s, newLocs)
  File "input/code.py", line 52, in brancher
    locList1 = brancher(stringLR, s, newLocs)
  File "input/code.py", line 52, in brancher
    locList1 = brancher(stringLR, s, newLocs)
  [Previous line repeated 991 more times]
  File "input/code.py", line 46, in brancher
    rightCompletionStarts = rightCompletionStarts + list(filter(lambda x: len(s) - x <= len(string) - sindex + len(s) + 1, listOccurenceIndices(list(s), string[sindex + len(s)])))
  File "input/code.py", line 46, in <lambda>
    rightCompletionStarts = rightCompletionStarts + list(filter(lambda x: len(s) - x <= len(string) - sindex + len(s) + 1, listOccurenceIndices(list(s), string[sindex + len(s)])))
RecursionError: maximum recursion depth exceeded in comparison

Test 35

Group: 3

Verdict:

input
KSBMRKKSBMRZXBDKSKSBMRZXBDAMRZ...

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

user output
(empty)

Test 36

Group: 3

Verdict:

input
ILYLILYLVJILYLVJZCCQDLFRLSXZDM...

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

user output
(empty)

Test 37

Group: 3

Verdict: ACCEPTED

input
ZZJZNKHDLJBPXIAZNJIIGBEEJFSDAF...

correct output
2
1 2 

user output
2
1 2

Test 38

Group: 3

Verdict: ACCEPTED

input
FIMWTOLSRKOWYDPCOFUJZMXJEJFKSU...

correct output
1

user output
1
1

Test 39

Group: 3

Verdict:

input
AIVHCGUMKSTIYBRNPONXHRFVBKPYHX...

correct output
-1

user output
(empty)

Test 40

Group: 3

Verdict:

input
QPMSLIDCLFLBEXGVVQQNSVKJYXGETC...

correct output
-1

user output
(empty)

Test 41

Group: 3

Verdict:

input
ABABABABABABABABABABABABABABAB...

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

user output
(empty)

Test 42

Group: 3

Verdict: ACCEPTED

input
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
-1

user output
-1