CSES - Datatähti 2016 alku - Results
Submission details
Task:Osajono
Sender:hugo-hur
Submission time:2015-10-04 21:38:03 +0300
Language:C++
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.07 s1details
#20.06 s1details
#30.05 s1details
#40.05 s1details
#50.05 s1details
#60.05 s2details
#70.04 s2details
#80.06 s2details
#90.06 s2details
#100.05 s2details
#110.05 s3details
#120.05 s3details
#130.06 s3details
#140.06 s3details
#150.06 s3details

Code

#include <iostream>
#include <string>
#include <string.h>
#include <stdio.h>
#include <algorithm>
//using namespace std;
unsigned int loweringSum(unsigned int i){
//i>0
if (i == 0){ return 0; }
if (i == 1){ return 1; }
unsigned int input = i;
unsigned int output = i;
while(input>0){
input--;
output += input;
}
return i;
}
int main() {
std::cin.sync_with_stdio(false);//Faster execution
//char str[100001];
std::string stro;
//std::cin.getline(stro, 100001);//Gets the line entered and moves it to string
std::cin >> stro;
char* str = (char*)stro.c_str();
unsigned int strLen = (unsigned)strlen(str);
unsigned int osajonot = strLen;
//Iteroi merkkijonoa
/*for(unsigned int startIndex = 0; startIndex < (strLen - 1); startIndex++){//This takes too much time when going to 100k chars boundary
//char atStart = str[startIndex];//s.at(startIndex);
for(unsigned int i = startIndex + 1; i < strLen; i++){
if(str[i] == str[startIndex]){
osajonot++;
}
}
}*/
//std::sort(str, str + strLen /*- 1*/);
for (char c = 'A'; c <= 'Z'; c++){
unsigned int NumOfOccurences; //= stro.rfind(c) + 1;
NumOfOccurences = std::count(stro.begin(), stro.end(), c);
if(NumOfOccurences > 0){
osajonot += loweringSum(NumOfOccurences-1);// - sorted.find(c);
}
//stro.erase(0, lastIndexOf);
//if (!stro.length()){ break; }
}
std::cout << osajonot << std::endl;
return 0;
}

Test details

Test 1

Group: 1

Verdict:

input
BBBAABBBAAAABBAAAABAABAABBBBBB...

correct output
2554

user output
198

Test 2

Group: 1

Verdict:

input
GDFVYWQCZAFGICSXOSWBZMGPDBSSVL...

correct output
299

user output
175

Test 3

Group: 1

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAZAAAA...

correct output
4314

user output
198

Test 4

Group: 1

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
4231

user output
198

Test 5

Group: 1

Verdict:

input
QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ...

correct output
5050

user output
199

Test 6

Group: 2

Verdict:

input
BBABABBBABBAABBABBABAABAAABABA...

correct output
6253029

user output
9998

Test 7

Group: 2

Verdict:

input
RBKJMLDVQMKHYKCNDIVVKOMFUXTFMG...

correct output
485173

user output
9974

Test 8

Group: 2

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
12427725

user output
9998

Test 9

Group: 2

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
12467549

user output
9998

Test 10

Group: 2

Verdict:

input
QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ...

correct output
12502500

user output
9999

Test 11

Group: 3

Verdict:

input
BAAAAABABBABAABAABABABBBABBAAB...

correct output
2500051369

user output
199998

Test 12

Group: 3

Verdict:

input
ABBURXDRVXAYBPXXOQZNYHLWGUEEWR...

correct output
192407124

user output
199974

Test 13

Group: 3

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
4998050400

user output
199998

Test 14

Group: 3

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
4998850144

user output
199998

Test 15

Group: 3

Verdict:

input
QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ...

correct output
5000050000

user output
199999