CSES - Datatähti 2019 alku - Results
Submission details
Task:Taulukko
Sender:PekaaniP
Submission time:2018-10-12 11:09:31 +0300
Language:Java
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
#40
Test results
testverdicttimegroup
#10.22 s1details
#20.21 s1details
#30.22 s1details
#40.22 s1details
#50.22 s1details
#60.22 s1details
#70.22 s1details
#80.22 s1details
#90.23 s1details
#100.22 s1details
#110.22 s1details
#120.22 s1details
#130.23 s1details
#140.23 s1details
#150.26 s2details
#160.26 s2details
#170.27 s2details
#180.26 s2details
#190.26 s2details
#200.26 s2details
#210.27 s2details
#220.26 s2details
#230.25 s2details
#240.27 s2details
#250.24 s2details
#260.28 s2details
#270.26 s2details
#280.28 s2details
#290.46 s3details
#300.80 s3details
#310.46 s3details
#320.47 s3details
#330.47 s3details
#340.47 s3details
#350.81 s3details
#360.46 s3details
#370.46 s4details
#380.81 s4details
#390.45 s4details
#400.46 s4details
#410.45 s4details
#420.79 s4details
#430.54 s4details
#440.57 s4details
#450.65 s4details
#460.46 s4details
#470.64 s4details
#480.80 s4details
#490.46 s4details
#500.80 s4details
#510.45 s4details
#520.81 s4details

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();
        int [] lista = new int[a.length*8];
        int stamp=0;
        int q;
        int i;
        int d;
        int c;
        int ab;
        int ln;
        boolean bool;
        boolean morebool;


        q=0;
        lista[0]=b.length;
        stamp++;
        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++;
                    i=0;
                    while(i<b.length){
                        a[q+i]='.';
                        i++;
                    }
                }
            }
            q++;
        }




q=a.length-b.length;
        while(q >= 0){
                bool=true;
                morebool=false;
                ab=0;
                while(ab < b.length){
                    if(a[q+ab] != b[ab] && a[q+ab]!='.'){
                        bool=false;

                    }
                    if(a[q+ab]!= '.'){
                        morebool=true;
                    }
                    ab++;
                }
                if(bool&& morebool){
                    lista[stamp]=q;
                    stamp++;
                    c=0;
                    while (c<b.length){
                        a[q+c]='.';
                        c++;
                    }
                }
                q--;
            }

            q=0;
        while(q <= a.length-b.length){
            bool=true;
            morebool=false;
            ab=0;
            while(ab < b.length){
                if(a[q+ab] != b[ab] && a[q+ab]!='.'){
                    bool=false;

                }
                if(a[q+ab]!= '.'){
                    morebool=true;
                }
                ab++;
            }
            if(bool&& morebool){
                lista[stamp]=q;
                stamp++;
                c=0;
                while (c<b.length){
                    a[q+c]='.';
                    c++;
                }
            }
            q++;
        }


        q=a.length-b.length;
        while(q >= 0){
            bool=true;
            morebool=false;
            ab=b.length-1;
            while(ab >= 0){
                if(a[q+ab] != b[ab] && a[q+ab]!='.'){
                    bool=false;

                }
                if(a[q+ab]!= '.'){
                    morebool=true;
                }
                ab--;
            }
            if(bool&& morebool){
                lista[stamp]=q;
                stamp++;
                c=0;
                while (c<b.length){
                    a[q+c]='.';
                    c++;
                }
            }
            q--;
        }

        q=0;
        while(q <=a.length-b.length){
            bool=true;
            morebool=false;
            ab=b.length-1;
            while(ab >= 0){
                if(a[q+ab] != b[ab] && a[q+ab]!='.'){
                    bool=false;

                }
                if(a[q+ab]!= '.'){
                    morebool=true;
                }
                ab--;
            }
            if(bool&& morebool){
                lista[stamp]=q;
                stamp++;
                c=0;
                while (c<b.length){
                    a[q+c]='.';
                    c++;
                }
            }
            q++;
        }

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

Test details

Test 1

Group: 1

Verdict:

input
100 1
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
5050

user output
-1

Test 2

Group: 1

Verdict:

input
100 1
1 1 1 1 2 2 1 1 2 2 2 2 2 1 1 ...

correct output
190

user output
-1

Test 3

Group: 1

Verdict:

input
100 1
5 9 9 6 9 8 1 4 7 7 8 9 5 5 6 ...

correct output
110

user output
-1

Test 4

Group: 1

Verdict:

input
100 2
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
5050

user output
-1

Test 5

Group: 1

Verdict:

input
100 2
2 1 2 1 2 2 1 1 2 1 1 2 1 2 1 ...

correct output
5050

user output
-1

Test 6

Group: 1

Verdict:

input
100 2
2 3 1 1 2 2 3 1 2 1 1 1 3 3 1 ...

correct output
379

user output
-1

Test 7

Group: 1

Verdict:

input
100 2
4 6 10 8 6 8 10 8 4 7 8 9 6 2 ...

correct output
245

user output
-1

Test 8

Group: 1

Verdict:

input
100 5
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
5050

user output
-1

Test 9

Group: 1

Verdict:

input
100 5
4 4 2 2 4 3 3 2 3 4 3 5 3 1 5 ...

correct output
5050

user output
-1

Test 10

Group: 1

Verdict:

input
100 5
5 3 4 1 1 1 1 4 5 5 4 6 6 3 3 ...

correct output
1488

user output
-1

Test 11

Group: 1

Verdict:

input
100 5
10 1 1 9 1 6 9 4 3 10 9 2 4 2 ...

correct output
743

user output
-1

Test 12

Group: 1

Verdict:

input
100 10
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
5050

user output
-1

Test 13

Group: 1

Verdict:

input
100 10
9 4 9 1 9 1 5 2 10 10 9 3 9 6 ...

correct output
5050

user output
-1

Test 14

Group: 1

Verdict:

input
100 10
80 59 58 87 28 83 83 93 96 24 ...

correct output
994

user output
-1

Test 15

Group: 2

Verdict:

input
5000 1
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
12502500

user output
-1

Test 16

Group: 2

Verdict:

input
5000 1
2 2 2 1 2 1 1 1 2 2 1 2 1 1 1 ...

correct output
10148

user output
-1

Test 17

Group: 2

Verdict:

input
5000 1
434568 634119 102509 107238 72...

correct output
5000

user output
-1

Test 18

Group: 2

Verdict:

input
5000 2
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
12502500

user output
-1

Test 19

Group: 2

Verdict:

input
5000 2
2 1 1 1 2 2 2 2 1 1 1 1 2 1 2 ...

correct output
12502500

user output
-1

Test 20

Group: 2

Verdict:

input
5000 2
1 3 2 2 3 3 1 2 1 2 1 2 3 1 2 ...

correct output
22451

user output
-1

Test 21

Group: 2

Verdict:

input
5000 2
132968 414421 468358 432744 43...

correct output
9999

user output
-1

Test 22

Group: 2

Verdict:

input
5000 100
93 76 87 71 93 74 69 35 92 96 ...

correct output
12502500

user output
-1

Test 23

Group: 2

Verdict:

input
5000 100
2 57 51 4 35 76 5 40 51 55 20 ...

correct output
2669737

user output
-1

Test 24

Group: 2

Verdict:

input
5000 100
657 823 1773 1801 2785 4107 25...

correct output
498978

user output
-1

Test 25

Group: 2

Verdict:

input
5000 4999
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
12502500

user output
-1

Test 26

Group: 2

Verdict:

input
5000 4999
865706 910619 695192 183574 92...

correct output
12502500

user output
-1

Test 27

Group: 2

Verdict:

input
5000 5000
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
12502500

user output
-1

Test 28

Group: 2

Verdict:

input
5000 5000
774752 159472 183796 654476 69...

correct output
12502500

user output
-1

Test 29

Group: 3

Verdict:

input
500000 1
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
125000250000

user output
-1

Test 30

Group: 3

Verdict:

input
500000 1
28107328 613212742 298033960 7...

correct output
500000

user output
-1

Test 31

Group: 3

Verdict:

input
500000 2
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
125000250000

user output
-1

Test 32

Group: 3

Verdict:

input
500000 2
1 1 2 1 1 2 2 1 2 1 2 1 1 2 1 ...

correct output
125000250000

user output
-1

Test 33

Group: 3

Verdict:

input
500000 2
3 2 2 3 2 2 2 1 1 2 2 3 2 3 2 ...

correct output
2245355

user output
-1

Test 34

Group: 3

Verdict:

input
500000 2
1 1 1 2 2 2 1 1 2 1 1 2 1 2 1 ...

correct output
1570486882

user output
-1

Test 35

Group: 3

Verdict:

input
500000 2
318961563 84011941 882177798 1...

correct output
999999

user output
-1

Test 36

Group: 3

Verdict:

input
500000 2
1 1 2 1 2 1 2 1 2 2 2 2 1 2 1 ...

correct output
483793169

user output
-1

Test 37

Group: 4

Verdict:

input
500000 1
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
125000250000

user output
-1

Test 38

Group: 4

Verdict:

input
500000 1
709486749 350496125 796065873 ...

correct output
500000

user output
-1

Test 39

Group: 4

Verdict:

input
500000 2
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
125000250000

user output
-1

Test 40

Group: 4

Verdict:

input
500000 2
1 2 2 2 2 2 1 1 2 2 2 2 2 2 1 ...

correct output
125000250000

user output
-1

Test 41

Group: 4

Verdict:

input
500000 2
3 3 3 3 2 1 3 2 1 3 1 2 1 1 1 ...

correct output
2255047

user output
-1

Test 42

Group: 4

Verdict:

input
500000 2
414942284 362802746 108881396 ...

correct output
999999

user output
-1

Test 43

Group: 4

Verdict:

input
500000 100
59 14 100 74 49 43 91 84 31 16...

correct output
260458849

user output
-1

Test 44

Group: 4

Verdict:

input
500000 1000
505 511 86 321 780 495 106 330...

correct output
3694803834

user output
-1

Test 45

Group: 4

Verdict:

input
500000 10000
4956 8463 8582 980 9278 1747 2...

correct output
41655235436

user output
-1

Test 46

Group: 4

Verdict:

input
500000 100000
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
125000250000

user output
-1

Test 47

Group: 4

Verdict:

input
500000 100000
40198 78364 3724 51802 378 130...

correct output
125000250000

user output
-1

Test 48

Group: 4

Verdict:

input
500000 100000
320513086 811766509 339605137 ...

correct output
45001856854

user output
-1

Test 49

Group: 4

Verdict:

input
500000 499999
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
125000250000

user output
-1

Test 50

Group: 4

Verdict:

input
500000 499999
995132060 587162982 59723733 8...

correct output
125000250000

user output
-1

Test 51

Group: 4

Verdict:

input
500000 500000
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
125000250000

user output
-1

Test 52

Group: 4

Verdict:

input
500000 500000
72083718 753463162 730560260 6...

correct output
125000250000

user output
-1