CSES - Datatähti 2020 alku - Results
Submission details
Task:Merkkijonot
Sender:Kurns
Submission time:2019-09-30 22:46:13 +0300
Language:C++11
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.01 s1, 2, 3details
#2--2, 3details
#3--3details
#4--3details
#5--3details
#6ACCEPTED0.01 s1, 2, 3details
#7ACCEPTED0.01 s1, 2, 3details
#8ACCEPTED0.01 s1, 2, 3details
#9ACCEPTED0.01 s1, 2, 3details
#10--2, 3details
#11--2, 3details
#12--2, 3details
#13--2, 3details
#14--2, 3details
#15--3details
#16--3details
#17--3details
#18--3details
#19--3details
#200.01 s1, 2, 3details
#210.01 s1, 2, 3details
#220.01 s1, 2, 3details
#230.01 s1, 2, 3details
#240.01 s1, 2, 3details

Compiler report

input/code.cpp: In function 'bool harmoninen(std::__cxx11::string, std::__cxx11::string)':
input/code.cpp:67:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  for (int i = 0; i < s1.length(); i++) {
                  ~~^~~~~~~~~~~~~

Code

#include <iostream>
#include <vector>
#include <string>
#include <map>
#include <algorithm>

using namespace std;

vector<string> sanat; //Lista sanoista

bool harmoninen(string s1, string s2) {
	if (s1.length() != s2.length()) return false;
	map<char, char> ekatokaan; //A->Z
	ekatokaan['A'] = '.';
	ekatokaan['B'] = '.';
	ekatokaan['C'] = '.';
	ekatokaan['D'] = '.';
	ekatokaan['E'] = '.';
	ekatokaan['F'] = '.';
	ekatokaan['G'] = '.';
	ekatokaan['H'] = '.';
	ekatokaan['I'] = '.';
	ekatokaan['J'] = '.';
	ekatokaan['K'] = '.';
	ekatokaan['L'] = '.';
	ekatokaan['M'] = '.';
	ekatokaan['N'] = '.';
	ekatokaan['O'] = '.';
	ekatokaan['P'] = '.';
	ekatokaan['Q'] = '.';
	ekatokaan['R'] = '.';
	ekatokaan['S'] = '.';
	ekatokaan['T'] = '.';
	ekatokaan['U'] = '.';
	ekatokaan['V'] = '.';
	ekatokaan['W'] = '.';
	ekatokaan['X'] = '.';
	ekatokaan['Y'] = '.';
	ekatokaan['Z'] = '.';
	map<char, char> tokaekaan; //Z->A
	tokaekaan['A'] = '.';
	tokaekaan['B'] = '.';
	tokaekaan['C'] = '.';
	tokaekaan['D'] = '.';
	tokaekaan['E'] = '.';
	tokaekaan['F'] = '.';
	tokaekaan['G'] = '.';
	tokaekaan['H'] = '.';
	tokaekaan['I'] = '.';
	tokaekaan['J'] = '.';
	tokaekaan['K'] = '.';
	tokaekaan['L'] = '.';
	tokaekaan['M'] = '.';
	tokaekaan['N'] = '.';
	tokaekaan['O'] = '.';
	tokaekaan['P'] = '.';
	tokaekaan['Q'] = '.';
	tokaekaan['R'] = '.';
	tokaekaan['S'] = '.';
	tokaekaan['T'] = '.';
	tokaekaan['U'] = '.';
	tokaekaan['V'] = '.';
	tokaekaan['W'] = '.';
	tokaekaan['X'] = '.';
	tokaekaan['Y'] = '.';
	tokaekaan['Z'] = '.';
	for (int i = 0; i < s1.length(); i++) {
		if (ekatokaan[s1[i]] != '.' && tokaekaan[s2[i]] != '.' && (ekatokaan[s1[i]] != s2[i] || tokaekaan[s2[i]] != s1[i])) return false;
		ekatokaan[s1[i]] = s2[i];
		tokaekaan[s2[i]] = s1[i];
	}
	return true;
}

int main()
{
	int lkm;
	cin >> lkm;
	for (int i = 0; i < lkm; i++) {
		string ip;
		cin >> ip;
		sanat.push_back(ip);
	}

	int tulos = 0; //Lopputulos
	for (int k = 0; k < lkm; k++) { //Looppaa listan
		for (int e = min(k + 1, lkm - 1); e < lkm; e++) { //Toinen looppi
			//cout << "K=" << sanat[k] << " ja e=" << sanat[e] << endl;
			if (harmoninen(sanat[k], sanat[e]) && e != k) { //Varmistetaan ettei lopussa sama itemi
				//cout << "FOUND" << endl;
				tulos++;
			}
		}
	}
	cout << tulos;
}

Test details

Test 1

Group: 1, 2, 3

Verdict:

input
20
FFDISOVJLPIASANJRBHQXJVW
HBGVRZFWOTAAVUPYKMKXAOBEYUE
JKHXTPHUKTLTLNXMXMSYYFLF
HCSZMXTZCUFHIHSTEWKHCFZRTXU
...

correct output
20

user output
21

Test 2

Group: 2, 3

Verdict:

input
5000
AJEDROEDXRGDUSDAPZBXXQBPJ
PDGCTAGCRTBCJICPFELRRMLFD
TISAOTGMDKUCITIEFQVCSBZJYUUO
FMASVJYFPMELSVLQWFZVLVMSPHYL
...

correct output
2178556

user output
(empty)

Test 3

Group: 3

Verdict:

input
100000
RESKYADLVRSDCDXJVECAJCAP
CZLIWDHKVNRJHZINHFBOQEPN
LSTRSDTLADUIWXFQJSQPVRSPBCTZ
QEMSZOQSSVBRNQTCLJQIGVQO
...

correct output
404880850

user output
(empty)

Test 4

Group: 3

Verdict:

input
100000
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
4999950000

user output
(empty)

Test 5

Group: 3

Verdict:

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:

input
5000
SEKNHNRHSRFYIHSCDPGXPTGUSYBFKZ...

correct output
20861

user output
(empty)

Test 11

Group: 2, 3

Verdict:

input
5000
UGPWHWOWAREEIROZTRJGUCKDKTZJEO...

correct output
22818

user output
(empty)

Test 12

Group: 2, 3

Verdict:

input
5000
FFQQCBCINBDWIKHFPO
SCJU
DNHYPGIQNZS
KNQCYRAXHHKORXMOVHL
...

correct output
22268

user output
(empty)

Test 13

Group: 2, 3

Verdict:

input
5000
QVWMSYPWXWBBXWCVEOUAVQLDWNBXZB...

correct output
22589

user output
(empty)

Test 14

Group: 2, 3

Verdict:

input
5000
JYORMNQAKXHNRBWGGSMWXWXMBKPBZU...

correct output
20482

user output
(empty)

Test 15

Group: 3

Verdict:

input
100000
DCXXVIEYQAASZJYUUVYZUIJFGVBAYC...

correct output
8925377

user output
(empty)

Test 16

Group: 3

Verdict:

input
100000
IJZHBIYNWQBDWNGZWVXJKXXWFVLPQX...

correct output
8907840

user output
(empty)

Test 17

Group: 3

Verdict:

input
100000
GWUGLGQDAYGGJROIAKBMMICQMDUQQQ...

correct output
8771809

user output
(empty)

Test 18

Group: 3

Verdict:

input
100000
SWVSVXURRSLCSHCPAKWESIPCNDKYLD...

correct output
8704480

user output
(empty)

Test 19

Group: 3

Verdict:

input
100000
ZLSNSZBGIMCOLPDEAKVDAJCTMBNRLH...

correct output
8672362

user output
(empty)

Test 20

Group: 1, 2, 3

Verdict:

input
20
AAB
D
CDBAA
D
...

correct output
15

user output
24

Test 21

Group: 1, 2, 3

Verdict:

input
20
A
CDD
AABBC
DBCB
...

correct output
15

user output
31

Test 22

Group: 1, 2, 3

Verdict:

input
20
ACADD
CDDCD
DACA
CCDCA
...

correct output
17

user output
28

Test 23

Group: 1, 2, 3

Verdict:

input
20
DCDA
BDBA
CACBD
BA
...

correct output
7

user output
37

Test 24

Group: 1, 2, 3

Verdict:

input
20
DDA
BBCDC
DDD
CCD
...

correct output
14

user output
37