CSES - Datatähti 2022 alku - Results
Submission details
Task:Ositus
Sender:andreibe
Submission time:2021-10-10 18:36:36 +0300
Language:Java
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#1ACCEPTED0.12 s1, 2, 3details
#2ACCEPTED0.12 s1, 2, 3details
#30.12 s1, 2, 3details
#40.12 s1, 2, 3details
#50.12 s2, 3details
#60.13 s3details
#70.29 s3details

Code

import java.util.Scanner;

public class Merkkijono {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        String s = scanner.next();
        char[] ar = s.toCharArray();
        long total = 1;
        int last = -1;
        int[] chars = new int[123];
        for (int i = 97; i < chars.length; i++) {
            chars[i] = -1;
        }
        chars[s.charAt(0)] = 0;
        for (int j = 1; j < ar.length; j++) {
            char c = ar[j];
            int i;
            boolean uneven = false;
            if ((i = chars[c]) != -1) {
                if (i > last) {
                    last = i;
                    int min = j - 1 - i;
                    if (min % 2 != 0 | min == 0) {
                        uneven = true;
                    }
                    total -= min / 2;
                }
            }
            total *= 2;
            if (uneven) {
                total -= 1;
            }
            total = total % 1_000_000_007;
            chars[c] = j;
        }
        System.out.println(total);
    }
}

Test details

Test 1

Group: 1, 2, 3

Verdict: ACCEPTED

input
a

correct output
1

user output
1

Test 2

Group: 1, 2, 3

Verdict: ACCEPTED

input
abcdefghij

correct output
512

user output
512

Test 3

Group: 1, 2, 3

Verdict:

input
abcabaacbc

correct output
120

user output
295

Test 4

Group: 1, 2, 3

Verdict:

input
aaxxxxxxaa

correct output
4

user output
131

Test 5

Group: 2, 3

Verdict:

input
mfyzvoxmppoxcvktmcjkryyocfweub...

correct output
643221148

user output
216444319

Test 6

Group: 3

Verdict:

input
weinscqmmpgbrlboocvtbptgbahmwv...

correct output
831644159

user output
734969433

Test 7

Group: 3

Verdict:

input
sxaoxcyrjoeieyinaqxwukgzdnhhsw...

correct output
816016015

user output
607382658