| Task: | Merkkijonot |
| Sender: | ArturT |
| Submission time: | 2019-10-06 22:55:11 +0300 |
| Language: | C++ (C++11) |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | WRONG ANSWER | 0 |
| #2 | WRONG ANSWER | 0 |
| #3 | TIME LIMIT EXCEEDED | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | ACCEPTED | 0.01 s | 1, 2, 3 | details |
| #2 | ACCEPTED | 0.12 s | 2, 3 | details |
| #3 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #4 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #5 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #6 | ACCEPTED | 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 | WRONG ANSWER | 0.08 s | 2, 3 | details |
| #11 | WRONG ANSWER | 0.09 s | 2, 3 | details |
| #12 | WRONG ANSWER | 0.09 s | 2, 3 | details |
| #13 | WRONG ANSWER | 0.09 s | 2, 3 | details |
| #14 | WRONG ANSWER | 0.09 s | 2, 3 | details |
| #15 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #16 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #17 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #18 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #19 | TIME LIMIT EXCEEDED | -- | 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 | WRONG ANSWER | 0.01 s | 1, 2, 3 | details |
| #24 | WRONG ANSWER | 0.01 s | 1, 2, 3 | details |
Compiler report
input/code.cpp: In function 'int main()':
input/code.cpp:35:21: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int s = 0; s < input.size(); s++) {
~~^~~~~~~~~~~~~~
input/code.cpp:51:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int row = 0; row < structures.size(); row++) {
~~~~^~~~~~~~~~~~~~~~~~~
input/code.cpp:54:28: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int rowB = 0; rowB <= structures.size() - 1; rowB++) {
~~~~~^~~~~~~~~~~~~~~~~~~~~~~~Code
#include<iostream>
#include<vector>
#include <algorithm>
using namespace std;
typedef long long ll;
int fact(int n);
int nCr(int n) // nCr when r=2
{
return (n * (n - 1))/2;
}
// Returns factorial of n
int fact(int n, int )
{
int res = 1;
for (int i = 2; i <= n; i++)
res = res * i;
return res;
}
int main() {
int count;
cin >> count;
vector<vector<int>> structures;
for (int row = 0; row < count; row++) {
string input;
cin >> input;
vector<int> structure;
vector<char> structRef;
int max = 0;
for (int s = 0; s < input.size(); s++) {
vector<char>::iterator itr = find(structRef.begin(), structRef.end(), input[s]);
if (itr != structRef.cend()) { // Found previously?
structure.push_back(distance(structRef.begin(), itr));
}
else {
structRef.push_back(input[max]); // Found now
structure.push_back(max);
max++;
}
}
structures.push_back(structure);
}
int pairsFound = 0;
vector<int> found;
for (int row = 0; row < structures.size(); row++) {
if (!(find(found.begin(), found.end(), row) != found.end())) {
int matches = 0;
for (int rowB = 0; rowB <= structures.size() - 1; rowB++) {
if (rowB != row && structures[row] == structures[rowB]) {
found.push_back(rowB);
matches++;
}
}
if (matches != 0) {
matches++;
pairsFound += nCr(matches); // nCr
}
}
}
cout << pairsFound << 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: ACCEPTED
| input |
|---|
| 5000 AJEDROEDXRGDUSDAPZBXXQBPJ PDGCTAGCRTBCJICPFELRRMLFD TISAOTGMDKUCITIEFQVCSBZJYUUO FMASVJYFPMELSVLQWFZVLVMSPHYL ... |
| correct output |
|---|
| 2178556 |
| user output |
|---|
| 2178556 |
Test 3
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 RESKYADLVRSDCDXJVECAJCAP CZLIWDHKVNRJHZINHFBOQEPN LSTRSDTLADUIWXFQJSQPVRSPBCTZ QEMSZOQSSVBRNQTCLJQIGVQO ... |
| correct output |
|---|
| 404880850 |
| user output |
|---|
| (empty) |
Test 4
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA... |
| correct output |
|---|
| 4999950000 |
| user output |
|---|
| (empty) |
Test 5
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 IPI Q SPGV UNYE ... |
| correct output |
|---|
| 1041990627 |
| user output |
|---|
| (empty) |
Test 6
Group: 1, 2, 3
Verdict: ACCEPTED
| input |
|---|
| 20 A B C D ... |
| correct output |
|---|
| 190 |
| user output |
|---|
| 190 |
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: WRONG ANSWER
| input |
|---|
| 5000 SEKNHNRHSRFYIHSCDPGXPTGUSYBFKZ... |
| correct output |
|---|
| 20861 |
| user output |
|---|
| 20889 |
Test 11
Group: 2, 3
Verdict: WRONG ANSWER
| input |
|---|
| 5000 UGPWHWOWAREEIROZTRJGUCKDKTZJEO... |
| correct output |
|---|
| 22818 |
| user output |
|---|
| 22837 |
Test 12
Group: 2, 3
Verdict: WRONG ANSWER
| input |
|---|
| 5000 FFQQCBCINBDWIKHFPO SCJU DNHYPGIQNZS KNQCYRAXHHKORXMOVHL ... |
| correct output |
|---|
| 22268 |
| user output |
|---|
| 22278 |
Test 13
Group: 2, 3
Verdict: WRONG ANSWER
| input |
|---|
| 5000 QVWMSYPWXWBBXWCVEOUAVQLDWNBXZB... |
| correct output |
|---|
| 22589 |
| user output |
|---|
| 22603 |
Test 14
Group: 2, 3
Verdict: WRONG ANSWER
| input |
|---|
| 5000 JYORMNQAKXHNRBWGGSMWXWXMBKPBZU... |
| correct output |
|---|
| 20482 |
| user output |
|---|
| 20512 |
Test 15
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 DCXXVIEYQAASZJYUUVYZUIJFGVBAYC... |
| correct output |
|---|
| 8925377 |
| user output |
|---|
| (empty) |
Test 16
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 IJZHBIYNWQBDWNGZWVXJKXXWFVLPQX... |
| correct output |
|---|
| 8907840 |
| user output |
|---|
| (empty) |
Test 17
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 GWUGLGQDAYGGJROIAKBMMICQMDUQQQ... |
| correct output |
|---|
| 8771809 |
| user output |
|---|
| (empty) |
Test 18
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 SWVSVXURRSLCSHCPAKWESIPCNDKYLD... |
| correct output |
|---|
| 8704480 |
| user output |
|---|
| (empty) |
Test 19
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 ZLSNSZBGIMCOLPDEAKVDAJCTMBNRLH... |
| correct output |
|---|
| 8672362 |
| user output |
|---|
| (empty) |
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: WRONG ANSWER
| input |
|---|
| 20 DCDA BDBA CACBD BA ... |
| correct output |
|---|
| 7 |
| user output |
|---|
| 8 |
Test 24
Group: 1, 2, 3
Verdict: WRONG ANSWER
| input |
|---|
| 20 DDA BBCDC DDD CCD ... |
| correct output |
|---|
| 14 |
| user output |
|---|
| 16 |
