CSES - Datatähti 2022 alku - Results
Submission details
Task:Ositus
Sender:EeliH
Submission time:2021-10-04 23:10:48 +0300
Language:C++11
Status:READY
Result:40
Feedback
groupverdictscore
#1ACCEPTED40
#20
#30
Test results
testverdicttimegroup
#1ACCEPTED0.01 s1, 2, 3details
#2ACCEPTED0.01 s1, 2, 3details
#3ACCEPTED0.01 s1, 2, 3details
#4ACCEPTED0.01 s1, 2, 3details
#5--2, 3details
#6--3details
#70.32 s3details

Compiler report

input/code.cpp: In function 'uint64_t sana_maara(std::__cxx11::string, int)':
input/code.cpp:14:18: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
     for(i = s; i < t.length(); i++) {
                ~~^~~~~~~~~~~~
input/code.cpp:23:10: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
     if(i == t.length()) {
        ~~^~~~~~~~~~~~~
input/code.cpp:33:13: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
     while(i != t.length()) {
           ~~^~~~~~~~~~~~~

Code

#include <iostream>
#include <string>

using namespace std;

const uint64_t AAAA = 1000000007;

uint64_t sana_maara(string t, int s)
{
    uint64_t maara = 0;
    char kirjaimet[26] = {0};
    int i;

    for(i = s; i < t.length(); i++) {
        char kirjain = t[i];
        if(kirjaimet[kirjain - 'a'] != 0) {
            break;
        }

        kirjaimet[kirjain - 'a'] = 1;
    }

    if(i == t.length()) {
        return 1 << (i - s - 1) % AAAA;
    }

    for(int j = 0; j < 26; j++) {
        kirjaimet[j] = 0;
    }
    kirjaimet[t[s] - 'a'] = 1;

    i = s + 1;
    while(i != t.length()) {
        maara += sana_maara(t, i);
        
        if(kirjaimet[t[i] - 'a'] != 0) {
            break;
        }
        kirjaimet[t[i] - 'a'] = 1;
        i++;
    }
    
    return maara % AAAA;
}

int main()
{
    string t;
    cin >> t;
    
    cout << sana_maara(t, 0) << endl;
}

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

input
abcabaacbc

correct output
120

user output
120

Test 4

Group: 1, 2, 3

Verdict: ACCEPTED

input
aaxxxxxxaa

correct output
4

user output
4

Test 5

Group: 2, 3

Verdict:

input
mfyzvoxmppoxcvktmcjkryyocfweub...

correct output
643221148

user output
(empty)

Test 6

Group: 3

Verdict:

input
weinscqmmpgbrlboocvtbptgbahmwv...

correct output
831644159

user output
(empty)

Test 7

Group: 3

Verdict:

input
sxaoxcyrjoeieyinaqxwukgzdnhhsw...

correct output
816016015

user output
(empty)