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

Code

import threading
import queue


class Etsi(threading.Thread):
    def __init__(self, k1, ala, tav, lei):
        threading.Thread.__init__(self)
        self.kelaaja1 = k1
        self.ala = ala
        self.t = tav
        self.lei = lei

    def run(self):
        loydetty = 0
        while self.kelaaja1 >= self.ala:
            if self.kelaaja1 in paikat:
                self.kelaaja1 -= 1
                continue
            kelaaja2 = int(self.kelaaja1)
            kelaaja3 = 0
            oikein = 0
            while kelaaja3 < len(self.lei):

                if self.lei[kelaaja3] == self.t[kelaaja2] or self.t[kelaaja2] == "?":
                    oikein += 1
                    kelaaja2 += 1
                    kelaaja3 += 1
                else:
                    break

            if oikein == len(self.lei):
                loydetty += 1
                jono.put(self.kelaaja1)
                break
            self.kelaaja1 -= 1
        if loydetty == 0:
            jono.put("n")


tavoite = list(input())
leimasin = list(input())
raja = len(tavoite)-len(leimasin)
smax = 10*len(tavoite)
siirrot = 0
paikat = []
vanhat_paikat = 0
jono = queue.Queue()

while siirrot < smax:

    raja = len(tavoite) - len(leimasin)
    lankoja = 0
    with jono.mutex:
        jono.queue.clear()

    while raja > 0:
        ylaraja = int(raja)
        raja -= 10
        if raja < 0:
            raja = 0
        lankoja += 1
        Etsi(ylaraja, raja, tavoite, leimasin).start()

    while True:
        try:
            kohta = jono.get()
            lankoja -= 1
            try:
                kohta = int(kohta)
                paikat.append(kohta)
                siirrot += 1
                for i in range(kohta, kohta + len(leimasin)):
                    tavoite[i] = "?"
                break
            except ValueError:
                pass
        except queue.Empty:
            pass

    if tavoite == ["?" for i in tavoite]:
        print(siirrot)
        printtaus = [print(d, end=" ") for d in reversed([i + 1 for i in paikat])]
        break

    if len(paikat) == vanhat_paikat:
        print(-1)
        break

    vanhat_paikat = len(paikat)

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
1 2 3 4 5 6 7 8 9 10 

Test 2

Group: 1

Verdict: ACCEPTED

input
AABBABABAB
AB

correct output
6
1 9 7 5 3 2 

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

Test 3

Group: 1

Verdict: ACCEPTED

input
AABAAABAAA
AABAA

correct output
4
6 5 2 1 

user output
4
1 4 6 5 

Test 4

Group: 1

Verdict: ACCEPTED

input
BAAAAAABBB
BAAAAAABB

correct output
2
2 1 

user output
2
2 1 

Test 5

Group: 1

Verdict:

input
AAABBABBAA
AAABBABBAA

correct output
1

user output
(empty)

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
1 2 3 4 5 6 7 8 9 10 

Test 7

Group: 1

Verdict: ACCEPTED

input
QUUQUUQUQU
QU

correct output
6
9 7 5 4 2 1 

user output
8
2 1 6 5 4 8 7 9 

Test 8

Group: 1

Verdict: ACCEPTED

input
DWXDWDWXHJ
DWXHJ

correct output
3
1 4 6 

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

input
OETMIMPUPD
OETMIMPUPD

correct output
1

user output
(empty)

Test 11

Group: 1

Verdict:

input
DOWEUOWUEU
DOWEU

correct output
-1

user output
(empty)

Test 12

Group: 1

Verdict:

input
JQZYVSIWTE
JQZVYSIWTE

correct output
-1

user output
(empty)

Test 13

Group: 1

Verdict: ACCEPTED

input
ABABABABA
ABA

correct output
4
7 5 3 1 

user output
6
1 4 3 6 5 7 

Test 14

Group: 1

Verdict:

input
AAAAAAAAAA
AAAAAAAAAB

correct output
-1

user output
(empty)

Test 15

Group: 2

Verdict: ACCEPTED

input
BBBBBBBBBBBBBBBBBBBBBBBBBBBBBB...

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

user output
100
1 2 3 4 5 6 7 8 9 10 11 12 13 ...

Test 16

Group: 2

Verdict: ACCEPTED

input
BABABAAAAAAAAAAAAAAAAAABABAAAA...

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

user output
90
1 4 5 6 7 8 9 11 12 13 14 15 1...

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:

input
AABABBBBBBAABBABABBBBBBAABBAAA...

correct output
1

user output
(empty)

Test 20

Group: 2

Verdict: ACCEPTED

input
SSSSSSSSSSSSSSSSSSSSSSSSSSSSSS...

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

user output
100
1 2 3 4 5 6 7 8 9 10 11 12 13 ...

Test 21

Group: 2

Verdict: ACCEPTED

input
NNNININIMNIMKLMXCNIMKLMXCDEIMK...

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

user output
91
1 2 4 3 6 5 8 9 7 11 12 13 14 ...

Test 22

Group: 2

Verdict: ACCEPTED

input
VYQFNHMVTKOEYCXWINLKLHVFMEPQEU...

correct output
3
51 2 1 

user output
3
1 50 51 

Test 23

Group: 2

Verdict: ACCEPTED

input
IISNROLHLOJIWPTVFHFLUQRIROVLYP...

correct output
2
1 2 

user output
2
1 2 

Test 24

Group: 2

Verdict:

input
WPMEMERJXXADLKONUZPUUFTPSXDHIV...

correct output
1

user output
(empty)

Test 25

Group: 2

Verdict:

input
LNSBGZAWFJZAWFJWFJLNSBLNSBGZAL...

correct output
-1

user output
(empty)

Test 26

Group: 2

Verdict:

input
IPIPYFUMRIPYFUMRLPIIIPYFIPYFUM...

correct output
-1

user output
(empty)

Test 27

Group: 2

Verdict: ACCEPTED

input
ABABABABABABABABABABABABABABAB...

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

user output
96
1 4 3 6 5 8 7 10 9 12 11 14 13...

Test 28

Group: 2

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
-1

user output
(empty)

Test 29

Group: 3

Verdict:

input
BBBBBBBBBBBBBBBBBBBBBBBBBBBBBB...

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

user output
(empty)

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:

input
BAAABBABBBAAAABAAAABBBBABAABAA...

correct output
1

user output
(empty)

Test 34

Group: 3

Verdict:

input
UUUUUUUUUUUUUUUUUUUUUUUUUUUUUU...

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

user output
(empty)

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:

input
FIMWTOLSRKOWYDPCOFUJZMXJEJFKSU...

correct output
1

user output
(empty)

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:

input
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
-1

user output
(empty)