Task: | Ositus |
Sender: | kpop |
Submission time: | 2021-10-07 10:13:08 +0300 |
Language: | C++ (C++11) |
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 | WRONG ANSWER | 0.01 s | 2, 3 | details |
#6 | WRONG ANSWER | 0.01 s | 3 | details |
#7 | WRONG ANSWER | 0.51 s | 3 | details |
Compiler report
input/code.cpp: In function 'int main()': input/code.cpp:16:13: warning: unused variable 'ai' [-Wunused-variable] int ai = str.rbegin()-ita-1; ^~
Code
#include <bits/stdc++.h> using namespace std; int main() { string str; cin >> str; vector<int> points(str.length(), 0); unordered_set<char> seen; auto ita = str.rbegin(); auto itb = ita+1; seen.insert(*ita); while (ita != str.rend()) { int ai = str.rbegin()-ita-1; int bi = str.rend()-itb-1; if (seen.find(*itb) == seen.end() && itb != str.rend()) { seen.insert(*itb); points[bi] += 1; ++itb; } else { ++ita; itb = ita+1; seen.clear(); } } for (int i = points.size()-1; i >= 0; --i) { points[i] += points[i+1]; } points[points.size()-1] = 1; int result = 0; auto itc = str.begin(); auto itd = itc+1; seen.clear(); seen.insert(*itc); while (itc != str.end()) { int di = itd-str.begin()-1; if (seen.find(*itb) == seen.end()) { seen.insert(*itb); result += points[di+1]; } else { ++itc; itd = itc+1; seen.clear(); } } cout << result%1000000007 << endl; }
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 |
---|
418 |
Test 3
Group: 1, 2, 3
Verdict: WRONG ANSWER
input |
---|
abcabaacbc |
correct output |
---|
120 |
user output |
---|
353 |
Test 4
Group: 1, 2, 3
Verdict: WRONG ANSWER
input |
---|
aaxxxxxxaa |
correct output |
---|
4 |
user output |
---|
327 |
Test 5
Group: 2, 3
Verdict: WRONG ANSWER
input |
---|
mfyzvoxmppoxcvktmcjkryyocfweub... |
correct output |
---|
643221148 |
user output |
---|
31232 |
Test 6
Group: 3
Verdict: WRONG ANSWER
input |
---|
weinscqmmpgbrlboocvtbptgbahmwv... |
correct output |
---|
831644159 |
user output |
---|
76368391 |
Test 7
Group: 3
Verdict: WRONG ANSWER
input |
---|
sxaoxcyrjoeieyinaqxwukgzdnhhsw... |
correct output |
---|
816016015 |
user output |
---|
423114892 |