| Task: | Ositus |
| Sender: | T |
| Submission time: | 2021-10-16 04:15:55 +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.01 s | 3 | details |
| #7 | RUNTIME ERROR | 0.30 s | 3 | details |
Compiler report
input/code.cpp: In function 'long long int partitioning(std::__cxx11::string, long long int)':
input/code.cpp:20:29: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (long long i = 0; i < s.length(); i++) {
~~^~~~~~~~~~~~Code
/**
* Datatähti 2022 alku
* Ositus (Partitioning)
* @author TRS
*/
#include <bits/stdc++.h>
using namespace std;
//Constants
#define infinity 0x3f3f3f3f
#define linfinity 0x3f3f3f3f3f3f3f3f
#define MOD 1000000007
const int MX = 1000001;
long long partitions[MX];
long long partitioning(string s, long long start) {
if (s.length() <= 1) {
return 1;
}
long long answer = 0;
int found;
for (long long i = 0; i < s.length(); i++) {
found = 0;
for (long long j = 0; j < i; j++) {
if (s.at(i) == s.at(j)) {
found = 1;
break;
}
}
if (found) {
break;
}
if (partitions[start + i + 1] == 0) {
answer += partitioning(s.substr(i + 1), start + i + 1);
}
else {
answer += partitions[start + i + 1];
}
}
answer %= MOD;
partitions[start] = answer;
return answer;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
string s;
getline(cin, s);
if (s.length() == 1) {
cout<<1<<"\n";
return 0;
}
cout<<partitioning(s, 0)<<"\n";
return 0;
}
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) |
