| Task: | Ositus |
| Sender: | Mixu_78 |
| Submission time: | 2021-10-05 15:36:30 +0300 |
| Language: | C++ (C++17) |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | WRONG ANSWER | 0 |
| #2 | WRONG ANSWER | 0 |
| #3 | WRONG ANSWER | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | WRONG ANSWER | 0.01 s | 1, 2, 3 | details |
| #2 | WRONG ANSWER | 0.01 s | 1, 2, 3 | details |
| #3 | WRONG ANSWER | 0.01 s | 1, 2, 3 | details |
| #4 | WRONG ANSWER | 0.01 s | 1, 2, 3 | details |
| #5 | TIME LIMIT EXCEEDED | -- | 2, 3 | details |
| #6 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #7 | RUNTIME ERROR | 0.28 s | 3 | details |
Compiler report
input/code.cpp: In function 'int partition(std::__cxx11::string)':
input/code.cpp:21:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int i = 1; i < s.length(); i++) {
~~^~~~~~~~~~~~Code
#include <iostream>
#include <vector>
#include <set>
#include <map>
using namespace std;
bool hasDuplicate(string s)
{
set<char> chars;
for (auto c = s.begin(); c != s.end(); c++) {
if (chars.count(*c) > 0) return true;
chars.insert(*c);
}
return false;
}
int partition(string s)
{
int r = 0;
for (int i = 1; i < s.length(); i++) {
string a = s.substr(0, i);
if (hasDuplicate(a)) break;
r++;
string rest = s.substr(i);
r += partition(rest);
}
return r;
}
int main()
{
std::ios_base::sync_with_stdio(0);
std::cin.tie(0);
string s;
std::cin >> s;
int res = partition(s);
printf("%i\n", res);
}Test details
Test 1
Group: 1, 2, 3
Verdict: WRONG ANSWER
| input |
|---|
| a |
| correct output |
|---|
| 1 |
| user output |
|---|
| 0 |
Test 2
Group: 1, 2, 3
Verdict: WRONG ANSWER
| input |
|---|
| abcdefghij |
| correct output |
|---|
| 512 |
| user output |
|---|
| 511 |
Test 3
Group: 1, 2, 3
Verdict: WRONG ANSWER
| input |
|---|
| abcabaacbc |
| correct output |
|---|
| 120 |
| user output |
|---|
| 187 |
Test 4
Group: 1, 2, 3
Verdict: WRONG ANSWER
| input |
|---|
| aaxxxxxxaa |
| correct output |
|---|
| 4 |
| user output |
|---|
| 18 |
Test 5
Group: 2, 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| mfyzvoxmppoxcvktmcjkryyocfweub... |
| correct output |
|---|
| 643221148 |
| user output |
|---|
| (empty) |
Test 6
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| weinscqmmpgbrlboocvtbptgbahmwv... |
| correct output |
|---|
| 831644159 |
| user output |
|---|
| (empty) |
Test 7
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| sxaoxcyrjoeieyinaqxwukgzdnhhsw... |
| correct output |
|---|
| 816016015 |
| user output |
|---|
| (empty) |
