| Task: | Merkkijonot |
| Sender: | Epe |
| Submission time: | 2019-10-01 18:29:11 +0300 |
| Language: | C++ (C++11) |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | WRONG ANSWER | 0 |
| #2 | RUNTIME ERROR | 0 |
| #3 | RUNTIME ERROR | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | ACCEPTED | 0.01 s | 1, 2, 3 | details |
| #2 | RUNTIME ERROR | 0.02 s | 2, 3 | details |
| #3 | RUNTIME ERROR | 0.43 s | 3 | details |
| #4 | RUNTIME ERROR | 0.01 s | 3 | details |
| #5 | RUNTIME ERROR | 0.21 s | 3 | details |
| #6 | WRONG ANSWER | 0.01 s | 1, 2, 3 | details |
| #7 | ACCEPTED | 0.01 s | 1, 2, 3 | details |
| #8 | ACCEPTED | 0.01 s | 1, 2, 3 | details |
| #9 | ACCEPTED | 0.01 s | 1, 2, 3 | details |
| #10 | RUNTIME ERROR | 0.01 s | 2, 3 | details |
| #11 | RUNTIME ERROR | 0.01 s | 2, 3 | details |
| #12 | RUNTIME ERROR | 0.01 s | 2, 3 | details |
| #13 | RUNTIME ERROR | 0.01 s | 2, 3 | details |
| #14 | RUNTIME ERROR | 0.01 s | 2, 3 | details |
| #15 | RUNTIME ERROR | 0.01 s | 3 | details |
| #16 | RUNTIME ERROR | 0.01 s | 3 | details |
| #17 | RUNTIME ERROR | 0.01 s | 3 | details |
| #18 | RUNTIME ERROR | 0.01 s | 3 | details |
| #19 | RUNTIME ERROR | 0.01 s | 3 | details |
| #20 | ACCEPTED | 0.01 s | 1, 2, 3 | details |
| #21 | ACCEPTED | 0.01 s | 1, 2, 3 | details |
| #22 | ACCEPTED | 0.01 s | 1, 2, 3 | details |
| #23 | ACCEPTED | 0.01 s | 1, 2, 3 | details |
| #24 | ACCEPTED | 0.01 s | 1, 2, 3 | details |
Compiler report
input/code.cpp: In function 'int main()':
input/code.cpp:15:14: warning: 'char* gets(char*)' is deprecated [-Wdeprecated-declarations]
gets(temp);
^
In file included from /usr/include/stdio.h:862:0,
from /usr/include/c++/7/cstdio:42,
from /usr/include/x86_64-linux-gnu/c++/7/bits/stdc++.h:46,
from input/code.cpp:1:
/usr/include/x86_64-linux-gnu/bits/stdio2.h:232:1: note: declared here
gets (char *__str)
^~~~
input/code.cpp:18:18: warning: 'char* gets(char*)' is deprecated [-Wdeprecated-declarations]
gets(temp);
^
In file included from /usr/include/stdio.h:862:0,
from /usr/include/c++/7/cstdio:42,
from /usr/include/x86_64-linux-gnu/c++/7/bits/stdc++.h:46,
from input/code.cpp:1:
/usr/include/x86_64-linux-gnu/bits/stdio2.h:232:1: note: declared here
gets (char *__str)
^~~~
input/code.cpp:15:9: warning: ignoring return value of 'char* gets(c...Code
#include <bits/stdc++.h>
using namespace std;
unsigned int fact(unsigned int i){
if(i == 0){
return 1;
}
return i * fact(i-1);
}
int main(){
int n, h = 0;
cin >> n;
char temp[50];
gets(temp);
multiset<vector<int>>setit;
for(int i = 0; i < n; i++){
gets(temp);
int len = strlen(temp);
vector<int> r(50);
r[len] = -1;
map<char, int> keys;
int o = 1;
for(int c = 0; c < len; c++){
auto it = keys.find(temp[c]);
int p = -1;
if(it == keys.end()){
p=o;o++;
keys.insert(pair<char,int>(temp[c], p));
} else {
p = it->second;
}
r[c] = p;
}
/*for(int l = 0; l < len; l++){
cout << r[l] << " ";
}
cout << endl;*/
if(setit.find(r) != setit.end()){
//h++;
setit.insert(r);
//cout << "found" << endl;
//cnt.insert(make_pair(r,1));
} else {
setit.insert(r);
//auto it = cnt.find(r);
//int co = it->second;
//it->second = co+1;
//cout << "adding.." << endl;
}
}
for(auto el = setit.begin(); el != setit.end(); el = setit.upper_bound(*el)){
int cou = setit.count(*el);
if(cou > 1){
//cout << "uniq" << endl;
h+=(fact(cou)/(2*fact(cou-2)));
}
}
cout << h << endl;
}Test details
Test 1
Group: 1, 2, 3
Verdict: ACCEPTED
| input |
|---|
| 20 FFDISOVJLPIASANJRBHQXJVW HBGVRZFWOTAAVUPYKMKXAOBEYUE JKHXTPHUKTLTLNXMXMSYYFLF HCSZMXTZCUFHIHSTEWKHCFZRTXU ... |
| correct output |
|---|
| 20 |
| user output |
|---|
| 20 |
Test 2
Group: 2, 3
Verdict: RUNTIME ERROR
| input |
|---|
| 5000 AJEDROEDXRGDUSDAPZBXXQBPJ PDGCTAGCRTBCJICPFELRRMLFD TISAOTGMDKUCITIEFQVCSBZJYUUO FMASVJYFPMELSVLQWFZVLVMSPHYL ... |
| correct output |
|---|
| 2178556 |
| user output |
|---|
| (empty) |
Test 3
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 RESKYADLVRSDCDXJVECAJCAP CZLIWDHKVNRJHZINHFBOQEPN LSTRSDTLADUIWXFQJSQPVRSPBCTZ QEMSZOQSSVBRNQTCLJQIGVQO ... |
| correct output |
|---|
| 404880850 |
| user output |
|---|
| (empty) |
Test 4
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA... |
| correct output |
|---|
| 4999950000 |
| user output |
|---|
| (empty) |
Error:
*** buffer overflow detected ***: input/code terminated
Test 5
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 IPI Q SPGV UNYE ... |
| correct output |
|---|
| 1041990627 |
| user output |
|---|
| (empty) |
Test 6
Group: 1, 2, 3
Verdict: WRONG ANSWER
| input |
|---|
| 20 A B C D ... |
| correct output |
|---|
| 190 |
| user output |
|---|
| 0 |
Test 7
Group: 1, 2, 3
Verdict: ACCEPTED
| input |
|---|
| 1 A |
| correct output |
|---|
| 0 |
| user output |
|---|
| 0 |
Test 8
Group: 1, 2, 3
Verdict: ACCEPTED
| input |
|---|
| 20 A BB CCC DDDD ... |
| correct output |
|---|
| 0 |
| user output |
|---|
| 0 |
Test 9
Group: 1, 2, 3
Verdict: ACCEPTED
| input |
|---|
| 2 A A |
| correct output |
|---|
| 1 |
| user output |
|---|
| 1 |
Test 10
Group: 2, 3
Verdict: RUNTIME ERROR
| input |
|---|
| 5000 SEKNHNRHSRFYIHSCDPGXPTGUSYBFKZ... |
| correct output |
|---|
| 20861 |
| user output |
|---|
| (empty) |
Error:
*** buffer overflow detected ***: input/code terminated
Test 11
Group: 2, 3
Verdict: RUNTIME ERROR
| input |
|---|
| 5000 UGPWHWOWAREEIROZTRJGUCKDKTZJEO... |
| correct output |
|---|
| 22818 |
| user output |
|---|
| (empty) |
Error:
*** buffer overflow detected ***: input/code terminated
Test 12
Group: 2, 3
Verdict: RUNTIME ERROR
| input |
|---|
| 5000 FFQQCBCINBDWIKHFPO SCJU DNHYPGIQNZS KNQCYRAXHHKORXMOVHL ... |
| correct output |
|---|
| 22268 |
| user output |
|---|
| (empty) |
Error:
*** buffer overflow detected ***: input/code terminated
Test 13
Group: 2, 3
Verdict: RUNTIME ERROR
| input |
|---|
| 5000 QVWMSYPWXWBBXWCVEOUAVQLDWNBXZB... |
| correct output |
|---|
| 22589 |
| user output |
|---|
| (empty) |
Error:
*** buffer overflow detected ***: input/code terminated
Test 14
Group: 2, 3
Verdict: RUNTIME ERROR
| input |
|---|
| 5000 JYORMNQAKXHNRBWGGSMWXWXMBKPBZU... |
| correct output |
|---|
| 20482 |
| user output |
|---|
| (empty) |
Error:
*** buffer overflow detected ***: input/code terminated
Test 15
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 DCXXVIEYQAASZJYUUVYZUIJFGVBAYC... |
| correct output |
|---|
| 8925377 |
| user output |
|---|
| (empty) |
Error:
*** buffer overflow detected ***: input/code terminated
Test 16
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 IJZHBIYNWQBDWNGZWVXJKXXWFVLPQX... |
| correct output |
|---|
| 8907840 |
| user output |
|---|
| (empty) |
Error:
*** buffer overflow detected ***: input/code terminated
Test 17
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 GWUGLGQDAYGGJROIAKBMMICQMDUQQQ... |
| correct output |
|---|
| 8771809 |
| user output |
|---|
| (empty) |
Error:
*** buffer overflow detected ***: input/code terminated
Test 18
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 SWVSVXURRSLCSHCPAKWESIPCNDKYLD... |
| correct output |
|---|
| 8704480 |
| user output |
|---|
| (empty) |
Error:
*** buffer overflow detected ***: input/code terminated
Test 19
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 ZLSNSZBGIMCOLPDEAKVDAJCTMBNRLH... |
| correct output |
|---|
| 8672362 |
| user output |
|---|
| (empty) |
Error:
*** buffer overflow detected ***: input/code terminated
Test 20
Group: 1, 2, 3
Verdict: ACCEPTED
| input |
|---|
| 20 AAB D CDBAA D ... |
| correct output |
|---|
| 15 |
| user output |
|---|
| 15 |
Test 21
Group: 1, 2, 3
Verdict: ACCEPTED
| input |
|---|
| 20 A CDD AABBC DBCB ... |
| correct output |
|---|
| 15 |
| user output |
|---|
| 15 |
Test 22
Group: 1, 2, 3
Verdict: ACCEPTED
| input |
|---|
| 20 ACADD CDDCD DACA CCDCA ... |
| correct output |
|---|
| 17 |
| user output |
|---|
| 17 |
Test 23
Group: 1, 2, 3
Verdict: ACCEPTED
| input |
|---|
| 20 DCDA BDBA CACBD BA ... |
| correct output |
|---|
| 7 |
| user output |
|---|
| 7 |
Test 24
Group: 1, 2, 3
Verdict: ACCEPTED
| input |
|---|
| 20 DDA BBCDC DDD CCD ... |
| correct output |
|---|
| 14 |
| user output |
|---|
| 14 |
