#abc264g. [abc264_g]String Fair
[abc264_g]String Fair
Problem Statement
In a string fair, they determine the beauty of a non-empty string consisting of lowercase English letters.
The beauty of string equals the sum of scores determined by criteria. For , the score determined by the -th criterion is "the number of occurrences of a string (of length at most given in the Input) in as a consecutive subsequence" multiplied by .
Print the maximum possible beauty of a non-empty string consisting of lowercase English letters. If it is possible to obtain infinitely large beauty, print Infinity
instead.
Here, the number of occurrences of a string in a string as a consecutive subsequence is defined to be the number of integers such that and .
Constraints
- is an integer.
- is a string of length between and consisting of lowercase English letters.
- is an integer.
Input
Input is given from Standard Input in the following format:
Output
Print the maximum possible beauty of a non-empty string consisting of lowercase English letters. If it is possible to obtain infinitely large beauty, print Infinity
instead.
Sample Input 1
3
a -5
ab 10
ba -20
Sample Output 1
Infinity
For example, if abzabz
:
- The score determined by the -st criterion is points, because
a
occurs twice in as a consecutive subsequence. - The score determined by the -nd criterion is points, because
ab
occurs twice in as a consecutive subsequence. - The score determined by the -rd criterion is points, because
ba
occurs times in as a consecutive subsequence.
Thus, the beauty of is .
As another example, if abzabzabz
:
- The score determined by the -st criterion is points, because
a
occurs times in as a consecutive subsequence. - The score determined by the -nd criterion is points, because
ab
occurs times in as a consecutive subsequence. - The score determined by the -rd criterion is points, because
ba
occurs times in as a consecutive subsequence.
Thus, the beauty of is .
In general, for a positive integer , if is a concatenation of copies of abz
, then the beauty of is . Since you can obtain as large beauty as you want, Infinity
should be printed.
Sample Input 2
28
a -5
ab 10
ba -20
bb -20
bc -20
bd -20
be -20
bf -20
bg -20
bh -20
bi -20
bj -20
bk -20
bl -20
bm -20
bn -20
bo -20
bp -20
bq -20
br -20
bs -20
bt -20
bu -20
bv -20
bw -20
bx -20
by -20
bz -20
Sample Output 2
5
ab
achieves the maximum beauty possible.
Sample Input 3
26
a -1
b -1
c -1
d -1
e -1
f -1
g -1
h -1
i -1
j -1
k -1
l -1
m -1
n -1
o -1
p -1
q -1
r -1
s -1
t -1
u -1
v -1
w -1
x -1
y -1
z -1
Sample Output 3
-1
Note that should be a non-empty string.