Chefstr2.py — различия между версиями
Материал из DISCOPAL
StasFomin (обсуждение | вклад) |
StasFomin (обсуждение | вклад) |
||
Строка 30: | Строка 30: | ||
cur_diff += ks - max(frequency) | cur_diff += ks - max(frequency) | ||
− | if | + | if cur_diff < operations: |
− | + | ||
− | + | ||
− | + | ||
operations = cur_diff | operations = cur_diff | ||
k_pow = ks | k_pow = ks | ||
+ | elif operations == cur_diff: | ||
+ | if ks < k_pow: | ||
+ | k_pow = ks | ||
ind += 1 | ind += 1 | ||
print(f"{operations} {k_pow}") | print(f"{operations} {k_pow}") |
Версия 21:53, 4 мая 2022
import sys def main(): symbols = {} alphabet = "abcdefghijklmnopqrstuvwxyz" lenalf = len(alphabet) for i in range(lenalf): symbols[alphabet[i]] = i input_str = sys.stdin.readline()[:-1] n = len(input_str) input_idx = bytearray([symbols[ch] for ch in input_str]) operations = 1e6 k_pow = 1e6 ind = 1 lim = 3 * n / 4 while ind <= lim: cur_diff = 0 ks = -(n // -ind) for i in range(ind): frequency = [0] * lenalf j = i while j < n: frequency[input_idx[j]] += 1 j += ind cur_diff += ks - max(frequency) if cur_diff < operations: operations = cur_diff k_pow = ks elif operations == cur_diff: if ks < k_pow: k_pow = ks ind += 1 print(f"{operations} {k_pow}") main()