CSES - Datatähti 2019 alku - Results
Submission details
Task:Leimasin
Sender:PekaaniP
Submission time:2018-10-11 15:02:26 +0300
Language:Java
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#1ACCEPTED0.22 s1details
#20.23 s1details
#3ACCEPTED0.22 s1details
#40.23 s1details
#50.21 s1details
#6ACCEPTED0.21 s1details
#70.21 s1details
#80.22 s1details
#90.21 s1details
#100.21 s1details
#11ACCEPTED0.21 s1details
#120.21 s1details
#130.21 s1details
#14ACCEPTED0.21 s1details
#15ACCEPTED0.22 s2details
#160.22 s2details
#170.22 s2details
#180.23 s2details
#190.22 s2details
#20ACCEPTED0.23 s2details
#210.22 s2details
#220.22 s2details
#230.22 s2details
#240.23 s2details
#250.21 s2details
#260.22 s2details
#270.22 s2details
#28ACCEPTED0.23 s2details
#29ACCEPTED0.25 s3details
#300.22 s3details
#310.23 s3details
#320.23 s3details
#330.25 s3details
#34ACCEPTED0.25 s3details
#350.22 s3details
#360.22 s3details
#370.26 s3details
#380.24 s3details
#390.23 s3details
#400.22 s3details
#410.22 s3details
#42ACCEPTED0.21 s3details

Code

import java.util.Scanner;
public class main {

    public static void main(String[] args) {



        Scanner reader = new Scanner(System.in);

        char[] a = reader.nextLine().toCharArray();
        char[] b = reader.nextLine().toCharArray();
        char[] c = new char[a.length];

        int[] lista = new int[a.length+50];
        int stamp=0;
        int q;
        int i;
        int d;


        q=0;

        if(a[0] != b[0] || a[a.length-1] != b[b.length-1]){
            System.out.println("-1");
            System.exit(0);
        }

        while(q <= a.length-b.length){

            if(a[q] == b[0]){
                i=0;
                while(i<b.length && a[q+i]==b[i]){
                    i++;
                }
                if(i == b.length){
                    lista[stamp]=q;
                    stamp++;
                }
            }
            q++;
        }

        int or = stamp-1;
        d=stamp-1;

        while(d > 0 ){
            q=lista[d];
            while(q >= lista[d-1]){
                if (a[q] != '.' && a[q] != c[q]){
                    i=0;
                    while(b[i] != a[q]){
                        i++;
                        if(i==b.length || q-i < 0){
                            System.out.println("-1");
                            System.exit(0);
                        }
                        lista[stamp]=q-i;
                        stamp++;
                    }
                }
            q--;
            }
            d--;

        }
        q=lista[0];
        while(q >= 0){
            if (a[q] != '.' && a[q] != c[q]){
                i=0;
                while(b[i] != a[q]){
                    i++;
                    if(i==b.length || q-i < 0){
                        System.out.println("-1");
                        System.exit(0);
                    }
                    lista[stamp]=q-i;
                    stamp++;
                }
            }

            q--;
        }
        q=lista[or];
        while(q < a.length){
            if (a[q] != '.' && a[q] != c[q]){
                i=b.length-1;
                while(b[i] != a[q]){
                    i--;
                    if(i==0 || q-i > b.length){
                        System.out.println("-1");
                        System.exit(0);
                    }
                }
                lista[stamp]=q-i;
                stamp++;
            }

            q++;
        }

        System.out.println(stamp+1);
        while(stamp >= 0 ){
            System.out.println(lista[stamp]+1);
            stamp--;
        }
    }
}

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
12
1
10
10
9
...

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: ACCEPTED

input
AABAAABAAA
AABAA

correct output
4
6 5 2 1 

user output
11
1
6
5
4
...

Test 4

Group: 1

Verdict:

input
BAAAAAABBB
BAAAAAABB

correct output
2
2 1 

user output
12
1
2
1
0
...

Test 5

Group: 1

Verdict:

input
AAABBABBAA
AAABBABBAA

correct output
1

user output
12
1
1
0
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
12
1
10
10
9
...

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:

input
JQZYVSIWTE
JQZVYSIWTE

correct output
-1

user output
(empty)

Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: -1
	at main.main(main.java:83)

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: ACCEPTED

input
BBBBBBBBBBBBBBBBBBBBBBBBBBBBBB...

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

user output
102
1
100
100
99
...

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
102
1
51
50
50
...

Test 18

Group: 2

Verdict:

input
AAABABAAAABBBBBABABBAABBABABBA...

correct output
2
1 2 

user output
101
1
2
2
0
...

Test 19

Group: 2

Verdict:

input
AABABBBBBBAABBABABBBBBBAABBAAA...

correct output
1

user output
102
1
1
1
-1
...

Test 20

Group: 2

Verdict: ACCEPTED

input
SSSSSSSSSSSSSSSSSSSSSSSSSSSSSS...

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

user output
102
1
100
100
99
...

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)

Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 150
	at main.main(main.java:57)

Test 22

Group: 2

Verdict:

input
VYQFNHMVTKOEYCXWINLKLHVFMEPQEU...

correct output
3
51 2 1 

user output
(empty)

Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 150
	at main.main(main.java:57)

Test 23

Group: 2

Verdict:

input
IISNROLHLOJIWPTVFHFLUQRIROVLYP...

correct output
2
1 2 

user output
101
1
2
2
2
...

Test 24

Group: 2

Verdict:

input
WPMEMERJXXADLKONUZPUUFTPSXDHIV...

correct output
1

user output
102
1
1
1
1
...

Test 25

Group: 2

Verdict:

input
LNSBGZAWFJZAWFJWFJLNSBLNSBGZAL...

correct output
-1

user output
(empty)

Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 150
	at main.main(main.java:57)

Test 26

Group: 2

Verdict:

input
IPIPYFUMRIPYFUMRLPIIIPYFIPYFUM...

correct output
-1

user output
(empty)

Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: -1
	at main.main(main.java:83)

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: ACCEPTED

input
BBBBBBBBBBBBBBBBBBBBBBBBBBBBBB...

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

user output
1002
1
1000
1000
999
...

Test 30

Group: 3

Verdict:

input
BBBBBBBBAABBBBBBBBAABBBBBBBAAB...

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

user output
(empty)

Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 1050
	at main.main(main.java:57)

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
1002
1
2
1
0
...

Test 33

Group: 3

Verdict:

input
BAAABBABBBAAAABAAAABBBBABAABAA...

correct output
1

user output
1002
1
1
1
-1
...

Test 34

Group: 3

Verdict: ACCEPTED

input
UUUUUUUUUUUUUUUUUUUUUUUUUUUUUU...

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

user output
1002
1
1000
1000
999
...

Test 35

Group: 3

Verdict:

input
KSBMRKKSBMRZXBDKSKSBMRZXBDAMRZ...

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

user output
(empty)

Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 1050
	at main.main(main.java:57)

Test 36

Group: 3

Verdict:

input
ILYLILYLVJILYLVJZCCQDLFRLSXZDM...

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

user output
(empty)

Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 1050
	at main.main(main.java:57)

Test 37

Group: 3

Verdict:

input
ZZJZNKHDLJBPXIAZNJIIGBEEJFSDAF...

correct output
2
1 2 

user output
1001
1
2
2
2
...

Test 38

Group: 3

Verdict:

input
FIMWTOLSRKOWYDPCOFUJZMXJEJFKSU...

correct output
1

user output
1002
1
1
1
1
...

Test 39

Group: 3

Verdict:

input
AIVHCGUMKSTIYBRNPONXHRFVBKPYHX...

correct output
-1

user output
(empty)

Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 1050
	at main.main(main.java:57)

Test 40

Group: 3

Verdict:

input
QPMSLIDCLFLBEXGVVQQNSVKJYXGETC...

correct output
-1

user output
(empty)

Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 1050
	at main.main(main.java:57)

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