| Task: | Ositus |
| Sender: | jmarttinen |
| Submission time: | 2021-10-05 07:56:43 +0300 |
| Language: | C++ (C++11) |
| Status: | READY |
| Result: | 65 |
| group | verdict | score |
|---|---|---|
| #1 | ACCEPTED | 40 |
| #2 | ACCEPTED | 25 |
| #3 | RUNTIME ERROR | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | ACCEPTED | 0.01 s | 1, 2, 3 | details |
| #2 | ACCEPTED | 0.01 s | 1, 2, 3 | details |
| #3 | ACCEPTED | 0.01 s | 1, 2, 3 | details |
| #4 | ACCEPTED | 0.01 s | 1, 2, 3 | details |
| #5 | ACCEPTED | 0.01 s | 2, 3 | details |
| #6 | ACCEPTED | 0.13 s | 3 | details |
| #7 | RUNTIME ERROR | 0.32 s | 3 | details |
Compiler report
input/code.cpp: In function 'long long int f(std::__cxx11::string)':
input/code.cpp:20:42: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
if (lookupTable.count(s) && s.size() > n/10) {
~~~~~~~~~^~~~~~Code
#include <algorithm>
#include <map>
#include <iostream>
#include <set>
#include <string>
using namespace std;
long long M = 1e9 + 7;
int n;
map<string, long long> lookupTable;
long long f(string s) {
string substr, tail;
long long v = 0;
if (s.size() <= 1) {
return 1;
}
if (lookupTable.count(s) && s.size() > n/10) {
return lookupTable[s];
}
// int i = find(s.rend()-1, s.rbegin(), s[s.size()-1]);
for (unsigned int i=1; i<=s.size(); i++) {
substr = s.substr(0, s.size()-i), tail = s.substr(s.size()-i, i);
if (set<char>(tail.begin(), tail.end()).size() != tail.size())
break;
v += f(substr);
v %= M;
}
lookupTable[s] = v;
return v;
}
int main() {
string s;
cin >> s;
cin >> n;
cout << f(s);
}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: ACCEPTED
| input |
|---|
| mfyzvoxmppoxcvktmcjkryyocfweub... |
| correct output |
|---|
| 643221148 |
| user output |
|---|
| 643221148 |
Test 6
Group: 3
Verdict: ACCEPTED
| input |
|---|
| weinscqmmpgbrlboocvtbptgbahmwv... |
| correct output |
|---|
| 831644159 |
| user output |
|---|
| 831644159 |
Test 7
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| sxaoxcyrjoeieyinaqxwukgzdnhhsw... |
| correct output |
|---|
| 816016015 |
| user output |
|---|
| (empty) |
