CSES - Datatähti 2020 alku - Results
Submission details
Task:Merkkijonot
Sender:ossikoo
Submission time:2019-10-11 15:08:27 +0300
Language:CPython3
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.02 s1, 2, 3details
#20.02 s2, 3details
#30.02 s3details
#40.02 s3details
#50.02 s3details
#60.02 s1, 2, 3details
#7ACCEPTED0.02 s1, 2, 3details
#8ACCEPTED0.02 s1, 2, 3details
#90.02 s1, 2, 3details
#100.02 s2, 3details
#110.02 s2, 3details
#120.02 s2, 3details
#130.02 s2, 3details
#140.02 s2, 3details
#150.02 s3details
#160.02 s3details
#170.02 s3details
#180.02 s3details
#190.02 s3details
#200.02 s1, 2, 3details
#210.02 s1, 2, 3details
#220.02 s1, 2, 3details
#230.02 s1, 2, 3details
#240.02 s1, 2, 3details

Code

params = input().split()

n = int(params[0])

strings = params[1:]

# sort into arrays based on length
harmonic_potential = {}

for string in strings:
    str_len = len(string)
    if str_len > 1:
        if not str_len in harmonic_potential:
            harmonic_potential[str_len] = []
        #if not string in harmonic_potential[str_len]:
        harmonic_potential[str_len].append(string)



harmonic_count = 0
harmonics = []

for str_list in harmonic_potential.values():
    for index, string in enumerate(str_list):

        same_char = []  #   [ [pos1, pos2] ]
        diff_char = []

        for pos, char in enumerate(string):
            for other_pos in range(pos + 1, len(string)):
                other_char = string[other_pos]
                if char == other_char:
                    same_char.append([pos, other_pos])
                else:
                    diff_char.append([pos, other_pos])

        for other_index in range(index + 1, len(str_list)):
            other_string = str_list[other_index]
            if other_index != index:
                is_harmonic = True
                for same_char_info in same_char:
                    pos0 = same_char_info[0]
                    pos1 = same_char_info[1]
                    if other_string[pos0] != other_string[pos1]:
                        is_harmonic = False
                        break
                for diff_char_info in diff_char:
                    pos0 = diff_char_info[0]
                    pos1 = diff_char_info[1]
                    if other_string[pos0] == other_string[pos1]:
                        is_harmonic = False
                        break
                if is_harmonic:
                    harmonic_count += 1
                    harmonics.append((string, other_string))

print(harmonic_count)
#print(harmonics)

# 6 AAB ABKA SSG TSGT ZZZZ KEAK
# 4

# 10 AB CD AAB DDS EET QWEE RRTA EIOP PPAB IPAA
# 6

Test details

Test 1

Group: 1, 2, 3

Verdict:

input
20
FFDISOVJLPIASANJRBHQXJVW
HBGVRZFWOTAAVUPYKMKXAOBEYUE
JKHXTPHUKTLTLNXMXMSYYFLF
HCSZMXTZCUFHIHSTEWKHCFZRTXU
...

correct output
20

user output
0

Test 2

Group: 2, 3

Verdict:

input
5000
AJEDROEDXRGDUSDAPZBXXQBPJ
PDGCTAGCRTBCJICPFELRRMLFD
TISAOTGMDKUCITIEFQVCSBZJYUUO
FMASVJYFPMELSVLQWFZVLVMSPHYL
...

correct output
2178556

user output
0

Test 3

Group: 3

Verdict:

input
100000
RESKYADLVRSDCDXJVECAJCAP
CZLIWDHKVNRJHZINHFBOQEPN
LSTRSDTLADUIWXFQJSQPVRSPBCTZ
QEMSZOQSSVBRNQTCLJQIGVQO
...

correct output
404880850

user output
0

Test 4

Group: 3

Verdict:

input
100000
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
4999950000

user output
0

Test 5

Group: 3

Verdict:

input
100000
IPI
Q
SPGV
UNYE
...

correct output
1041990627

user output
0

Test 6

Group: 1, 2, 3

Verdict:

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:

input
2
A
A

correct output
1

user output
0

Test 10

Group: 2, 3

Verdict:

input
5000
SEKNHNRHSRFYIHSCDPGXPTGUSYBFKZ...

correct output
20861

user output
0

Test 11

Group: 2, 3

Verdict:

input
5000
UGPWHWOWAREEIROZTRJGUCKDKTZJEO...

correct output
22818

user output
0

Test 12

Group: 2, 3

Verdict:

input
5000
FFQQCBCINBDWIKHFPO
SCJU
DNHYPGIQNZS
KNQCYRAXHHKORXMOVHL
...

correct output
22268

user output
0

Test 13

Group: 2, 3

Verdict:

input
5000
QVWMSYPWXWBBXWCVEOUAVQLDWNBXZB...

correct output
22589

user output
0

Test 14

Group: 2, 3

Verdict:

input
5000
JYORMNQAKXHNRBWGGSMWXWXMBKPBZU...

correct output
20482

user output
0

Test 15

Group: 3

Verdict:

input
100000
DCXXVIEYQAASZJYUUVYZUIJFGVBAYC...

correct output
8925377

user output
0

Test 16

Group: 3

Verdict:

input
100000
IJZHBIYNWQBDWNGZWVXJKXXWFVLPQX...

correct output
8907840

user output
0

Test 17

Group: 3

Verdict:

input
100000
GWUGLGQDAYGGJROIAKBMMICQMDUQQQ...

correct output
8771809

user output
0

Test 18

Group: 3

Verdict:

input
100000
SWVSVXURRSLCSHCPAKWESIPCNDKYLD...

correct output
8704480

user output
0

Test 19

Group: 3

Verdict:

input
100000
ZLSNSZBGIMCOLPDEAKVDAJCTMBNRLH...

correct output
8672362

user output
0

Test 20

Group: 1, 2, 3

Verdict:

input
20
AAB
D
CDBAA
D
...

correct output
15

user output
0

Test 21

Group: 1, 2, 3

Verdict:

input
20
A
CDD
AABBC
DBCB
...

correct output
15

user output
0

Test 22

Group: 1, 2, 3

Verdict:

input
20
ACADD
CDDCD
DACA
CCDCA
...

correct output
17

user output
0

Test 23

Group: 1, 2, 3

Verdict:

input
20
DCDA
BDBA
CACBD
BA
...

correct output
7

user output
0

Test 24

Group: 1, 2, 3

Verdict:

input
20
DDA
BBCDC
DDD
CCD
...

correct output
14

user output
0