text stringlengths 594 23.8k | conversation_id int64 97 109k | embedding list | cluster int64 0 0 |
|---|---|---|---|
Provide tags and a correct Python 3 solution for this coding contest problem.
You are given a string s consisting of lowercase Latin letters. Let the length of s be |s|. You may perform several operations on this string.
In one operation, you can choose some index i and remove the i-th character of s (s_i) if at least one of its adjacent characters is the previous letter in the Latin alphabet for s_i. For example, the previous letter for b is a, the previous letter for s is r, the letter a has no previous letters. Note that after each removal the length of the string decreases by one. So, the index i should satisfy the condition 1 ≤ i ≤ |s| during each operation.
For the character s_i adjacent characters are s_{i-1} and s_{i+1}. The first and the last characters of s both have only one adjacent character (unless |s| = 1).
Consider the following example. Let s= bacabcab.
1. During the first move, you can remove the first character s_1= b because s_2= a. Then the string becomes s= acabcab.
2. During the second move, you can remove the fifth character s_5= c because s_4= b. Then the string becomes s= acabab.
3. During the third move, you can remove the sixth character s_6='b' because s_5= a. Then the string becomes s= acaba.
4. During the fourth move, the only character you can remove is s_4= b, because s_3= a (or s_5= a). The string becomes s= acaa and you cannot do anything with it.
Your task is to find the maximum possible number of characters you can remove if you choose the sequence of operations optimally.
Input
The first line of the input contains one integer |s| (1 ≤ |s| ≤ 100) — the length of s.
The second line of the input contains one string s consisting of |s| lowercase Latin letters.
Output
Print one integer — the maximum possible number of characters you can remove if you choose the sequence of moves optimally.
Examples
Input
8
bacabcab
Output
4
Input
4
bcda
Output
3
Input
6
abbbbb
Output
5
Note
The first example is described in the problem statement. Note that the sequence of moves provided in the statement is not the only, but it can be shown that the maximum possible answer to this test is 4.
In the second example, you can remove all but one character of s. The only possible answer follows.
1. During the first move, remove the third character s_3= d, s becomes bca.
2. During the second move, remove the second character s_2= c, s becomes ba.
3. And during the third move, remove the first character s_1= b, s becomes a.
Tags: brute force, constructive algorithms, greedy, strings
Correct Solution:
```
import sys
# from math
import bisect
import heapq
# from collections import deque
# from types import GeneratorType
# def bootstrap(func, stack=[]):
# def wrapped_function(*args, **kwargs):
# if stack:
# return func(*args, **kwargs)
# else:
# call = func(*args, **kwargs)
# while True:
# if type(call) is GeneratorType:
# stack.append(call)
# call = next(call)
# else:
# stack.pop()
# if not stack:
# break
# call = stack[-1].send(call)
# return call
# return wrapped_function
Ri = lambda : [int(x) for x in sys.stdin.readline().split()]
ri = lambda : sys.stdin.readline().strip()
def input(): return sys.stdin.readline().strip()
def list2d(a, b, c): return [[c] * b for i in range(a)]
def list3d(a, b, c, d): return [[[d] * c for j in range(b)] for i in range(a)]
def list4d(a, b, c, d, e): return [[[[e] * d for j in range(c)] for j in range(b)] for i in range(a)]
def ceil(x, y=1): return int(-(-x // y))
def INT(): return int(input())
def MAP(): return map(int, input().split())
def LIST(N=None): return list(MAP()) if N is None else [INT() for i in range(N)]
def Yes(): print('Yes')
def No(): print('No')
def YES(): print('YES')
def NO(): print('NO')
INF = 10 ** 18
MOD = 10**9+7
n = int(ri())
s = ri()
maxx= -1
maxxind = -1
flag = True
cnt = 0
while (flag ):
flag = False
maxx= -1
maxxind = -1
for i in range(len(s)):
# print(i)
if i-1>= 0 and ord(s[i]) == ord(s[i-1])+1:
if ord(s[i]) > maxx:
maxx = ord(s[i])
maxxind = i
flag = True
if i+1 <=len(s)-1 and ord(s[i]) == ord(s[i+1])+1:
if ord(s[i]) > maxx:
maxx = ord(s[i])
maxxind = i
flag = True
if flag :
s = s[0:maxxind] + s[maxxind+1:]
cnt+=1
print(cnt)
```
| 10,075 | [
0.1654052734375,
0.1585693359375,
0.1649169921875,
0.47802734375,
-0.45556640625,
-0.07977294921875,
-0.31298828125,
0.010345458984375,
0.1448974609375,
0.87548828125,
0.81201171875,
-0.017852783203125,
-0.65380859375,
-1.1171875,
-0.50634765625,
0.039947509765625,
-0.705078125,
-0.65380859375,
-0.445068359375,
-0.04345703125,
0.1533203125,
-0.0091400146484375,
-1.2978515625,
-0.1492919921875,
-0.0633544921875,
0.8876953125,
0.697265625,
-0.285400390625,
1.111328125,
1.3310546875,
-0.11114501953125,
-0.78515625,
0.9130859375,
-1.005859375,
-0.438232421875,
-0.337646484375,
0.79150390625,
-0.47900390625,
0.024505615234375,
-0.505859375,
0.34423828125,
-0.5859375,
0.564453125,
-0.67919921875,
-1.0908203125,
-0.032073974609375,
-0.332275390625,
-0.1868896484375,
-0.56103515625,
-0.470703125,
-0.1077880859375,
-0.283203125,
0.65478515625,
-0.05987548828125,
-0.005489349365234375,
0.1934814453125,
0.216552734375,
-0.2763671875,
-0.363525390625,
0.456298828125,
0.1920166015625,
0.1077880859375,
0.07843017578125,
-0.49609375,
-0.02777099609375,
0.343017578125,
-0.0567626953125,
0.1141357421875,
0.234375,
-0.7626953125,
-0.218994140625,
0.255859375,
-0.407470703125,
-0.701171875,
-0.19189453125,
0.05535888671875,
0.36279296875,
-0.361328125,
-0.65869140625,
0.708984375,
-0.11376953125,
0.92041015625,
0.414794921875,
0.1427001953125,
-0.61865234375,
-0.478271484375,
-0.07122802734375,
0.197265625,
-0.1802978515625,
-0.284423828125,
-0.3193359375,
0.9130859375,
-0.69140625,
-0.048553466796875,
0.3251953125,
0.94140625,
-0.49658203125,
0.3525390625,
0.576171875,
-0.105712890625,
0.65087890625,
0.7451171875,
-0.4150390625,
0.912109375,
-0.458740234375,
0.046905517578125,
0.2139892578125,
-0.219482421875,
-0.05255126953125,
-0.313232421875,
-0.390380859375,
-0.0762939453125,
0.311767578125,
0.2724609375,
-0.58251953125,
0.9404296875,
-0.051300048828125,
0.54443359375,
-0.90087890625,
0.41845703125,
0.475341796875,
0.26513671875,
0.80517578125,
-0.193603515625,
-0.249267578125,
-0.44189453125,
-0.65869140625,
0.80859375,
-0.7841796875,
0.1673583984375,
0.126220703125,
-0.0009303092956542969,
-0.62744140625,
0.359375,
-0.232421875,
1.091796875,
-0.368408203125,
0.396484375,
0.70703125,
-0.48095703125,
0.76611328125,
-0.01023101806640625,
-0.239013671875,
1.41015625,
0.4619140625,
0.0958251953125,
0.7939453125,
0.420166015625,
-0.5625,
0.5078125,
-1.1298828125,
0.67578125,
0.2255859375,
0.2958984375,
-0.43701171875,
0.287353515625,
-0.277099609375,
0.640625,
0.09857177734375,
0.292724609375,
-0.63720703125,
0.038665771484375,
-0.358154296875,
0.5087890625,
-0.1038818359375,
0.85595703125,
-0.42919921875,
-0.384521484375,
-0.0005307197570800781,
-0.36328125,
0.13525390625,
-0.405029296875,
-0.173828125,
0.56494140625,
0.47412109375,
0.98779296875,
0.857421875,
-0.2998046875,
0.5400390625,
0.51513671875,
-0.499755859375,
0.3427734375,
0.3291015625,
0.3916015625,
0.53662109375,
0.1361083984375,
-0.11834716796875,
-0.1458740234375,
-0.6298828125,
-0.421142578125,
-0.0007243156433105469,
0.6298828125,
-0.268310546875,
0.1435546875,
0.25341796875,
-0.2093505859375,
-0.97607421875,
0.062347412109375,
0.0462646484375,
-1.166015625,
-0.383544921875,
0.408447265625,
0.053070068359375,
0.53955078125,
-0.736328125,
-0.61083984375,
0.36328125,
1.15625,
-0.5703125,
0.3115234375,
0.853515625,
-0.016815185546875,
-0.09539794921875,
0.256103515625,
0.026458740234375,
-0.2064208984375,
-0.55712890625,
0.59716796875,
-0.29248046875,
0.31787109375,
0.10968017578125,
0.58837890625,
-0.09912109375,
0.873046875,
-0.15185546875,
-0.321044921875,
0.302978515625,
1.20703125,
0.10247802734375,
0.356689453125,
0.39453125,
0.783203125,
0.56591796875,
0.4482421875,
0.7255859375,
-0.09716796875,
0.70068359375,
1.076171875,
-0.230712890625,
0.2015380859375,
0.276611328125,
0.69140625,
0.71240234375,
0.5869140625,
0.11651611328125,
0.56982421875,
-0.042327880859375,
0.1439208984375,
-0.396484375,
0.1353759765625,
-0.3203125,
0.363525390625,
0.170166015625,
0.344970703125,
-0.2425537109375,
-0.1326904296875,
0.251708984375,
0.60986328125,
-1.05859375,
-0.34716796875,
-0.287841796875,
0.155029296875,
0.396240234375,
0.2490234375,
0.5029296875,
0.47998046875,
0.955078125,
0.29296875,
-0.089111328125,
-0.4384765625,
-0.90869140625,
-0.94873046875,
-0.77099609375,
-0.443359375,
-0.64404296875,
-0.127685546875,
0.39306640625,
-1.09765625,
0.286376953125,
-0.55224609375,
-0.308349609375,
0.1268310546875,
-0.482421875,
0.611328125,
-0.365478515625,
0.50390625,
-0.67431640625,
0.245849609375,
0.09228515625,
1.03515625,
-0.515625,
-0.0450439453125,
-0.32568359375,
-0.4423828125,
0.11456298828125,
-0.06756591796875,
0.55810546875,
0.018035888671875,
-0.611328125,
-0.90576171875,
-0.44970703125,
-0.050537109375,
-0.50146484375,
0.1553955078125,
-0.3359375,
0.58251953125,
0.7294921875,
-0.48681640625,
0.79736328125,
0.95947265625,
-0.79736328125,
0.413330078125,
-0.03521728515625,
0.1278076171875,
-0.7900390625,
1.2275390625,
0.412353515625,
0.381103515625,
-0.82177734375,
-0.88818359375,
-0.3232421875,
0.255615234375,
0.25390625,
-0.6513671875,
-0.2047119140625,
0.42724609375,
-0.29541015625,
-0.9296875,
0.75390625,
-0.8955078125,
-0.335205078125,
-0.3837890625,
-0.264404296875,
0.75390625,
0.54638671875,
0.339111328125,
-0.53759765625,
-0.517578125,
-0.01361846923828125,
1.0234375,
0.6884765625,
-0.86181640625,
0.057373046875,
0.71728515625,
-0.10528564453125,
0.1356201171875,
0.053741455078125,
-0.28125,
-0.419677734375,
0.43408203125,
0.037750244140625,
0.78125,
0.04620361328125,
0.49951171875,
0.83251953125,
0.415771484375,
-1.0224609375,
0.3408203125,
-0.256103515625,
1.0478515625,
0.6005859375,
0.261474609375,
0.53173828125,
-0.53173828125,
-0.488525390625,
-0.8798828125,
0.472412109375,
0.43310546875,
0.5234375,
-0.59619140625,
0.59228515625,
0.452880859375,
-0.29443359375,
0.456787109375,
-0.95458984375,
0.34130859375,
0.95556640625,
-0.256591796875,
1.0400390625,
-0.59619140625,
0.3115234375,
0.01904296875,
0.29345703125,
0.546875,
0.6826171875,
0.23583984375,
-0.362548828125,
-0.25830078125,
-0.423583984375,
-0.40283203125,
0.2379150390625,
-0.417724609375,
0.34375,
-0.0836181640625,
-0.432373046875,
-0.77392578125,
0.072021484375,
1.2138671875,
0.83935546875,
0.038055419921875,
0.1920166015625,
0.17626953125,
0.186767578125,
0.86328125,
-0.303466796875,
0.1258544921875,
-0.70263671875,
1.0439453125,
0.269775390625,
-0.236083984375,
-0.1435546875,
-0.2205810546875,
-0.10693359375,
0.380859375,
0.1427001953125,
-0.06005859375,
-1.271484375,
0.219482421875,
0.1112060546875,
0.57080078125,
-0.65625,
-0.10162353515625,
-0.210205078125,
0.58740234375,
0.1829833984375,
-0.79052734375,
-0.0869140625,
-1.0625,
0.76416015625,
0.334228515625,
0.093505859375,
-0.495361328125,
-0.253173828125,
-0.78173828125,
-0.74072265625,
0.453369140625,
0.75537109375,
-0.26123046875,
0.12115478515625,
-1.1025390625,
0.81396484375,
0.27880859375,
-0.2841796875,
0.0885009765625,
-0.1519775390625,
0.54296875,
0.25341796875,
0.6337890625,
-0.7529296875,
-0.73681640625,
0.015716552734375,
-1.2646484375,
0.6875,
-0.521484375,
0.53955078125,
0.01416015625,
-0.267333984375,
-0.05145263671875,
0.284423828125,
-0.320068359375,
0.50537109375,
-0.4462890625,
0.0177001953125,
-0.6953125,
-0.83544921875,
0.56982421875,
-0.43505859375,
-0.45361328125,
0.80615234375,
-0.0965576171875,
-0.2440185546875,
0.177001953125,
0.331298828125,
-0.43994140625,
0.2347412109375,
-0.5361328125,
0.578125,
-0.34521484375,
-0.80517578125,
-0.234619140625,
-0.350341796875,
0.7080078125,
0.074951171875,
-0.4951171875,
-0.05975341796875,
-0.9482421875,
-0.1180419921875,
0.029022216796875,
-0.7060546875,
0.223876953125,
0.324462890625,
-0.2705078125,
-0.12115478515625,
-0.0621337890625,
-0.173583984375,
-0.450439453125,
-0.469482421875,
-0.44189453125,
0.28076171875,
0.362548828125,
0.84375,
0.126708984375,
-0.274169921875,
-0.1502685546875,
0.0214996337890625,
-0.2216796875,
-0.7451171875,
-0.2108154296875,
-0.259033203125,
-0.19287109375,
-0.55029296875,
0.422607421875,
0.01580810546875,
0.391845703125,
0.81982421875,
0.1522216796875,
0.400146484375,
0.371826171875,
-0.39501953125,
0.9775390625,
0.295166015625,
-1.171875,
-0.85107421875,
0.58154296875,
0.206787109375,
0.27392578125,
0.10064697265625,
-1.0595703125,
-0.54541015625,
-0.91748046875,
0.6298828125,
-0.6591796875,
0.011993408203125,
-1.2197265625,
-0.646484375,
-0.333251953125,
0.4248046875,
-0.055908203125,
-0.2117919921875,
0.3125,
-1.03125,
0.2412109375,
-0.68212890625,
-0.375,
-0.85205078125,
-1.041015625,
-0.2646484375,
0.79931640625,
0.57373046875,
0.474609375,
0.1920166015625,
-0.322021484375,
0.3984375,
-0.409912109375,
-0.71923828125,
-0.365966796875,
-0.37255859375,
-0.0215301513671875,
-0.310302734375,
-0.11328125,
-0.765625,
0.94091796875,
-0.685546875,
0.406494140625,
0.06939697265625,
-0.42822265625,
-0.09942626953125,
-0.50439453125,
1.0908203125,
-0.38623046875,
-0.075927734375,
-0.37744140625,
0.701171875,
0.43505859375,
-0.054931640625,
-0.282470703125,
-0.36376953125,
-0.51220703125,
-1.0537109375,
0.544921875,
-0.6162109375,
0.1988525390625,
-0.85546875,
-0.089111328125,
0.97412109375,
-0.448974609375,
0.314697265625,
1.0146484375,
-0.040130615234375,
0.38427734375,
-0.572265625,
0.83642578125,
0.342041015625,
-0.6650390625,
0.19580078125,
0.06427001953125,
-0.76416015625,
0.2213134765625,
-0.50732421875,
-0.9638671875,
-0.619140625,
0.446044921875,
1.39453125,
-0.12939453125,
0.88720703125,
-0.1806640625,
-1.181640625,
-0.783203125,
0.7939453125,
0.0004870891571044922,
0.52734375,
0.98388671875,
-0.54443359375,
-0.350830078125,
0.1116943359375,
-0.06298828125,
-0.51806640625,
-0.1568603515625,
1.1630859375,
-0.7783203125,
-0.73388671875,
0.654296875,
0.69677734375,
-0.984375,
-0.91650390625,
-0.1495361328125,
-0.1309814453125,
-0.333740234375,
-0.595703125,
0.36279296875,
0.7783203125,
-0.67626953125,
0.054168701171875,
0.11151123046875,
-0.1983642578125,
0.6904296875,
-0.0136871337890625,
0.2479248046875,
-0.572265625,
0.422607421875,
0.27783203125,
-0.5205078125,
-0.513671875,
-1.072265625,
-0.1964111328125,
-0.098876953125,
0.2401123046875,
0.77197265625,
-0.248291015625,
0.0225830078125,
0.488525390625,
-0.077392578125,
0.7099609375,
-0.419677734375,
-0.1893310546875,
0.26513671875,
-0.44140625,
-0.5439453125,
0.07171630859375,
0.287109375,
-0.0677490234375,
0.587890625,
-0.60986328125,
-0.33984375,
0.55712890625,
0.4658203125,
-0.55224609375,
-0.53515625,
-0.314208984375,
-1.23046875,
-0.60986328125,
-0.7958984375,
-0.7490234375,
-0.2017822265625,
0.476806640625,
0.25146484375,
-0.81298828125,
0.2288818359375,
0.53173828125,
-0.82470703125,
0.76806640625,
-0.317138671875,
0.37939453125,
-0.385498046875,
-0.255615234375,
-0.70263671875,
0.27587890625,
-0.6083984375,
-0.2493896484375,
-0.09576416015625,
0.73046875,
-0.367431640625,
0.37353515625,
-0.09649658203125,
0.2919921875,
-0.5322265625,
-0.681640625,
-0.2264404296875,
0.1055908203125,
-0.27685546875,
1.0791015625,
0.66455078125,
0.50048828125,
0.297119140625,
-0.045928955078125,
-0.2061767578125,
-0.5029296875,
0.63671875,
0.63037109375,
-0.2216796875,
-0.266357421875,
-0.1795654296875,
0.2000732421875,
-0.859375,
0.4853515625,
-0.461181640625,
-0.000522613525390625,
0.112548828125,
-0.398681640625,
0.4208984375,
1.3427734375,
-0.486572265625,
0.208984375,
-0.09307861328125,
-0.1331787109375,
0.35791015625,
0.1444091796875,
0.214599609375,
0.43896484375,
-0.1832275390625,
-0.1708984375,
-0.161376953125,
0.357666015625,
0.2384033203125,
0.1329345703125,
-0.2474365234375,
-0.72900390625,
-0.88720703125,
-0.50048828125,
0.10333251953125,
0.1903076171875,
0.25927734375,
-0.63916015625,
-0.1080322265625,
0.315185546875,
-0.7626953125,
-0.10205078125,
-1.2080078125,
-1.2392578125,
0.237060546875,
0.0762939453125,
-0.89111328125,
-0.235595703125,
-0.328369140625,
-0.2744140625,
-0.13623046875,
0.53759765625,
-0.484619140625,
0.440673828125,
0.05792236328125,
0.462646484375,
-0.03253173828125,
-0.2164306640625,
0.274658203125,
0.5625,
-0.650390625,
-0.75537109375,
0.1873779296875,
0.77587890625,
0.1646728515625,
-0.1875,
-0.57080078125,
0.5654296875,
0.2467041015625,
0.12744140625,
-0.1890869140625,
0.140625,
-0.1356201171875,
0.63330078125,
-1.1044921875,
-0.1019287109375,
-0.1878662109375,
0.2271728515625,
0.07470703125,
-0.2381591796875,
-0.47802734375,
0.92041015625,
0.5966796875,
-0.44873046875,
0.4521484375,
0.357177734375,
0.2225341796875,
-0.152099609375,
-0.10980224609375,
-0.1646728515625,
0.260498046875,
0.64013671875,
0.6923828125,
-0.314453125,
0.322509765625,
0.483154296875,
-0.058746337890625,
-0.50390625,
0.2027587890625,
0.2293701171875,
0.1689453125,
0.047271728515625,
-0.34521484375,
-0.461181640625,
-0.18310546875,
-0.78515625,
0.2017822265625,
-0.650390625,
-0.0225067138671875,
0.0406494140625,
-0.826171875,
0.98681640625,
-0.29541015625,
0.055206298828125,
0.1783447265625,
-0.7275390625,
0.225341796875,
0.56005859375,
-0.1285400390625,
-0.265625,
0.798828125,
0.861328125,
0.90966796875,
0.71875,
0.402099609375,
0.479736328125,
-0.630859375,
0.07061767578125,
0.2244873046875,
0.03729248046875,
-0.57958984375,
-0.48876953125,
-0.80419921875,
0.572265625,
-0.422119140625,
-0.2362060546875,
0.462158203125,
-0.72412109375,
-0.030303955078125,
0.1026611328125,
1.1044921875,
-0.48486328125,
0.482421875,
0.71142578125,
-0.430419921875,
-0.783203125,
1.0888671875,
-0.3583984375,
0.177978515625,
0.1614990234375,
0.75048828125,
0.1407470703125,
1.33984375,
0.75,
-0.556640625,
0.2705078125,
0.8359375,
-0.560546875,
-0.8232421875,
-0.9921875,
-0.25244140625,
-0.1363525390625,
-0.4736328125,
-0.14697265625,
-0.0286407470703125,
0.56884765625,
0.1295166015625,
-0.5244140625,
-0.004024505615234375,
0.280029296875,
-0.8017578125,
0.316162109375,
0.265625,
0.320068359375,
0.2249755859375,
-0.1639404296875,
0.150390625,
-0.7978515625,
0.021942138671875,
-0.5537109375,
0.4033203125,
-1.087890625,
-0.25,
-0.93017578125,
-0.7958984375,
0.035736083984375,
-0.5419921875,
-0.421142578125,
-0.95458984375,
0.342041015625,
0.55224609375,
0.45703125,
0.3505859375,
-0.07733154296875,
0.4921875,
0.96923828125,
0.61865234375,
0.0189666748046875,
0.6708984375,
0.426025390625,
0.0198516845703125,
0.02294921875,
-0.1378173828125,
0.50341796875,
-0.171142578125,
0.349365234375,
-0.2459716796875,
0.212158203125,
-1.0078125,
-1.33984375,
0.21337890625,
0.43701171875,
0.2861328125,
-0.384521484375,
-0.66943359375,
-0.2449951171875,
-0.91552734375,
-0.01428985595703125,
-0.8955078125,
0.63818359375,
-0.455078125,
0.034454345703125,
-0.1837158203125,
-1.021484375,
4.32421875,
1.14453125,
1.21875,
0.1807861328125,
0.1875,
1.046875,
0.0024662017822265625,
-0.44140625,
-0.55615234375,
-0.27099609375,
0.8115234375,
-0.482666015625,
0.253662109375,
0.802734375,
0.476806640625,
0.474853515625,
-0.1419677734375,
0.0828857421875,
0.05718994140625,
-0.923828125,
-0.931640625,
0.21875,
-0.1485595703125,
0.60107421875,
-0.1082763671875,
0.4443359375,
0.482666015625,
-0.669921875,
-0.311279296875,
-0.81689453125,
0.272705078125,
-0.442626953125,
0.578125,
-0.140625,
0.06939697265625,
0.72998046875,
0.320556640625,
-0.3310546875,
-0.08172607421875,
0.12493896484375,
-0.06536865234375,
-0.0909423828125,
0.30810546875,
-0.85546875,
-0.01470184326171875,
0.2083740234375,
-0.775390625,
0.52783203125,
0.12384033203125,
-1.2060546875,
0.8232421875,
-0.340576171875,
0.404541015625,
-0.57421875,
-0.67529296875,
0.2122802734375,
0.1474609375,
-0.17822265625,
0.012847900390625,
0.53759765625,
0.2364501953125,
0.386474609375,
0.0654296875,
0.379150390625,
-1.115234375,
0.65380859375,
0.0826416015625,
0.396240234375,
-0.75439453125,
0.09979248046875,
-0.00756072998046875,
-0.65087890625,
-0.375,
-0.36083984375,
0.62451171875,
0.3671875,
-0.095947265625,
0.464599609375,
-0.00852203369140625,
-0.37158203125,
0.133544921875,
-0.244384765625,
-0.09539794921875,
-0.6455078125,
0.60400390625,
1.353515625,
-0.63427734375,
-0.34375,
-0.1685791015625,
0.41015625,
0.53173828125,
0.446533203125,
0.32958984375,
-0.74072265625,
-0.08734130859375
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
You are given a string s consisting of lowercase Latin letters. Let the length of s be |s|. You may perform several operations on this string.
In one operation, you can choose some index i and remove the i-th character of s (s_i) if at least one of its adjacent characters is the previous letter in the Latin alphabet for s_i. For example, the previous letter for b is a, the previous letter for s is r, the letter a has no previous letters. Note that after each removal the length of the string decreases by one. So, the index i should satisfy the condition 1 ≤ i ≤ |s| during each operation.
For the character s_i adjacent characters are s_{i-1} and s_{i+1}. The first and the last characters of s both have only one adjacent character (unless |s| = 1).
Consider the following example. Let s= bacabcab.
1. During the first move, you can remove the first character s_1= b because s_2= a. Then the string becomes s= acabcab.
2. During the second move, you can remove the fifth character s_5= c because s_4= b. Then the string becomes s= acabab.
3. During the third move, you can remove the sixth character s_6='b' because s_5= a. Then the string becomes s= acaba.
4. During the fourth move, the only character you can remove is s_4= b, because s_3= a (or s_5= a). The string becomes s= acaa and you cannot do anything with it.
Your task is to find the maximum possible number of characters you can remove if you choose the sequence of operations optimally.
Input
The first line of the input contains one integer |s| (1 ≤ |s| ≤ 100) — the length of s.
The second line of the input contains one string s consisting of |s| lowercase Latin letters.
Output
Print one integer — the maximum possible number of characters you can remove if you choose the sequence of moves optimally.
Examples
Input
8
bacabcab
Output
4
Input
4
bcda
Output
3
Input
6
abbbbb
Output
5
Note
The first example is described in the problem statement. Note that the sequence of moves provided in the statement is not the only, but it can be shown that the maximum possible answer to this test is 4.
In the second example, you can remove all but one character of s. The only possible answer follows.
1. During the first move, remove the third character s_3= d, s becomes bca.
2. During the second move, remove the second character s_2= c, s becomes ba.
3. And during the third move, remove the first character s_1= b, s becomes a.
Tags: brute force, constructive algorithms, greedy, strings
Correct Solution:
```
#from bisect import bisect_left as bl #c++ lowerbound bl(array,element)
#from bisect import bisect_right as br #c++ upperbound br(array,element)
#from __future__ import print_function, division #while using python2
def modinv(n,p):
return pow(n,p-2,p)
def is_next_inc(x, y):
if x == 'z':
return False
return y == chr(ord(x) + 1)
def is_next_dec(x, y):
if x == 'a':
return False
return y == chr(ord(x) - 1)
def main():
#sys.stdin = open('input.txt', 'r')
#sys.stdout = open('output.txt', 'w')
l = int(input())
s = input()
while True:
n = len(s)
max_char = 'a'
max_char_ind = -1
for i in range(n):
if i > 0 and (is_next_inc(s[i], s[i-1]) or is_next_dec(s[i], s[i-1])):
if ord(s[i]) >= ord(max_char):
max_char_ind = i
max_char = s[i]
if i < n-1 and (is_next_inc(s[i], s[i+1]) or is_next_dec(s[i], s[i+1])):
if ord(s[i]) >= ord(max_char):
max_char_ind = i
max_char = s[i]
if max_char_ind == -1:
break
s = s[:max_char_ind] + s[max_char_ind+1:]
# print(max_char, s)
# input()
print(l -len(s))
#------------------ Python 2 and 3 footer by Pajenegod and c1729-----------------------------------------
py2 = round(0.5)
if py2:
from future_builtins import ascii, filter, hex, map, oct, zip
range = xrange
import os, sys
from io import IOBase, BytesIO
BUFSIZE = 8192
class FastIO(BytesIO):
newlines = 0
def __init__(self, file):
self._file = file
self._fd = file.fileno()
self.writable = "x" in file.mode or "w" in file.mode
self.write = super(FastIO, self).write if self.writable else None
def _fill(self):
s = os.read(self._fd, max(os.fstat(self._fd).st_size, BUFSIZE))
self.seek((self.tell(), self.seek(0,2), super(FastIO, self).write(s))[0])
return s
def read(self):
while self._fill(): pass
return super(FastIO,self).read()
def readline(self):
while self.newlines == 0:
s = self._fill(); self.newlines = s.count(b"\n") + (not s)
self.newlines -= 1
return super(FastIO, self).readline()
def flush(self):
if self.writable:
os.write(self._fd, self.getvalue())
self.truncate(0), self.seek(0)
class IOWrapper(IOBase):
def __init__(self, file):
self.buffer = FastIO(file)
self.flush = self.buffer.flush
self.writable = self.buffer.writable
if py2:
self.write = self.buffer.write
self.read = self.buffer.read
self.readline = self.buffer.readline
else:
self.write = lambda s:self.buffer.write(s.encode('ascii'))
self.read = lambda:self.buffer.read().decode('ascii')
self.readline = lambda:self.buffer.readline().decode('ascii')
sys.stdin, sys.stdout = IOWrapper(sys.stdin), IOWrapper(sys.stdout)
input = lambda: sys.stdin.readline().rstrip('\r\n')
if __name__ == '__main__':
main()
```
| 10,076 | [
0.1654052734375,
0.1585693359375,
0.1649169921875,
0.47802734375,
-0.45556640625,
-0.07977294921875,
-0.31298828125,
0.010345458984375,
0.1448974609375,
0.87548828125,
0.81201171875,
-0.017852783203125,
-0.65380859375,
-1.1171875,
-0.50634765625,
0.039947509765625,
-0.705078125,
-0.65380859375,
-0.445068359375,
-0.04345703125,
0.1533203125,
-0.0091400146484375,
-1.2978515625,
-0.1492919921875,
-0.0633544921875,
0.8876953125,
0.697265625,
-0.285400390625,
1.111328125,
1.3310546875,
-0.11114501953125,
-0.78515625,
0.9130859375,
-1.005859375,
-0.438232421875,
-0.337646484375,
0.79150390625,
-0.47900390625,
0.024505615234375,
-0.505859375,
0.34423828125,
-0.5859375,
0.564453125,
-0.67919921875,
-1.0908203125,
-0.032073974609375,
-0.332275390625,
-0.1868896484375,
-0.56103515625,
-0.470703125,
-0.1077880859375,
-0.283203125,
0.65478515625,
-0.05987548828125,
-0.005489349365234375,
0.1934814453125,
0.216552734375,
-0.2763671875,
-0.363525390625,
0.456298828125,
0.1920166015625,
0.1077880859375,
0.07843017578125,
-0.49609375,
-0.02777099609375,
0.343017578125,
-0.0567626953125,
0.1141357421875,
0.234375,
-0.7626953125,
-0.218994140625,
0.255859375,
-0.407470703125,
-0.701171875,
-0.19189453125,
0.05535888671875,
0.36279296875,
-0.361328125,
-0.65869140625,
0.708984375,
-0.11376953125,
0.92041015625,
0.414794921875,
0.1427001953125,
-0.61865234375,
-0.478271484375,
-0.07122802734375,
0.197265625,
-0.1802978515625,
-0.284423828125,
-0.3193359375,
0.9130859375,
-0.69140625,
-0.048553466796875,
0.3251953125,
0.94140625,
-0.49658203125,
0.3525390625,
0.576171875,
-0.105712890625,
0.65087890625,
0.7451171875,
-0.4150390625,
0.912109375,
-0.458740234375,
0.046905517578125,
0.2139892578125,
-0.219482421875,
-0.05255126953125,
-0.313232421875,
-0.390380859375,
-0.0762939453125,
0.311767578125,
0.2724609375,
-0.58251953125,
0.9404296875,
-0.051300048828125,
0.54443359375,
-0.90087890625,
0.41845703125,
0.475341796875,
0.26513671875,
0.80517578125,
-0.193603515625,
-0.249267578125,
-0.44189453125,
-0.65869140625,
0.80859375,
-0.7841796875,
0.1673583984375,
0.126220703125,
-0.0009303092956542969,
-0.62744140625,
0.359375,
-0.232421875,
1.091796875,
-0.368408203125,
0.396484375,
0.70703125,
-0.48095703125,
0.76611328125,
-0.01023101806640625,
-0.239013671875,
1.41015625,
0.4619140625,
0.0958251953125,
0.7939453125,
0.420166015625,
-0.5625,
0.5078125,
-1.1298828125,
0.67578125,
0.2255859375,
0.2958984375,
-0.43701171875,
0.287353515625,
-0.277099609375,
0.640625,
0.09857177734375,
0.292724609375,
-0.63720703125,
0.038665771484375,
-0.358154296875,
0.5087890625,
-0.1038818359375,
0.85595703125,
-0.42919921875,
-0.384521484375,
-0.0005307197570800781,
-0.36328125,
0.13525390625,
-0.405029296875,
-0.173828125,
0.56494140625,
0.47412109375,
0.98779296875,
0.857421875,
-0.2998046875,
0.5400390625,
0.51513671875,
-0.499755859375,
0.3427734375,
0.3291015625,
0.3916015625,
0.53662109375,
0.1361083984375,
-0.11834716796875,
-0.1458740234375,
-0.6298828125,
-0.421142578125,
-0.0007243156433105469,
0.6298828125,
-0.268310546875,
0.1435546875,
0.25341796875,
-0.2093505859375,
-0.97607421875,
0.062347412109375,
0.0462646484375,
-1.166015625,
-0.383544921875,
0.408447265625,
0.053070068359375,
0.53955078125,
-0.736328125,
-0.61083984375,
0.36328125,
1.15625,
-0.5703125,
0.3115234375,
0.853515625,
-0.016815185546875,
-0.09539794921875,
0.256103515625,
0.026458740234375,
-0.2064208984375,
-0.55712890625,
0.59716796875,
-0.29248046875,
0.31787109375,
0.10968017578125,
0.58837890625,
-0.09912109375,
0.873046875,
-0.15185546875,
-0.321044921875,
0.302978515625,
1.20703125,
0.10247802734375,
0.356689453125,
0.39453125,
0.783203125,
0.56591796875,
0.4482421875,
0.7255859375,
-0.09716796875,
0.70068359375,
1.076171875,
-0.230712890625,
0.2015380859375,
0.276611328125,
0.69140625,
0.71240234375,
0.5869140625,
0.11651611328125,
0.56982421875,
-0.042327880859375,
0.1439208984375,
-0.396484375,
0.1353759765625,
-0.3203125,
0.363525390625,
0.170166015625,
0.344970703125,
-0.2425537109375,
-0.1326904296875,
0.251708984375,
0.60986328125,
-1.05859375,
-0.34716796875,
-0.287841796875,
0.155029296875,
0.396240234375,
0.2490234375,
0.5029296875,
0.47998046875,
0.955078125,
0.29296875,
-0.089111328125,
-0.4384765625,
-0.90869140625,
-0.94873046875,
-0.77099609375,
-0.443359375,
-0.64404296875,
-0.127685546875,
0.39306640625,
-1.09765625,
0.286376953125,
-0.55224609375,
-0.308349609375,
0.1268310546875,
-0.482421875,
0.611328125,
-0.365478515625,
0.50390625,
-0.67431640625,
0.245849609375,
0.09228515625,
1.03515625,
-0.515625,
-0.0450439453125,
-0.32568359375,
-0.4423828125,
0.11456298828125,
-0.06756591796875,
0.55810546875,
0.018035888671875,
-0.611328125,
-0.90576171875,
-0.44970703125,
-0.050537109375,
-0.50146484375,
0.1553955078125,
-0.3359375,
0.58251953125,
0.7294921875,
-0.48681640625,
0.79736328125,
0.95947265625,
-0.79736328125,
0.413330078125,
-0.03521728515625,
0.1278076171875,
-0.7900390625,
1.2275390625,
0.412353515625,
0.381103515625,
-0.82177734375,
-0.88818359375,
-0.3232421875,
0.255615234375,
0.25390625,
-0.6513671875,
-0.2047119140625,
0.42724609375,
-0.29541015625,
-0.9296875,
0.75390625,
-0.8955078125,
-0.335205078125,
-0.3837890625,
-0.264404296875,
0.75390625,
0.54638671875,
0.339111328125,
-0.53759765625,
-0.517578125,
-0.01361846923828125,
1.0234375,
0.6884765625,
-0.86181640625,
0.057373046875,
0.71728515625,
-0.10528564453125,
0.1356201171875,
0.053741455078125,
-0.28125,
-0.419677734375,
0.43408203125,
0.037750244140625,
0.78125,
0.04620361328125,
0.49951171875,
0.83251953125,
0.415771484375,
-1.0224609375,
0.3408203125,
-0.256103515625,
1.0478515625,
0.6005859375,
0.261474609375,
0.53173828125,
-0.53173828125,
-0.488525390625,
-0.8798828125,
0.472412109375,
0.43310546875,
0.5234375,
-0.59619140625,
0.59228515625,
0.452880859375,
-0.29443359375,
0.456787109375,
-0.95458984375,
0.34130859375,
0.95556640625,
-0.256591796875,
1.0400390625,
-0.59619140625,
0.3115234375,
0.01904296875,
0.29345703125,
0.546875,
0.6826171875,
0.23583984375,
-0.362548828125,
-0.25830078125,
-0.423583984375,
-0.40283203125,
0.2379150390625,
-0.417724609375,
0.34375,
-0.0836181640625,
-0.432373046875,
-0.77392578125,
0.072021484375,
1.2138671875,
0.83935546875,
0.038055419921875,
0.1920166015625,
0.17626953125,
0.186767578125,
0.86328125,
-0.303466796875,
0.1258544921875,
-0.70263671875,
1.0439453125,
0.269775390625,
-0.236083984375,
-0.1435546875,
-0.2205810546875,
-0.10693359375,
0.380859375,
0.1427001953125,
-0.06005859375,
-1.271484375,
0.219482421875,
0.1112060546875,
0.57080078125,
-0.65625,
-0.10162353515625,
-0.210205078125,
0.58740234375,
0.1829833984375,
-0.79052734375,
-0.0869140625,
-1.0625,
0.76416015625,
0.334228515625,
0.093505859375,
-0.495361328125,
-0.253173828125,
-0.78173828125,
-0.74072265625,
0.453369140625,
0.75537109375,
-0.26123046875,
0.12115478515625,
-1.1025390625,
0.81396484375,
0.27880859375,
-0.2841796875,
0.0885009765625,
-0.1519775390625,
0.54296875,
0.25341796875,
0.6337890625,
-0.7529296875,
-0.73681640625,
0.015716552734375,
-1.2646484375,
0.6875,
-0.521484375,
0.53955078125,
0.01416015625,
-0.267333984375,
-0.05145263671875,
0.284423828125,
-0.320068359375,
0.50537109375,
-0.4462890625,
0.0177001953125,
-0.6953125,
-0.83544921875,
0.56982421875,
-0.43505859375,
-0.45361328125,
0.80615234375,
-0.0965576171875,
-0.2440185546875,
0.177001953125,
0.331298828125,
-0.43994140625,
0.2347412109375,
-0.5361328125,
0.578125,
-0.34521484375,
-0.80517578125,
-0.234619140625,
-0.350341796875,
0.7080078125,
0.074951171875,
-0.4951171875,
-0.05975341796875,
-0.9482421875,
-0.1180419921875,
0.029022216796875,
-0.7060546875,
0.223876953125,
0.324462890625,
-0.2705078125,
-0.12115478515625,
-0.0621337890625,
-0.173583984375,
-0.450439453125,
-0.469482421875,
-0.44189453125,
0.28076171875,
0.362548828125,
0.84375,
0.126708984375,
-0.274169921875,
-0.1502685546875,
0.0214996337890625,
-0.2216796875,
-0.7451171875,
-0.2108154296875,
-0.259033203125,
-0.19287109375,
-0.55029296875,
0.422607421875,
0.01580810546875,
0.391845703125,
0.81982421875,
0.1522216796875,
0.400146484375,
0.371826171875,
-0.39501953125,
0.9775390625,
0.295166015625,
-1.171875,
-0.85107421875,
0.58154296875,
0.206787109375,
0.27392578125,
0.10064697265625,
-1.0595703125,
-0.54541015625,
-0.91748046875,
0.6298828125,
-0.6591796875,
0.011993408203125,
-1.2197265625,
-0.646484375,
-0.333251953125,
0.4248046875,
-0.055908203125,
-0.2117919921875,
0.3125,
-1.03125,
0.2412109375,
-0.68212890625,
-0.375,
-0.85205078125,
-1.041015625,
-0.2646484375,
0.79931640625,
0.57373046875,
0.474609375,
0.1920166015625,
-0.322021484375,
0.3984375,
-0.409912109375,
-0.71923828125,
-0.365966796875,
-0.37255859375,
-0.0215301513671875,
-0.310302734375,
-0.11328125,
-0.765625,
0.94091796875,
-0.685546875,
0.406494140625,
0.06939697265625,
-0.42822265625,
-0.09942626953125,
-0.50439453125,
1.0908203125,
-0.38623046875,
-0.075927734375,
-0.37744140625,
0.701171875,
0.43505859375,
-0.054931640625,
-0.282470703125,
-0.36376953125,
-0.51220703125,
-1.0537109375,
0.544921875,
-0.6162109375,
0.1988525390625,
-0.85546875,
-0.089111328125,
0.97412109375,
-0.448974609375,
0.314697265625,
1.0146484375,
-0.040130615234375,
0.38427734375,
-0.572265625,
0.83642578125,
0.342041015625,
-0.6650390625,
0.19580078125,
0.06427001953125,
-0.76416015625,
0.2213134765625,
-0.50732421875,
-0.9638671875,
-0.619140625,
0.446044921875,
1.39453125,
-0.12939453125,
0.88720703125,
-0.1806640625,
-1.181640625,
-0.783203125,
0.7939453125,
0.0004870891571044922,
0.52734375,
0.98388671875,
-0.54443359375,
-0.350830078125,
0.1116943359375,
-0.06298828125,
-0.51806640625,
-0.1568603515625,
1.1630859375,
-0.7783203125,
-0.73388671875,
0.654296875,
0.69677734375,
-0.984375,
-0.91650390625,
-0.1495361328125,
-0.1309814453125,
-0.333740234375,
-0.595703125,
0.36279296875,
0.7783203125,
-0.67626953125,
0.054168701171875,
0.11151123046875,
-0.1983642578125,
0.6904296875,
-0.0136871337890625,
0.2479248046875,
-0.572265625,
0.422607421875,
0.27783203125,
-0.5205078125,
-0.513671875,
-1.072265625,
-0.1964111328125,
-0.098876953125,
0.2401123046875,
0.77197265625,
-0.248291015625,
0.0225830078125,
0.488525390625,
-0.077392578125,
0.7099609375,
-0.419677734375,
-0.1893310546875,
0.26513671875,
-0.44140625,
-0.5439453125,
0.07171630859375,
0.287109375,
-0.0677490234375,
0.587890625,
-0.60986328125,
-0.33984375,
0.55712890625,
0.4658203125,
-0.55224609375,
-0.53515625,
-0.314208984375,
-1.23046875,
-0.60986328125,
-0.7958984375,
-0.7490234375,
-0.2017822265625,
0.476806640625,
0.25146484375,
-0.81298828125,
0.2288818359375,
0.53173828125,
-0.82470703125,
0.76806640625,
-0.317138671875,
0.37939453125,
-0.385498046875,
-0.255615234375,
-0.70263671875,
0.27587890625,
-0.6083984375,
-0.2493896484375,
-0.09576416015625,
0.73046875,
-0.367431640625,
0.37353515625,
-0.09649658203125,
0.2919921875,
-0.5322265625,
-0.681640625,
-0.2264404296875,
0.1055908203125,
-0.27685546875,
1.0791015625,
0.66455078125,
0.50048828125,
0.297119140625,
-0.045928955078125,
-0.2061767578125,
-0.5029296875,
0.63671875,
0.63037109375,
-0.2216796875,
-0.266357421875,
-0.1795654296875,
0.2000732421875,
-0.859375,
0.4853515625,
-0.461181640625,
-0.000522613525390625,
0.112548828125,
-0.398681640625,
0.4208984375,
1.3427734375,
-0.486572265625,
0.208984375,
-0.09307861328125,
-0.1331787109375,
0.35791015625,
0.1444091796875,
0.214599609375,
0.43896484375,
-0.1832275390625,
-0.1708984375,
-0.161376953125,
0.357666015625,
0.2384033203125,
0.1329345703125,
-0.2474365234375,
-0.72900390625,
-0.88720703125,
-0.50048828125,
0.10333251953125,
0.1903076171875,
0.25927734375,
-0.63916015625,
-0.1080322265625,
0.315185546875,
-0.7626953125,
-0.10205078125,
-1.2080078125,
-1.2392578125,
0.237060546875,
0.0762939453125,
-0.89111328125,
-0.235595703125,
-0.328369140625,
-0.2744140625,
-0.13623046875,
0.53759765625,
-0.484619140625,
0.440673828125,
0.05792236328125,
0.462646484375,
-0.03253173828125,
-0.2164306640625,
0.274658203125,
0.5625,
-0.650390625,
-0.75537109375,
0.1873779296875,
0.77587890625,
0.1646728515625,
-0.1875,
-0.57080078125,
0.5654296875,
0.2467041015625,
0.12744140625,
-0.1890869140625,
0.140625,
-0.1356201171875,
0.63330078125,
-1.1044921875,
-0.1019287109375,
-0.1878662109375,
0.2271728515625,
0.07470703125,
-0.2381591796875,
-0.47802734375,
0.92041015625,
0.5966796875,
-0.44873046875,
0.4521484375,
0.357177734375,
0.2225341796875,
-0.152099609375,
-0.10980224609375,
-0.1646728515625,
0.260498046875,
0.64013671875,
0.6923828125,
-0.314453125,
0.322509765625,
0.483154296875,
-0.058746337890625,
-0.50390625,
0.2027587890625,
0.2293701171875,
0.1689453125,
0.047271728515625,
-0.34521484375,
-0.461181640625,
-0.18310546875,
-0.78515625,
0.2017822265625,
-0.650390625,
-0.0225067138671875,
0.0406494140625,
-0.826171875,
0.98681640625,
-0.29541015625,
0.055206298828125,
0.1783447265625,
-0.7275390625,
0.225341796875,
0.56005859375,
-0.1285400390625,
-0.265625,
0.798828125,
0.861328125,
0.90966796875,
0.71875,
0.402099609375,
0.479736328125,
-0.630859375,
0.07061767578125,
0.2244873046875,
0.03729248046875,
-0.57958984375,
-0.48876953125,
-0.80419921875,
0.572265625,
-0.422119140625,
-0.2362060546875,
0.462158203125,
-0.72412109375,
-0.030303955078125,
0.1026611328125,
1.1044921875,
-0.48486328125,
0.482421875,
0.71142578125,
-0.430419921875,
-0.783203125,
1.0888671875,
-0.3583984375,
0.177978515625,
0.1614990234375,
0.75048828125,
0.1407470703125,
1.33984375,
0.75,
-0.556640625,
0.2705078125,
0.8359375,
-0.560546875,
-0.8232421875,
-0.9921875,
-0.25244140625,
-0.1363525390625,
-0.4736328125,
-0.14697265625,
-0.0286407470703125,
0.56884765625,
0.1295166015625,
-0.5244140625,
-0.004024505615234375,
0.280029296875,
-0.8017578125,
0.316162109375,
0.265625,
0.320068359375,
0.2249755859375,
-0.1639404296875,
0.150390625,
-0.7978515625,
0.021942138671875,
-0.5537109375,
0.4033203125,
-1.087890625,
-0.25,
-0.93017578125,
-0.7958984375,
0.035736083984375,
-0.5419921875,
-0.421142578125,
-0.95458984375,
0.342041015625,
0.55224609375,
0.45703125,
0.3505859375,
-0.07733154296875,
0.4921875,
0.96923828125,
0.61865234375,
0.0189666748046875,
0.6708984375,
0.426025390625,
0.0198516845703125,
0.02294921875,
-0.1378173828125,
0.50341796875,
-0.171142578125,
0.349365234375,
-0.2459716796875,
0.212158203125,
-1.0078125,
-1.33984375,
0.21337890625,
0.43701171875,
0.2861328125,
-0.384521484375,
-0.66943359375,
-0.2449951171875,
-0.91552734375,
-0.01428985595703125,
-0.8955078125,
0.63818359375,
-0.455078125,
0.034454345703125,
-0.1837158203125,
-1.021484375,
4.32421875,
1.14453125,
1.21875,
0.1807861328125,
0.1875,
1.046875,
0.0024662017822265625,
-0.44140625,
-0.55615234375,
-0.27099609375,
0.8115234375,
-0.482666015625,
0.253662109375,
0.802734375,
0.476806640625,
0.474853515625,
-0.1419677734375,
0.0828857421875,
0.05718994140625,
-0.923828125,
-0.931640625,
0.21875,
-0.1485595703125,
0.60107421875,
-0.1082763671875,
0.4443359375,
0.482666015625,
-0.669921875,
-0.311279296875,
-0.81689453125,
0.272705078125,
-0.442626953125,
0.578125,
-0.140625,
0.06939697265625,
0.72998046875,
0.320556640625,
-0.3310546875,
-0.08172607421875,
0.12493896484375,
-0.06536865234375,
-0.0909423828125,
0.30810546875,
-0.85546875,
-0.01470184326171875,
0.2083740234375,
-0.775390625,
0.52783203125,
0.12384033203125,
-1.2060546875,
0.8232421875,
-0.340576171875,
0.404541015625,
-0.57421875,
-0.67529296875,
0.2122802734375,
0.1474609375,
-0.17822265625,
0.012847900390625,
0.53759765625,
0.2364501953125,
0.386474609375,
0.0654296875,
0.379150390625,
-1.115234375,
0.65380859375,
0.0826416015625,
0.396240234375,
-0.75439453125,
0.09979248046875,
-0.00756072998046875,
-0.65087890625,
-0.375,
-0.36083984375,
0.62451171875,
0.3671875,
-0.095947265625,
0.464599609375,
-0.00852203369140625,
-0.37158203125,
0.133544921875,
-0.244384765625,
-0.09539794921875,
-0.6455078125,
0.60400390625,
1.353515625,
-0.63427734375,
-0.34375,
-0.1685791015625,
0.41015625,
0.53173828125,
0.446533203125,
0.32958984375,
-0.74072265625,
-0.08734130859375
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
You are given a string s consisting of lowercase Latin letters. Let the length of s be |s|. You may perform several operations on this string.
In one operation, you can choose some index i and remove the i-th character of s (s_i) if at least one of its adjacent characters is the previous letter in the Latin alphabet for s_i. For example, the previous letter for b is a, the previous letter for s is r, the letter a has no previous letters. Note that after each removal the length of the string decreases by one. So, the index i should satisfy the condition 1 ≤ i ≤ |s| during each operation.
For the character s_i adjacent characters are s_{i-1} and s_{i+1}. The first and the last characters of s both have only one adjacent character (unless |s| = 1).
Consider the following example. Let s= bacabcab.
1. During the first move, you can remove the first character s_1= b because s_2= a. Then the string becomes s= acabcab.
2. During the second move, you can remove the fifth character s_5= c because s_4= b. Then the string becomes s= acabab.
3. During the third move, you can remove the sixth character s_6='b' because s_5= a. Then the string becomes s= acaba.
4. During the fourth move, the only character you can remove is s_4= b, because s_3= a (or s_5= a). The string becomes s= acaa and you cannot do anything with it.
Your task is to find the maximum possible number of characters you can remove if you choose the sequence of operations optimally.
Input
The first line of the input contains one integer |s| (1 ≤ |s| ≤ 100) — the length of s.
The second line of the input contains one string s consisting of |s| lowercase Latin letters.
Output
Print one integer — the maximum possible number of characters you can remove if you choose the sequence of moves optimally.
Examples
Input
8
bacabcab
Output
4
Input
4
bcda
Output
3
Input
6
abbbbb
Output
5
Note
The first example is described in the problem statement. Note that the sequence of moves provided in the statement is not the only, but it can be shown that the maximum possible answer to this test is 4.
In the second example, you can remove all but one character of s. The only possible answer follows.
1. During the first move, remove the third character s_3= d, s becomes bca.
2. During the second move, remove the second character s_2= c, s becomes ba.
3. And during the third move, remove the first character s_1= b, s becomes a.
Tags: brute force, constructive algorithms, greedy, strings
Correct Solution:
```
n = int(input())
s = [ord(i) for i in input()]
for mx in range(122, 96, -1):
i = 0
while i < len(s):
flag = 1
if s[i] == mx:
if i < len(s) - 1:
if s[i + 1] == s[i] - 1:
j = i
while s[j] == mx:
del s[j]
j -= 1
i -= 1
if j == -1:
break
i += 1
flag = 0
if i:
if s[i - 1] == s[i] - 1 and flag:
j = i
while s[j] == mx:
del s[j]
if j == len(s):
break
flag = 0
if flag:
i += 1
print(n - len(s))
```
| 10,077 | [
0.1654052734375,
0.1585693359375,
0.1649169921875,
0.47802734375,
-0.45556640625,
-0.07977294921875,
-0.31298828125,
0.010345458984375,
0.1448974609375,
0.87548828125,
0.81201171875,
-0.017852783203125,
-0.65380859375,
-1.1171875,
-0.50634765625,
0.039947509765625,
-0.705078125,
-0.65380859375,
-0.445068359375,
-0.04345703125,
0.1533203125,
-0.0091400146484375,
-1.2978515625,
-0.1492919921875,
-0.0633544921875,
0.8876953125,
0.697265625,
-0.285400390625,
1.111328125,
1.3310546875,
-0.11114501953125,
-0.78515625,
0.9130859375,
-1.005859375,
-0.438232421875,
-0.337646484375,
0.79150390625,
-0.47900390625,
0.024505615234375,
-0.505859375,
0.34423828125,
-0.5859375,
0.564453125,
-0.67919921875,
-1.0908203125,
-0.032073974609375,
-0.332275390625,
-0.1868896484375,
-0.56103515625,
-0.470703125,
-0.1077880859375,
-0.283203125,
0.65478515625,
-0.05987548828125,
-0.005489349365234375,
0.1934814453125,
0.216552734375,
-0.2763671875,
-0.363525390625,
0.456298828125,
0.1920166015625,
0.1077880859375,
0.07843017578125,
-0.49609375,
-0.02777099609375,
0.343017578125,
-0.0567626953125,
0.1141357421875,
0.234375,
-0.7626953125,
-0.218994140625,
0.255859375,
-0.407470703125,
-0.701171875,
-0.19189453125,
0.05535888671875,
0.36279296875,
-0.361328125,
-0.65869140625,
0.708984375,
-0.11376953125,
0.92041015625,
0.414794921875,
0.1427001953125,
-0.61865234375,
-0.478271484375,
-0.07122802734375,
0.197265625,
-0.1802978515625,
-0.284423828125,
-0.3193359375,
0.9130859375,
-0.69140625,
-0.048553466796875,
0.3251953125,
0.94140625,
-0.49658203125,
0.3525390625,
0.576171875,
-0.105712890625,
0.65087890625,
0.7451171875,
-0.4150390625,
0.912109375,
-0.458740234375,
0.046905517578125,
0.2139892578125,
-0.219482421875,
-0.05255126953125,
-0.313232421875,
-0.390380859375,
-0.0762939453125,
0.311767578125,
0.2724609375,
-0.58251953125,
0.9404296875,
-0.051300048828125,
0.54443359375,
-0.90087890625,
0.41845703125,
0.475341796875,
0.26513671875,
0.80517578125,
-0.193603515625,
-0.249267578125,
-0.44189453125,
-0.65869140625,
0.80859375,
-0.7841796875,
0.1673583984375,
0.126220703125,
-0.0009303092956542969,
-0.62744140625,
0.359375,
-0.232421875,
1.091796875,
-0.368408203125,
0.396484375,
0.70703125,
-0.48095703125,
0.76611328125,
-0.01023101806640625,
-0.239013671875,
1.41015625,
0.4619140625,
0.0958251953125,
0.7939453125,
0.420166015625,
-0.5625,
0.5078125,
-1.1298828125,
0.67578125,
0.2255859375,
0.2958984375,
-0.43701171875,
0.287353515625,
-0.277099609375,
0.640625,
0.09857177734375,
0.292724609375,
-0.63720703125,
0.038665771484375,
-0.358154296875,
0.5087890625,
-0.1038818359375,
0.85595703125,
-0.42919921875,
-0.384521484375,
-0.0005307197570800781,
-0.36328125,
0.13525390625,
-0.405029296875,
-0.173828125,
0.56494140625,
0.47412109375,
0.98779296875,
0.857421875,
-0.2998046875,
0.5400390625,
0.51513671875,
-0.499755859375,
0.3427734375,
0.3291015625,
0.3916015625,
0.53662109375,
0.1361083984375,
-0.11834716796875,
-0.1458740234375,
-0.6298828125,
-0.421142578125,
-0.0007243156433105469,
0.6298828125,
-0.268310546875,
0.1435546875,
0.25341796875,
-0.2093505859375,
-0.97607421875,
0.062347412109375,
0.0462646484375,
-1.166015625,
-0.383544921875,
0.408447265625,
0.053070068359375,
0.53955078125,
-0.736328125,
-0.61083984375,
0.36328125,
1.15625,
-0.5703125,
0.3115234375,
0.853515625,
-0.016815185546875,
-0.09539794921875,
0.256103515625,
0.026458740234375,
-0.2064208984375,
-0.55712890625,
0.59716796875,
-0.29248046875,
0.31787109375,
0.10968017578125,
0.58837890625,
-0.09912109375,
0.873046875,
-0.15185546875,
-0.321044921875,
0.302978515625,
1.20703125,
0.10247802734375,
0.356689453125,
0.39453125,
0.783203125,
0.56591796875,
0.4482421875,
0.7255859375,
-0.09716796875,
0.70068359375,
1.076171875,
-0.230712890625,
0.2015380859375,
0.276611328125,
0.69140625,
0.71240234375,
0.5869140625,
0.11651611328125,
0.56982421875,
-0.042327880859375,
0.1439208984375,
-0.396484375,
0.1353759765625,
-0.3203125,
0.363525390625,
0.170166015625,
0.344970703125,
-0.2425537109375,
-0.1326904296875,
0.251708984375,
0.60986328125,
-1.05859375,
-0.34716796875,
-0.287841796875,
0.155029296875,
0.396240234375,
0.2490234375,
0.5029296875,
0.47998046875,
0.955078125,
0.29296875,
-0.089111328125,
-0.4384765625,
-0.90869140625,
-0.94873046875,
-0.77099609375,
-0.443359375,
-0.64404296875,
-0.127685546875,
0.39306640625,
-1.09765625,
0.286376953125,
-0.55224609375,
-0.308349609375,
0.1268310546875,
-0.482421875,
0.611328125,
-0.365478515625,
0.50390625,
-0.67431640625,
0.245849609375,
0.09228515625,
1.03515625,
-0.515625,
-0.0450439453125,
-0.32568359375,
-0.4423828125,
0.11456298828125,
-0.06756591796875,
0.55810546875,
0.018035888671875,
-0.611328125,
-0.90576171875,
-0.44970703125,
-0.050537109375,
-0.50146484375,
0.1553955078125,
-0.3359375,
0.58251953125,
0.7294921875,
-0.48681640625,
0.79736328125,
0.95947265625,
-0.79736328125,
0.413330078125,
-0.03521728515625,
0.1278076171875,
-0.7900390625,
1.2275390625,
0.412353515625,
0.381103515625,
-0.82177734375,
-0.88818359375,
-0.3232421875,
0.255615234375,
0.25390625,
-0.6513671875,
-0.2047119140625,
0.42724609375,
-0.29541015625,
-0.9296875,
0.75390625,
-0.8955078125,
-0.335205078125,
-0.3837890625,
-0.264404296875,
0.75390625,
0.54638671875,
0.339111328125,
-0.53759765625,
-0.517578125,
-0.01361846923828125,
1.0234375,
0.6884765625,
-0.86181640625,
0.057373046875,
0.71728515625,
-0.10528564453125,
0.1356201171875,
0.053741455078125,
-0.28125,
-0.419677734375,
0.43408203125,
0.037750244140625,
0.78125,
0.04620361328125,
0.49951171875,
0.83251953125,
0.415771484375,
-1.0224609375,
0.3408203125,
-0.256103515625,
1.0478515625,
0.6005859375,
0.261474609375,
0.53173828125,
-0.53173828125,
-0.488525390625,
-0.8798828125,
0.472412109375,
0.43310546875,
0.5234375,
-0.59619140625,
0.59228515625,
0.452880859375,
-0.29443359375,
0.456787109375,
-0.95458984375,
0.34130859375,
0.95556640625,
-0.256591796875,
1.0400390625,
-0.59619140625,
0.3115234375,
0.01904296875,
0.29345703125,
0.546875,
0.6826171875,
0.23583984375,
-0.362548828125,
-0.25830078125,
-0.423583984375,
-0.40283203125,
0.2379150390625,
-0.417724609375,
0.34375,
-0.0836181640625,
-0.432373046875,
-0.77392578125,
0.072021484375,
1.2138671875,
0.83935546875,
0.038055419921875,
0.1920166015625,
0.17626953125,
0.186767578125,
0.86328125,
-0.303466796875,
0.1258544921875,
-0.70263671875,
1.0439453125,
0.269775390625,
-0.236083984375,
-0.1435546875,
-0.2205810546875,
-0.10693359375,
0.380859375,
0.1427001953125,
-0.06005859375,
-1.271484375,
0.219482421875,
0.1112060546875,
0.57080078125,
-0.65625,
-0.10162353515625,
-0.210205078125,
0.58740234375,
0.1829833984375,
-0.79052734375,
-0.0869140625,
-1.0625,
0.76416015625,
0.334228515625,
0.093505859375,
-0.495361328125,
-0.253173828125,
-0.78173828125,
-0.74072265625,
0.453369140625,
0.75537109375,
-0.26123046875,
0.12115478515625,
-1.1025390625,
0.81396484375,
0.27880859375,
-0.2841796875,
0.0885009765625,
-0.1519775390625,
0.54296875,
0.25341796875,
0.6337890625,
-0.7529296875,
-0.73681640625,
0.015716552734375,
-1.2646484375,
0.6875,
-0.521484375,
0.53955078125,
0.01416015625,
-0.267333984375,
-0.05145263671875,
0.284423828125,
-0.320068359375,
0.50537109375,
-0.4462890625,
0.0177001953125,
-0.6953125,
-0.83544921875,
0.56982421875,
-0.43505859375,
-0.45361328125,
0.80615234375,
-0.0965576171875,
-0.2440185546875,
0.177001953125,
0.331298828125,
-0.43994140625,
0.2347412109375,
-0.5361328125,
0.578125,
-0.34521484375,
-0.80517578125,
-0.234619140625,
-0.350341796875,
0.7080078125,
0.074951171875,
-0.4951171875,
-0.05975341796875,
-0.9482421875,
-0.1180419921875,
0.029022216796875,
-0.7060546875,
0.223876953125,
0.324462890625,
-0.2705078125,
-0.12115478515625,
-0.0621337890625,
-0.173583984375,
-0.450439453125,
-0.469482421875,
-0.44189453125,
0.28076171875,
0.362548828125,
0.84375,
0.126708984375,
-0.274169921875,
-0.1502685546875,
0.0214996337890625,
-0.2216796875,
-0.7451171875,
-0.2108154296875,
-0.259033203125,
-0.19287109375,
-0.55029296875,
0.422607421875,
0.01580810546875,
0.391845703125,
0.81982421875,
0.1522216796875,
0.400146484375,
0.371826171875,
-0.39501953125,
0.9775390625,
0.295166015625,
-1.171875,
-0.85107421875,
0.58154296875,
0.206787109375,
0.27392578125,
0.10064697265625,
-1.0595703125,
-0.54541015625,
-0.91748046875,
0.6298828125,
-0.6591796875,
0.011993408203125,
-1.2197265625,
-0.646484375,
-0.333251953125,
0.4248046875,
-0.055908203125,
-0.2117919921875,
0.3125,
-1.03125,
0.2412109375,
-0.68212890625,
-0.375,
-0.85205078125,
-1.041015625,
-0.2646484375,
0.79931640625,
0.57373046875,
0.474609375,
0.1920166015625,
-0.322021484375,
0.3984375,
-0.409912109375,
-0.71923828125,
-0.365966796875,
-0.37255859375,
-0.0215301513671875,
-0.310302734375,
-0.11328125,
-0.765625,
0.94091796875,
-0.685546875,
0.406494140625,
0.06939697265625,
-0.42822265625,
-0.09942626953125,
-0.50439453125,
1.0908203125,
-0.38623046875,
-0.075927734375,
-0.37744140625,
0.701171875,
0.43505859375,
-0.054931640625,
-0.282470703125,
-0.36376953125,
-0.51220703125,
-1.0537109375,
0.544921875,
-0.6162109375,
0.1988525390625,
-0.85546875,
-0.089111328125,
0.97412109375,
-0.448974609375,
0.314697265625,
1.0146484375,
-0.040130615234375,
0.38427734375,
-0.572265625,
0.83642578125,
0.342041015625,
-0.6650390625,
0.19580078125,
0.06427001953125,
-0.76416015625,
0.2213134765625,
-0.50732421875,
-0.9638671875,
-0.619140625,
0.446044921875,
1.39453125,
-0.12939453125,
0.88720703125,
-0.1806640625,
-1.181640625,
-0.783203125,
0.7939453125,
0.0004870891571044922,
0.52734375,
0.98388671875,
-0.54443359375,
-0.350830078125,
0.1116943359375,
-0.06298828125,
-0.51806640625,
-0.1568603515625,
1.1630859375,
-0.7783203125,
-0.73388671875,
0.654296875,
0.69677734375,
-0.984375,
-0.91650390625,
-0.1495361328125,
-0.1309814453125,
-0.333740234375,
-0.595703125,
0.36279296875,
0.7783203125,
-0.67626953125,
0.054168701171875,
0.11151123046875,
-0.1983642578125,
0.6904296875,
-0.0136871337890625,
0.2479248046875,
-0.572265625,
0.422607421875,
0.27783203125,
-0.5205078125,
-0.513671875,
-1.072265625,
-0.1964111328125,
-0.098876953125,
0.2401123046875,
0.77197265625,
-0.248291015625,
0.0225830078125,
0.488525390625,
-0.077392578125,
0.7099609375,
-0.419677734375,
-0.1893310546875,
0.26513671875,
-0.44140625,
-0.5439453125,
0.07171630859375,
0.287109375,
-0.0677490234375,
0.587890625,
-0.60986328125,
-0.33984375,
0.55712890625,
0.4658203125,
-0.55224609375,
-0.53515625,
-0.314208984375,
-1.23046875,
-0.60986328125,
-0.7958984375,
-0.7490234375,
-0.2017822265625,
0.476806640625,
0.25146484375,
-0.81298828125,
0.2288818359375,
0.53173828125,
-0.82470703125,
0.76806640625,
-0.317138671875,
0.37939453125,
-0.385498046875,
-0.255615234375,
-0.70263671875,
0.27587890625,
-0.6083984375,
-0.2493896484375,
-0.09576416015625,
0.73046875,
-0.367431640625,
0.37353515625,
-0.09649658203125,
0.2919921875,
-0.5322265625,
-0.681640625,
-0.2264404296875,
0.1055908203125,
-0.27685546875,
1.0791015625,
0.66455078125,
0.50048828125,
0.297119140625,
-0.045928955078125,
-0.2061767578125,
-0.5029296875,
0.63671875,
0.63037109375,
-0.2216796875,
-0.266357421875,
-0.1795654296875,
0.2000732421875,
-0.859375,
0.4853515625,
-0.461181640625,
-0.000522613525390625,
0.112548828125,
-0.398681640625,
0.4208984375,
1.3427734375,
-0.486572265625,
0.208984375,
-0.09307861328125,
-0.1331787109375,
0.35791015625,
0.1444091796875,
0.214599609375,
0.43896484375,
-0.1832275390625,
-0.1708984375,
-0.161376953125,
0.357666015625,
0.2384033203125,
0.1329345703125,
-0.2474365234375,
-0.72900390625,
-0.88720703125,
-0.50048828125,
0.10333251953125,
0.1903076171875,
0.25927734375,
-0.63916015625,
-0.1080322265625,
0.315185546875,
-0.7626953125,
-0.10205078125,
-1.2080078125,
-1.2392578125,
0.237060546875,
0.0762939453125,
-0.89111328125,
-0.235595703125,
-0.328369140625,
-0.2744140625,
-0.13623046875,
0.53759765625,
-0.484619140625,
0.440673828125,
0.05792236328125,
0.462646484375,
-0.03253173828125,
-0.2164306640625,
0.274658203125,
0.5625,
-0.650390625,
-0.75537109375,
0.1873779296875,
0.77587890625,
0.1646728515625,
-0.1875,
-0.57080078125,
0.5654296875,
0.2467041015625,
0.12744140625,
-0.1890869140625,
0.140625,
-0.1356201171875,
0.63330078125,
-1.1044921875,
-0.1019287109375,
-0.1878662109375,
0.2271728515625,
0.07470703125,
-0.2381591796875,
-0.47802734375,
0.92041015625,
0.5966796875,
-0.44873046875,
0.4521484375,
0.357177734375,
0.2225341796875,
-0.152099609375,
-0.10980224609375,
-0.1646728515625,
0.260498046875,
0.64013671875,
0.6923828125,
-0.314453125,
0.322509765625,
0.483154296875,
-0.058746337890625,
-0.50390625,
0.2027587890625,
0.2293701171875,
0.1689453125,
0.047271728515625,
-0.34521484375,
-0.461181640625,
-0.18310546875,
-0.78515625,
0.2017822265625,
-0.650390625,
-0.0225067138671875,
0.0406494140625,
-0.826171875,
0.98681640625,
-0.29541015625,
0.055206298828125,
0.1783447265625,
-0.7275390625,
0.225341796875,
0.56005859375,
-0.1285400390625,
-0.265625,
0.798828125,
0.861328125,
0.90966796875,
0.71875,
0.402099609375,
0.479736328125,
-0.630859375,
0.07061767578125,
0.2244873046875,
0.03729248046875,
-0.57958984375,
-0.48876953125,
-0.80419921875,
0.572265625,
-0.422119140625,
-0.2362060546875,
0.462158203125,
-0.72412109375,
-0.030303955078125,
0.1026611328125,
1.1044921875,
-0.48486328125,
0.482421875,
0.71142578125,
-0.430419921875,
-0.783203125,
1.0888671875,
-0.3583984375,
0.177978515625,
0.1614990234375,
0.75048828125,
0.1407470703125,
1.33984375,
0.75,
-0.556640625,
0.2705078125,
0.8359375,
-0.560546875,
-0.8232421875,
-0.9921875,
-0.25244140625,
-0.1363525390625,
-0.4736328125,
-0.14697265625,
-0.0286407470703125,
0.56884765625,
0.1295166015625,
-0.5244140625,
-0.004024505615234375,
0.280029296875,
-0.8017578125,
0.316162109375,
0.265625,
0.320068359375,
0.2249755859375,
-0.1639404296875,
0.150390625,
-0.7978515625,
0.021942138671875,
-0.5537109375,
0.4033203125,
-1.087890625,
-0.25,
-0.93017578125,
-0.7958984375,
0.035736083984375,
-0.5419921875,
-0.421142578125,
-0.95458984375,
0.342041015625,
0.55224609375,
0.45703125,
0.3505859375,
-0.07733154296875,
0.4921875,
0.96923828125,
0.61865234375,
0.0189666748046875,
0.6708984375,
0.426025390625,
0.0198516845703125,
0.02294921875,
-0.1378173828125,
0.50341796875,
-0.171142578125,
0.349365234375,
-0.2459716796875,
0.212158203125,
-1.0078125,
-1.33984375,
0.21337890625,
0.43701171875,
0.2861328125,
-0.384521484375,
-0.66943359375,
-0.2449951171875,
-0.91552734375,
-0.01428985595703125,
-0.8955078125,
0.63818359375,
-0.455078125,
0.034454345703125,
-0.1837158203125,
-1.021484375,
4.32421875,
1.14453125,
1.21875,
0.1807861328125,
0.1875,
1.046875,
0.0024662017822265625,
-0.44140625,
-0.55615234375,
-0.27099609375,
0.8115234375,
-0.482666015625,
0.253662109375,
0.802734375,
0.476806640625,
0.474853515625,
-0.1419677734375,
0.0828857421875,
0.05718994140625,
-0.923828125,
-0.931640625,
0.21875,
-0.1485595703125,
0.60107421875,
-0.1082763671875,
0.4443359375,
0.482666015625,
-0.669921875,
-0.311279296875,
-0.81689453125,
0.272705078125,
-0.442626953125,
0.578125,
-0.140625,
0.06939697265625,
0.72998046875,
0.320556640625,
-0.3310546875,
-0.08172607421875,
0.12493896484375,
-0.06536865234375,
-0.0909423828125,
0.30810546875,
-0.85546875,
-0.01470184326171875,
0.2083740234375,
-0.775390625,
0.52783203125,
0.12384033203125,
-1.2060546875,
0.8232421875,
-0.340576171875,
0.404541015625,
-0.57421875,
-0.67529296875,
0.2122802734375,
0.1474609375,
-0.17822265625,
0.012847900390625,
0.53759765625,
0.2364501953125,
0.386474609375,
0.0654296875,
0.379150390625,
-1.115234375,
0.65380859375,
0.0826416015625,
0.396240234375,
-0.75439453125,
0.09979248046875,
-0.00756072998046875,
-0.65087890625,
-0.375,
-0.36083984375,
0.62451171875,
0.3671875,
-0.095947265625,
0.464599609375,
-0.00852203369140625,
-0.37158203125,
0.133544921875,
-0.244384765625,
-0.09539794921875,
-0.6455078125,
0.60400390625,
1.353515625,
-0.63427734375,
-0.34375,
-0.1685791015625,
0.41015625,
0.53173828125,
0.446533203125,
0.32958984375,
-0.74072265625,
-0.08734130859375
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
You are given a string s consisting of lowercase Latin letters. Let the length of s be |s|. You may perform several operations on this string.
In one operation, you can choose some index i and remove the i-th character of s (s_i) if at least one of its adjacent characters is the previous letter in the Latin alphabet for s_i. For example, the previous letter for b is a, the previous letter for s is r, the letter a has no previous letters. Note that after each removal the length of the string decreases by one. So, the index i should satisfy the condition 1 ≤ i ≤ |s| during each operation.
For the character s_i adjacent characters are s_{i-1} and s_{i+1}. The first and the last characters of s both have only one adjacent character (unless |s| = 1).
Consider the following example. Let s= bacabcab.
1. During the first move, you can remove the first character s_1= b because s_2= a. Then the string becomes s= acabcab.
2. During the second move, you can remove the fifth character s_5= c because s_4= b. Then the string becomes s= acabab.
3. During the third move, you can remove the sixth character s_6='b' because s_5= a. Then the string becomes s= acaba.
4. During the fourth move, the only character you can remove is s_4= b, because s_3= a (or s_5= a). The string becomes s= acaa and you cannot do anything with it.
Your task is to find the maximum possible number of characters you can remove if you choose the sequence of operations optimally.
Input
The first line of the input contains one integer |s| (1 ≤ |s| ≤ 100) — the length of s.
The second line of the input contains one string s consisting of |s| lowercase Latin letters.
Output
Print one integer — the maximum possible number of characters you can remove if you choose the sequence of moves optimally.
Examples
Input
8
bacabcab
Output
4
Input
4
bcda
Output
3
Input
6
abbbbb
Output
5
Note
The first example is described in the problem statement. Note that the sequence of moves provided in the statement is not the only, but it can be shown that the maximum possible answer to this test is 4.
In the second example, you can remove all but one character of s. The only possible answer follows.
1. During the first move, remove the third character s_3= d, s becomes bca.
2. During the second move, remove the second character s_2= c, s becomes ba.
3. And during the third move, remove the first character s_1= b, s becomes a.
Tags: brute force, constructive algorithms, greedy, strings
Correct Solution:
```
import sys
#input = sys.stdin.readline
#for _ in range(int(input())):
n=int(input())
s=input()
temp=[]
for i in range(n):
temp.append(s[i])
s=temp
v=set()
for i in s:
v.add(i)
ans=0
for i in range(25,-1,-1):
curr=chr(i+ord('a'))
temp=set()
if curr in v:
l=len(s)
for k in range(l):
if s[k]==curr:
if k-1>=0:
if ord(s[k-1])+1==ord(curr):
ans+=1
#s=s[:k]+s[k+1:]
temp.add(k)
s[k]=s[k-1]
#print(i,k,s)
for k in range(l-1,-1,-1):
if s[k]==curr:
if k+1<l:
if ord(s[k+1])+1==ord(curr):
ans+=1
temp.add(k)
#s=s[:k]+s[k+1:]
s[k]=s[k+1]
#print(i,k,s)
q=[]
for k in range(l):
if k not in temp:
q.append(s[k])
s=q
print(ans)
```
| 10,078 | [
0.1654052734375,
0.1585693359375,
0.1649169921875,
0.47802734375,
-0.45556640625,
-0.07977294921875,
-0.31298828125,
0.010345458984375,
0.1448974609375,
0.87548828125,
0.81201171875,
-0.017852783203125,
-0.65380859375,
-1.1171875,
-0.50634765625,
0.039947509765625,
-0.705078125,
-0.65380859375,
-0.445068359375,
-0.04345703125,
0.1533203125,
-0.0091400146484375,
-1.2978515625,
-0.1492919921875,
-0.0633544921875,
0.8876953125,
0.697265625,
-0.285400390625,
1.111328125,
1.3310546875,
-0.11114501953125,
-0.78515625,
0.9130859375,
-1.005859375,
-0.438232421875,
-0.337646484375,
0.79150390625,
-0.47900390625,
0.024505615234375,
-0.505859375,
0.34423828125,
-0.5859375,
0.564453125,
-0.67919921875,
-1.0908203125,
-0.032073974609375,
-0.332275390625,
-0.1868896484375,
-0.56103515625,
-0.470703125,
-0.1077880859375,
-0.283203125,
0.65478515625,
-0.05987548828125,
-0.005489349365234375,
0.1934814453125,
0.216552734375,
-0.2763671875,
-0.363525390625,
0.456298828125,
0.1920166015625,
0.1077880859375,
0.07843017578125,
-0.49609375,
-0.02777099609375,
0.343017578125,
-0.0567626953125,
0.1141357421875,
0.234375,
-0.7626953125,
-0.218994140625,
0.255859375,
-0.407470703125,
-0.701171875,
-0.19189453125,
0.05535888671875,
0.36279296875,
-0.361328125,
-0.65869140625,
0.708984375,
-0.11376953125,
0.92041015625,
0.414794921875,
0.1427001953125,
-0.61865234375,
-0.478271484375,
-0.07122802734375,
0.197265625,
-0.1802978515625,
-0.284423828125,
-0.3193359375,
0.9130859375,
-0.69140625,
-0.048553466796875,
0.3251953125,
0.94140625,
-0.49658203125,
0.3525390625,
0.576171875,
-0.105712890625,
0.65087890625,
0.7451171875,
-0.4150390625,
0.912109375,
-0.458740234375,
0.046905517578125,
0.2139892578125,
-0.219482421875,
-0.05255126953125,
-0.313232421875,
-0.390380859375,
-0.0762939453125,
0.311767578125,
0.2724609375,
-0.58251953125,
0.9404296875,
-0.051300048828125,
0.54443359375,
-0.90087890625,
0.41845703125,
0.475341796875,
0.26513671875,
0.80517578125,
-0.193603515625,
-0.249267578125,
-0.44189453125,
-0.65869140625,
0.80859375,
-0.7841796875,
0.1673583984375,
0.126220703125,
-0.0009303092956542969,
-0.62744140625,
0.359375,
-0.232421875,
1.091796875,
-0.368408203125,
0.396484375,
0.70703125,
-0.48095703125,
0.76611328125,
-0.01023101806640625,
-0.239013671875,
1.41015625,
0.4619140625,
0.0958251953125,
0.7939453125,
0.420166015625,
-0.5625,
0.5078125,
-1.1298828125,
0.67578125,
0.2255859375,
0.2958984375,
-0.43701171875,
0.287353515625,
-0.277099609375,
0.640625,
0.09857177734375,
0.292724609375,
-0.63720703125,
0.038665771484375,
-0.358154296875,
0.5087890625,
-0.1038818359375,
0.85595703125,
-0.42919921875,
-0.384521484375,
-0.0005307197570800781,
-0.36328125,
0.13525390625,
-0.405029296875,
-0.173828125,
0.56494140625,
0.47412109375,
0.98779296875,
0.857421875,
-0.2998046875,
0.5400390625,
0.51513671875,
-0.499755859375,
0.3427734375,
0.3291015625,
0.3916015625,
0.53662109375,
0.1361083984375,
-0.11834716796875,
-0.1458740234375,
-0.6298828125,
-0.421142578125,
-0.0007243156433105469,
0.6298828125,
-0.268310546875,
0.1435546875,
0.25341796875,
-0.2093505859375,
-0.97607421875,
0.062347412109375,
0.0462646484375,
-1.166015625,
-0.383544921875,
0.408447265625,
0.053070068359375,
0.53955078125,
-0.736328125,
-0.61083984375,
0.36328125,
1.15625,
-0.5703125,
0.3115234375,
0.853515625,
-0.016815185546875,
-0.09539794921875,
0.256103515625,
0.026458740234375,
-0.2064208984375,
-0.55712890625,
0.59716796875,
-0.29248046875,
0.31787109375,
0.10968017578125,
0.58837890625,
-0.09912109375,
0.873046875,
-0.15185546875,
-0.321044921875,
0.302978515625,
1.20703125,
0.10247802734375,
0.356689453125,
0.39453125,
0.783203125,
0.56591796875,
0.4482421875,
0.7255859375,
-0.09716796875,
0.70068359375,
1.076171875,
-0.230712890625,
0.2015380859375,
0.276611328125,
0.69140625,
0.71240234375,
0.5869140625,
0.11651611328125,
0.56982421875,
-0.042327880859375,
0.1439208984375,
-0.396484375,
0.1353759765625,
-0.3203125,
0.363525390625,
0.170166015625,
0.344970703125,
-0.2425537109375,
-0.1326904296875,
0.251708984375,
0.60986328125,
-1.05859375,
-0.34716796875,
-0.287841796875,
0.155029296875,
0.396240234375,
0.2490234375,
0.5029296875,
0.47998046875,
0.955078125,
0.29296875,
-0.089111328125,
-0.4384765625,
-0.90869140625,
-0.94873046875,
-0.77099609375,
-0.443359375,
-0.64404296875,
-0.127685546875,
0.39306640625,
-1.09765625,
0.286376953125,
-0.55224609375,
-0.308349609375,
0.1268310546875,
-0.482421875,
0.611328125,
-0.365478515625,
0.50390625,
-0.67431640625,
0.245849609375,
0.09228515625,
1.03515625,
-0.515625,
-0.0450439453125,
-0.32568359375,
-0.4423828125,
0.11456298828125,
-0.06756591796875,
0.55810546875,
0.018035888671875,
-0.611328125,
-0.90576171875,
-0.44970703125,
-0.050537109375,
-0.50146484375,
0.1553955078125,
-0.3359375,
0.58251953125,
0.7294921875,
-0.48681640625,
0.79736328125,
0.95947265625,
-0.79736328125,
0.413330078125,
-0.03521728515625,
0.1278076171875,
-0.7900390625,
1.2275390625,
0.412353515625,
0.381103515625,
-0.82177734375,
-0.88818359375,
-0.3232421875,
0.255615234375,
0.25390625,
-0.6513671875,
-0.2047119140625,
0.42724609375,
-0.29541015625,
-0.9296875,
0.75390625,
-0.8955078125,
-0.335205078125,
-0.3837890625,
-0.264404296875,
0.75390625,
0.54638671875,
0.339111328125,
-0.53759765625,
-0.517578125,
-0.01361846923828125,
1.0234375,
0.6884765625,
-0.86181640625,
0.057373046875,
0.71728515625,
-0.10528564453125,
0.1356201171875,
0.053741455078125,
-0.28125,
-0.419677734375,
0.43408203125,
0.037750244140625,
0.78125,
0.04620361328125,
0.49951171875,
0.83251953125,
0.415771484375,
-1.0224609375,
0.3408203125,
-0.256103515625,
1.0478515625,
0.6005859375,
0.261474609375,
0.53173828125,
-0.53173828125,
-0.488525390625,
-0.8798828125,
0.472412109375,
0.43310546875,
0.5234375,
-0.59619140625,
0.59228515625,
0.452880859375,
-0.29443359375,
0.456787109375,
-0.95458984375,
0.34130859375,
0.95556640625,
-0.256591796875,
1.0400390625,
-0.59619140625,
0.3115234375,
0.01904296875,
0.29345703125,
0.546875,
0.6826171875,
0.23583984375,
-0.362548828125,
-0.25830078125,
-0.423583984375,
-0.40283203125,
0.2379150390625,
-0.417724609375,
0.34375,
-0.0836181640625,
-0.432373046875,
-0.77392578125,
0.072021484375,
1.2138671875,
0.83935546875,
0.038055419921875,
0.1920166015625,
0.17626953125,
0.186767578125,
0.86328125,
-0.303466796875,
0.1258544921875,
-0.70263671875,
1.0439453125,
0.269775390625,
-0.236083984375,
-0.1435546875,
-0.2205810546875,
-0.10693359375,
0.380859375,
0.1427001953125,
-0.06005859375,
-1.271484375,
0.219482421875,
0.1112060546875,
0.57080078125,
-0.65625,
-0.10162353515625,
-0.210205078125,
0.58740234375,
0.1829833984375,
-0.79052734375,
-0.0869140625,
-1.0625,
0.76416015625,
0.334228515625,
0.093505859375,
-0.495361328125,
-0.253173828125,
-0.78173828125,
-0.74072265625,
0.453369140625,
0.75537109375,
-0.26123046875,
0.12115478515625,
-1.1025390625,
0.81396484375,
0.27880859375,
-0.2841796875,
0.0885009765625,
-0.1519775390625,
0.54296875,
0.25341796875,
0.6337890625,
-0.7529296875,
-0.73681640625,
0.015716552734375,
-1.2646484375,
0.6875,
-0.521484375,
0.53955078125,
0.01416015625,
-0.267333984375,
-0.05145263671875,
0.284423828125,
-0.320068359375,
0.50537109375,
-0.4462890625,
0.0177001953125,
-0.6953125,
-0.83544921875,
0.56982421875,
-0.43505859375,
-0.45361328125,
0.80615234375,
-0.0965576171875,
-0.2440185546875,
0.177001953125,
0.331298828125,
-0.43994140625,
0.2347412109375,
-0.5361328125,
0.578125,
-0.34521484375,
-0.80517578125,
-0.234619140625,
-0.350341796875,
0.7080078125,
0.074951171875,
-0.4951171875,
-0.05975341796875,
-0.9482421875,
-0.1180419921875,
0.029022216796875,
-0.7060546875,
0.223876953125,
0.324462890625,
-0.2705078125,
-0.12115478515625,
-0.0621337890625,
-0.173583984375,
-0.450439453125,
-0.469482421875,
-0.44189453125,
0.28076171875,
0.362548828125,
0.84375,
0.126708984375,
-0.274169921875,
-0.1502685546875,
0.0214996337890625,
-0.2216796875,
-0.7451171875,
-0.2108154296875,
-0.259033203125,
-0.19287109375,
-0.55029296875,
0.422607421875,
0.01580810546875,
0.391845703125,
0.81982421875,
0.1522216796875,
0.400146484375,
0.371826171875,
-0.39501953125,
0.9775390625,
0.295166015625,
-1.171875,
-0.85107421875,
0.58154296875,
0.206787109375,
0.27392578125,
0.10064697265625,
-1.0595703125,
-0.54541015625,
-0.91748046875,
0.6298828125,
-0.6591796875,
0.011993408203125,
-1.2197265625,
-0.646484375,
-0.333251953125,
0.4248046875,
-0.055908203125,
-0.2117919921875,
0.3125,
-1.03125,
0.2412109375,
-0.68212890625,
-0.375,
-0.85205078125,
-1.041015625,
-0.2646484375,
0.79931640625,
0.57373046875,
0.474609375,
0.1920166015625,
-0.322021484375,
0.3984375,
-0.409912109375,
-0.71923828125,
-0.365966796875,
-0.37255859375,
-0.0215301513671875,
-0.310302734375,
-0.11328125,
-0.765625,
0.94091796875,
-0.685546875,
0.406494140625,
0.06939697265625,
-0.42822265625,
-0.09942626953125,
-0.50439453125,
1.0908203125,
-0.38623046875,
-0.075927734375,
-0.37744140625,
0.701171875,
0.43505859375,
-0.054931640625,
-0.282470703125,
-0.36376953125,
-0.51220703125,
-1.0537109375,
0.544921875,
-0.6162109375,
0.1988525390625,
-0.85546875,
-0.089111328125,
0.97412109375,
-0.448974609375,
0.314697265625,
1.0146484375,
-0.040130615234375,
0.38427734375,
-0.572265625,
0.83642578125,
0.342041015625,
-0.6650390625,
0.19580078125,
0.06427001953125,
-0.76416015625,
0.2213134765625,
-0.50732421875,
-0.9638671875,
-0.619140625,
0.446044921875,
1.39453125,
-0.12939453125,
0.88720703125,
-0.1806640625,
-1.181640625,
-0.783203125,
0.7939453125,
0.0004870891571044922,
0.52734375,
0.98388671875,
-0.54443359375,
-0.350830078125,
0.1116943359375,
-0.06298828125,
-0.51806640625,
-0.1568603515625,
1.1630859375,
-0.7783203125,
-0.73388671875,
0.654296875,
0.69677734375,
-0.984375,
-0.91650390625,
-0.1495361328125,
-0.1309814453125,
-0.333740234375,
-0.595703125,
0.36279296875,
0.7783203125,
-0.67626953125,
0.054168701171875,
0.11151123046875,
-0.1983642578125,
0.6904296875,
-0.0136871337890625,
0.2479248046875,
-0.572265625,
0.422607421875,
0.27783203125,
-0.5205078125,
-0.513671875,
-1.072265625,
-0.1964111328125,
-0.098876953125,
0.2401123046875,
0.77197265625,
-0.248291015625,
0.0225830078125,
0.488525390625,
-0.077392578125,
0.7099609375,
-0.419677734375,
-0.1893310546875,
0.26513671875,
-0.44140625,
-0.5439453125,
0.07171630859375,
0.287109375,
-0.0677490234375,
0.587890625,
-0.60986328125,
-0.33984375,
0.55712890625,
0.4658203125,
-0.55224609375,
-0.53515625,
-0.314208984375,
-1.23046875,
-0.60986328125,
-0.7958984375,
-0.7490234375,
-0.2017822265625,
0.476806640625,
0.25146484375,
-0.81298828125,
0.2288818359375,
0.53173828125,
-0.82470703125,
0.76806640625,
-0.317138671875,
0.37939453125,
-0.385498046875,
-0.255615234375,
-0.70263671875,
0.27587890625,
-0.6083984375,
-0.2493896484375,
-0.09576416015625,
0.73046875,
-0.367431640625,
0.37353515625,
-0.09649658203125,
0.2919921875,
-0.5322265625,
-0.681640625,
-0.2264404296875,
0.1055908203125,
-0.27685546875,
1.0791015625,
0.66455078125,
0.50048828125,
0.297119140625,
-0.045928955078125,
-0.2061767578125,
-0.5029296875,
0.63671875,
0.63037109375,
-0.2216796875,
-0.266357421875,
-0.1795654296875,
0.2000732421875,
-0.859375,
0.4853515625,
-0.461181640625,
-0.000522613525390625,
0.112548828125,
-0.398681640625,
0.4208984375,
1.3427734375,
-0.486572265625,
0.208984375,
-0.09307861328125,
-0.1331787109375,
0.35791015625,
0.1444091796875,
0.214599609375,
0.43896484375,
-0.1832275390625,
-0.1708984375,
-0.161376953125,
0.357666015625,
0.2384033203125,
0.1329345703125,
-0.2474365234375,
-0.72900390625,
-0.88720703125,
-0.50048828125,
0.10333251953125,
0.1903076171875,
0.25927734375,
-0.63916015625,
-0.1080322265625,
0.315185546875,
-0.7626953125,
-0.10205078125,
-1.2080078125,
-1.2392578125,
0.237060546875,
0.0762939453125,
-0.89111328125,
-0.235595703125,
-0.328369140625,
-0.2744140625,
-0.13623046875,
0.53759765625,
-0.484619140625,
0.440673828125,
0.05792236328125,
0.462646484375,
-0.03253173828125,
-0.2164306640625,
0.274658203125,
0.5625,
-0.650390625,
-0.75537109375,
0.1873779296875,
0.77587890625,
0.1646728515625,
-0.1875,
-0.57080078125,
0.5654296875,
0.2467041015625,
0.12744140625,
-0.1890869140625,
0.140625,
-0.1356201171875,
0.63330078125,
-1.1044921875,
-0.1019287109375,
-0.1878662109375,
0.2271728515625,
0.07470703125,
-0.2381591796875,
-0.47802734375,
0.92041015625,
0.5966796875,
-0.44873046875,
0.4521484375,
0.357177734375,
0.2225341796875,
-0.152099609375,
-0.10980224609375,
-0.1646728515625,
0.260498046875,
0.64013671875,
0.6923828125,
-0.314453125,
0.322509765625,
0.483154296875,
-0.058746337890625,
-0.50390625,
0.2027587890625,
0.2293701171875,
0.1689453125,
0.047271728515625,
-0.34521484375,
-0.461181640625,
-0.18310546875,
-0.78515625,
0.2017822265625,
-0.650390625,
-0.0225067138671875,
0.0406494140625,
-0.826171875,
0.98681640625,
-0.29541015625,
0.055206298828125,
0.1783447265625,
-0.7275390625,
0.225341796875,
0.56005859375,
-0.1285400390625,
-0.265625,
0.798828125,
0.861328125,
0.90966796875,
0.71875,
0.402099609375,
0.479736328125,
-0.630859375,
0.07061767578125,
0.2244873046875,
0.03729248046875,
-0.57958984375,
-0.48876953125,
-0.80419921875,
0.572265625,
-0.422119140625,
-0.2362060546875,
0.462158203125,
-0.72412109375,
-0.030303955078125,
0.1026611328125,
1.1044921875,
-0.48486328125,
0.482421875,
0.71142578125,
-0.430419921875,
-0.783203125,
1.0888671875,
-0.3583984375,
0.177978515625,
0.1614990234375,
0.75048828125,
0.1407470703125,
1.33984375,
0.75,
-0.556640625,
0.2705078125,
0.8359375,
-0.560546875,
-0.8232421875,
-0.9921875,
-0.25244140625,
-0.1363525390625,
-0.4736328125,
-0.14697265625,
-0.0286407470703125,
0.56884765625,
0.1295166015625,
-0.5244140625,
-0.004024505615234375,
0.280029296875,
-0.8017578125,
0.316162109375,
0.265625,
0.320068359375,
0.2249755859375,
-0.1639404296875,
0.150390625,
-0.7978515625,
0.021942138671875,
-0.5537109375,
0.4033203125,
-1.087890625,
-0.25,
-0.93017578125,
-0.7958984375,
0.035736083984375,
-0.5419921875,
-0.421142578125,
-0.95458984375,
0.342041015625,
0.55224609375,
0.45703125,
0.3505859375,
-0.07733154296875,
0.4921875,
0.96923828125,
0.61865234375,
0.0189666748046875,
0.6708984375,
0.426025390625,
0.0198516845703125,
0.02294921875,
-0.1378173828125,
0.50341796875,
-0.171142578125,
0.349365234375,
-0.2459716796875,
0.212158203125,
-1.0078125,
-1.33984375,
0.21337890625,
0.43701171875,
0.2861328125,
-0.384521484375,
-0.66943359375,
-0.2449951171875,
-0.91552734375,
-0.01428985595703125,
-0.8955078125,
0.63818359375,
-0.455078125,
0.034454345703125,
-0.1837158203125,
-1.021484375,
4.32421875,
1.14453125,
1.21875,
0.1807861328125,
0.1875,
1.046875,
0.0024662017822265625,
-0.44140625,
-0.55615234375,
-0.27099609375,
0.8115234375,
-0.482666015625,
0.253662109375,
0.802734375,
0.476806640625,
0.474853515625,
-0.1419677734375,
0.0828857421875,
0.05718994140625,
-0.923828125,
-0.931640625,
0.21875,
-0.1485595703125,
0.60107421875,
-0.1082763671875,
0.4443359375,
0.482666015625,
-0.669921875,
-0.311279296875,
-0.81689453125,
0.272705078125,
-0.442626953125,
0.578125,
-0.140625,
0.06939697265625,
0.72998046875,
0.320556640625,
-0.3310546875,
-0.08172607421875,
0.12493896484375,
-0.06536865234375,
-0.0909423828125,
0.30810546875,
-0.85546875,
-0.01470184326171875,
0.2083740234375,
-0.775390625,
0.52783203125,
0.12384033203125,
-1.2060546875,
0.8232421875,
-0.340576171875,
0.404541015625,
-0.57421875,
-0.67529296875,
0.2122802734375,
0.1474609375,
-0.17822265625,
0.012847900390625,
0.53759765625,
0.2364501953125,
0.386474609375,
0.0654296875,
0.379150390625,
-1.115234375,
0.65380859375,
0.0826416015625,
0.396240234375,
-0.75439453125,
0.09979248046875,
-0.00756072998046875,
-0.65087890625,
-0.375,
-0.36083984375,
0.62451171875,
0.3671875,
-0.095947265625,
0.464599609375,
-0.00852203369140625,
-0.37158203125,
0.133544921875,
-0.244384765625,
-0.09539794921875,
-0.6455078125,
0.60400390625,
1.353515625,
-0.63427734375,
-0.34375,
-0.1685791015625,
0.41015625,
0.53173828125,
0.446533203125,
0.32958984375,
-0.74072265625,
-0.08734130859375
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
You are given a string s consisting of lowercase Latin letters. Let the length of s be |s|. You may perform several operations on this string.
In one operation, you can choose some index i and remove the i-th character of s (s_i) if at least one of its adjacent characters is the previous letter in the Latin alphabet for s_i. For example, the previous letter for b is a, the previous letter for s is r, the letter a has no previous letters. Note that after each removal the length of the string decreases by one. So, the index i should satisfy the condition 1 ≤ i ≤ |s| during each operation.
For the character s_i adjacent characters are s_{i-1} and s_{i+1}. The first and the last characters of s both have only one adjacent character (unless |s| = 1).
Consider the following example. Let s= bacabcab.
1. During the first move, you can remove the first character s_1= b because s_2= a. Then the string becomes s= acabcab.
2. During the second move, you can remove the fifth character s_5= c because s_4= b. Then the string becomes s= acabab.
3. During the third move, you can remove the sixth character s_6='b' because s_5= a. Then the string becomes s= acaba.
4. During the fourth move, the only character you can remove is s_4= b, because s_3= a (or s_5= a). The string becomes s= acaa and you cannot do anything with it.
Your task is to find the maximum possible number of characters you can remove if you choose the sequence of operations optimally.
Input
The first line of the input contains one integer |s| (1 ≤ |s| ≤ 100) — the length of s.
The second line of the input contains one string s consisting of |s| lowercase Latin letters.
Output
Print one integer — the maximum possible number of characters you can remove if you choose the sequence of moves optimally.
Examples
Input
8
bacabcab
Output
4
Input
4
bcda
Output
3
Input
6
abbbbb
Output
5
Note
The first example is described in the problem statement. Note that the sequence of moves provided in the statement is not the only, but it can be shown that the maximum possible answer to this test is 4.
In the second example, you can remove all but one character of s. The only possible answer follows.
1. During the first move, remove the third character s_3= d, s becomes bca.
2. During the second move, remove the second character s_2= c, s becomes ba.
3. And during the third move, remove the first character s_1= b, s becomes a.
Tags: brute force, constructive algorithms, greedy, strings
Correct Solution:
```
n = int(input())
s = input()
res = 0
for _ in range(n):
max_char, max_index = 'A', -1
for i in range(len(s)):
is_ok = False
if i > 0 and (ord(s[i]) == ord(s[i-1])+1):
is_ok = True
if i < len(s)-1 and ord(s[i]) == ord(s[i+1])+1:
is_ok = True
if is_ok and s[i] >= max_char:
max_index = i
max_char = s[i]
if max_index > -1:
s = s[: max_index] + s[max_index+1:]
res += 1
else:
break
print(res)
```
| 10,079 | [
0.1654052734375,
0.1585693359375,
0.1649169921875,
0.47802734375,
-0.45556640625,
-0.07977294921875,
-0.31298828125,
0.010345458984375,
0.1448974609375,
0.87548828125,
0.81201171875,
-0.017852783203125,
-0.65380859375,
-1.1171875,
-0.50634765625,
0.039947509765625,
-0.705078125,
-0.65380859375,
-0.445068359375,
-0.04345703125,
0.1533203125,
-0.0091400146484375,
-1.2978515625,
-0.1492919921875,
-0.0633544921875,
0.8876953125,
0.697265625,
-0.285400390625,
1.111328125,
1.3310546875,
-0.11114501953125,
-0.78515625,
0.9130859375,
-1.005859375,
-0.438232421875,
-0.337646484375,
0.79150390625,
-0.47900390625,
0.024505615234375,
-0.505859375,
0.34423828125,
-0.5859375,
0.564453125,
-0.67919921875,
-1.0908203125,
-0.032073974609375,
-0.332275390625,
-0.1868896484375,
-0.56103515625,
-0.470703125,
-0.1077880859375,
-0.283203125,
0.65478515625,
-0.05987548828125,
-0.005489349365234375,
0.1934814453125,
0.216552734375,
-0.2763671875,
-0.363525390625,
0.456298828125,
0.1920166015625,
0.1077880859375,
0.07843017578125,
-0.49609375,
-0.02777099609375,
0.343017578125,
-0.0567626953125,
0.1141357421875,
0.234375,
-0.7626953125,
-0.218994140625,
0.255859375,
-0.407470703125,
-0.701171875,
-0.19189453125,
0.05535888671875,
0.36279296875,
-0.361328125,
-0.65869140625,
0.708984375,
-0.11376953125,
0.92041015625,
0.414794921875,
0.1427001953125,
-0.61865234375,
-0.478271484375,
-0.07122802734375,
0.197265625,
-0.1802978515625,
-0.284423828125,
-0.3193359375,
0.9130859375,
-0.69140625,
-0.048553466796875,
0.3251953125,
0.94140625,
-0.49658203125,
0.3525390625,
0.576171875,
-0.105712890625,
0.65087890625,
0.7451171875,
-0.4150390625,
0.912109375,
-0.458740234375,
0.046905517578125,
0.2139892578125,
-0.219482421875,
-0.05255126953125,
-0.313232421875,
-0.390380859375,
-0.0762939453125,
0.311767578125,
0.2724609375,
-0.58251953125,
0.9404296875,
-0.051300048828125,
0.54443359375,
-0.90087890625,
0.41845703125,
0.475341796875,
0.26513671875,
0.80517578125,
-0.193603515625,
-0.249267578125,
-0.44189453125,
-0.65869140625,
0.80859375,
-0.7841796875,
0.1673583984375,
0.126220703125,
-0.0009303092956542969,
-0.62744140625,
0.359375,
-0.232421875,
1.091796875,
-0.368408203125,
0.396484375,
0.70703125,
-0.48095703125,
0.76611328125,
-0.01023101806640625,
-0.239013671875,
1.41015625,
0.4619140625,
0.0958251953125,
0.7939453125,
0.420166015625,
-0.5625,
0.5078125,
-1.1298828125,
0.67578125,
0.2255859375,
0.2958984375,
-0.43701171875,
0.287353515625,
-0.277099609375,
0.640625,
0.09857177734375,
0.292724609375,
-0.63720703125,
0.038665771484375,
-0.358154296875,
0.5087890625,
-0.1038818359375,
0.85595703125,
-0.42919921875,
-0.384521484375,
-0.0005307197570800781,
-0.36328125,
0.13525390625,
-0.405029296875,
-0.173828125,
0.56494140625,
0.47412109375,
0.98779296875,
0.857421875,
-0.2998046875,
0.5400390625,
0.51513671875,
-0.499755859375,
0.3427734375,
0.3291015625,
0.3916015625,
0.53662109375,
0.1361083984375,
-0.11834716796875,
-0.1458740234375,
-0.6298828125,
-0.421142578125,
-0.0007243156433105469,
0.6298828125,
-0.268310546875,
0.1435546875,
0.25341796875,
-0.2093505859375,
-0.97607421875,
0.062347412109375,
0.0462646484375,
-1.166015625,
-0.383544921875,
0.408447265625,
0.053070068359375,
0.53955078125,
-0.736328125,
-0.61083984375,
0.36328125,
1.15625,
-0.5703125,
0.3115234375,
0.853515625,
-0.016815185546875,
-0.09539794921875,
0.256103515625,
0.026458740234375,
-0.2064208984375,
-0.55712890625,
0.59716796875,
-0.29248046875,
0.31787109375,
0.10968017578125,
0.58837890625,
-0.09912109375,
0.873046875,
-0.15185546875,
-0.321044921875,
0.302978515625,
1.20703125,
0.10247802734375,
0.356689453125,
0.39453125,
0.783203125,
0.56591796875,
0.4482421875,
0.7255859375,
-0.09716796875,
0.70068359375,
1.076171875,
-0.230712890625,
0.2015380859375,
0.276611328125,
0.69140625,
0.71240234375,
0.5869140625,
0.11651611328125,
0.56982421875,
-0.042327880859375,
0.1439208984375,
-0.396484375,
0.1353759765625,
-0.3203125,
0.363525390625,
0.170166015625,
0.344970703125,
-0.2425537109375,
-0.1326904296875,
0.251708984375,
0.60986328125,
-1.05859375,
-0.34716796875,
-0.287841796875,
0.155029296875,
0.396240234375,
0.2490234375,
0.5029296875,
0.47998046875,
0.955078125,
0.29296875,
-0.089111328125,
-0.4384765625,
-0.90869140625,
-0.94873046875,
-0.77099609375,
-0.443359375,
-0.64404296875,
-0.127685546875,
0.39306640625,
-1.09765625,
0.286376953125,
-0.55224609375,
-0.308349609375,
0.1268310546875,
-0.482421875,
0.611328125,
-0.365478515625,
0.50390625,
-0.67431640625,
0.245849609375,
0.09228515625,
1.03515625,
-0.515625,
-0.0450439453125,
-0.32568359375,
-0.4423828125,
0.11456298828125,
-0.06756591796875,
0.55810546875,
0.018035888671875,
-0.611328125,
-0.90576171875,
-0.44970703125,
-0.050537109375,
-0.50146484375,
0.1553955078125,
-0.3359375,
0.58251953125,
0.7294921875,
-0.48681640625,
0.79736328125,
0.95947265625,
-0.79736328125,
0.413330078125,
-0.03521728515625,
0.1278076171875,
-0.7900390625,
1.2275390625,
0.412353515625,
0.381103515625,
-0.82177734375,
-0.88818359375,
-0.3232421875,
0.255615234375,
0.25390625,
-0.6513671875,
-0.2047119140625,
0.42724609375,
-0.29541015625,
-0.9296875,
0.75390625,
-0.8955078125,
-0.335205078125,
-0.3837890625,
-0.264404296875,
0.75390625,
0.54638671875,
0.339111328125,
-0.53759765625,
-0.517578125,
-0.01361846923828125,
1.0234375,
0.6884765625,
-0.86181640625,
0.057373046875,
0.71728515625,
-0.10528564453125,
0.1356201171875,
0.053741455078125,
-0.28125,
-0.419677734375,
0.43408203125,
0.037750244140625,
0.78125,
0.04620361328125,
0.49951171875,
0.83251953125,
0.415771484375,
-1.0224609375,
0.3408203125,
-0.256103515625,
1.0478515625,
0.6005859375,
0.261474609375,
0.53173828125,
-0.53173828125,
-0.488525390625,
-0.8798828125,
0.472412109375,
0.43310546875,
0.5234375,
-0.59619140625,
0.59228515625,
0.452880859375,
-0.29443359375,
0.456787109375,
-0.95458984375,
0.34130859375,
0.95556640625,
-0.256591796875,
1.0400390625,
-0.59619140625,
0.3115234375,
0.01904296875,
0.29345703125,
0.546875,
0.6826171875,
0.23583984375,
-0.362548828125,
-0.25830078125,
-0.423583984375,
-0.40283203125,
0.2379150390625,
-0.417724609375,
0.34375,
-0.0836181640625,
-0.432373046875,
-0.77392578125,
0.072021484375,
1.2138671875,
0.83935546875,
0.038055419921875,
0.1920166015625,
0.17626953125,
0.186767578125,
0.86328125,
-0.303466796875,
0.1258544921875,
-0.70263671875,
1.0439453125,
0.269775390625,
-0.236083984375,
-0.1435546875,
-0.2205810546875,
-0.10693359375,
0.380859375,
0.1427001953125,
-0.06005859375,
-1.271484375,
0.219482421875,
0.1112060546875,
0.57080078125,
-0.65625,
-0.10162353515625,
-0.210205078125,
0.58740234375,
0.1829833984375,
-0.79052734375,
-0.0869140625,
-1.0625,
0.76416015625,
0.334228515625,
0.093505859375,
-0.495361328125,
-0.253173828125,
-0.78173828125,
-0.74072265625,
0.453369140625,
0.75537109375,
-0.26123046875,
0.12115478515625,
-1.1025390625,
0.81396484375,
0.27880859375,
-0.2841796875,
0.0885009765625,
-0.1519775390625,
0.54296875,
0.25341796875,
0.6337890625,
-0.7529296875,
-0.73681640625,
0.015716552734375,
-1.2646484375,
0.6875,
-0.521484375,
0.53955078125,
0.01416015625,
-0.267333984375,
-0.05145263671875,
0.284423828125,
-0.320068359375,
0.50537109375,
-0.4462890625,
0.0177001953125,
-0.6953125,
-0.83544921875,
0.56982421875,
-0.43505859375,
-0.45361328125,
0.80615234375,
-0.0965576171875,
-0.2440185546875,
0.177001953125,
0.331298828125,
-0.43994140625,
0.2347412109375,
-0.5361328125,
0.578125,
-0.34521484375,
-0.80517578125,
-0.234619140625,
-0.350341796875,
0.7080078125,
0.074951171875,
-0.4951171875,
-0.05975341796875,
-0.9482421875,
-0.1180419921875,
0.029022216796875,
-0.7060546875,
0.223876953125,
0.324462890625,
-0.2705078125,
-0.12115478515625,
-0.0621337890625,
-0.173583984375,
-0.450439453125,
-0.469482421875,
-0.44189453125,
0.28076171875,
0.362548828125,
0.84375,
0.126708984375,
-0.274169921875,
-0.1502685546875,
0.0214996337890625,
-0.2216796875,
-0.7451171875,
-0.2108154296875,
-0.259033203125,
-0.19287109375,
-0.55029296875,
0.422607421875,
0.01580810546875,
0.391845703125,
0.81982421875,
0.1522216796875,
0.400146484375,
0.371826171875,
-0.39501953125,
0.9775390625,
0.295166015625,
-1.171875,
-0.85107421875,
0.58154296875,
0.206787109375,
0.27392578125,
0.10064697265625,
-1.0595703125,
-0.54541015625,
-0.91748046875,
0.6298828125,
-0.6591796875,
0.011993408203125,
-1.2197265625,
-0.646484375,
-0.333251953125,
0.4248046875,
-0.055908203125,
-0.2117919921875,
0.3125,
-1.03125,
0.2412109375,
-0.68212890625,
-0.375,
-0.85205078125,
-1.041015625,
-0.2646484375,
0.79931640625,
0.57373046875,
0.474609375,
0.1920166015625,
-0.322021484375,
0.3984375,
-0.409912109375,
-0.71923828125,
-0.365966796875,
-0.37255859375,
-0.0215301513671875,
-0.310302734375,
-0.11328125,
-0.765625,
0.94091796875,
-0.685546875,
0.406494140625,
0.06939697265625,
-0.42822265625,
-0.09942626953125,
-0.50439453125,
1.0908203125,
-0.38623046875,
-0.075927734375,
-0.37744140625,
0.701171875,
0.43505859375,
-0.054931640625,
-0.282470703125,
-0.36376953125,
-0.51220703125,
-1.0537109375,
0.544921875,
-0.6162109375,
0.1988525390625,
-0.85546875,
-0.089111328125,
0.97412109375,
-0.448974609375,
0.314697265625,
1.0146484375,
-0.040130615234375,
0.38427734375,
-0.572265625,
0.83642578125,
0.342041015625,
-0.6650390625,
0.19580078125,
0.06427001953125,
-0.76416015625,
0.2213134765625,
-0.50732421875,
-0.9638671875,
-0.619140625,
0.446044921875,
1.39453125,
-0.12939453125,
0.88720703125,
-0.1806640625,
-1.181640625,
-0.783203125,
0.7939453125,
0.0004870891571044922,
0.52734375,
0.98388671875,
-0.54443359375,
-0.350830078125,
0.1116943359375,
-0.06298828125,
-0.51806640625,
-0.1568603515625,
1.1630859375,
-0.7783203125,
-0.73388671875,
0.654296875,
0.69677734375,
-0.984375,
-0.91650390625,
-0.1495361328125,
-0.1309814453125,
-0.333740234375,
-0.595703125,
0.36279296875,
0.7783203125,
-0.67626953125,
0.054168701171875,
0.11151123046875,
-0.1983642578125,
0.6904296875,
-0.0136871337890625,
0.2479248046875,
-0.572265625,
0.422607421875,
0.27783203125,
-0.5205078125,
-0.513671875,
-1.072265625,
-0.1964111328125,
-0.098876953125,
0.2401123046875,
0.77197265625,
-0.248291015625,
0.0225830078125,
0.488525390625,
-0.077392578125,
0.7099609375,
-0.419677734375,
-0.1893310546875,
0.26513671875,
-0.44140625,
-0.5439453125,
0.07171630859375,
0.287109375,
-0.0677490234375,
0.587890625,
-0.60986328125,
-0.33984375,
0.55712890625,
0.4658203125,
-0.55224609375,
-0.53515625,
-0.314208984375,
-1.23046875,
-0.60986328125,
-0.7958984375,
-0.7490234375,
-0.2017822265625,
0.476806640625,
0.25146484375,
-0.81298828125,
0.2288818359375,
0.53173828125,
-0.82470703125,
0.76806640625,
-0.317138671875,
0.37939453125,
-0.385498046875,
-0.255615234375,
-0.70263671875,
0.27587890625,
-0.6083984375,
-0.2493896484375,
-0.09576416015625,
0.73046875,
-0.367431640625,
0.37353515625,
-0.09649658203125,
0.2919921875,
-0.5322265625,
-0.681640625,
-0.2264404296875,
0.1055908203125,
-0.27685546875,
1.0791015625,
0.66455078125,
0.50048828125,
0.297119140625,
-0.045928955078125,
-0.2061767578125,
-0.5029296875,
0.63671875,
0.63037109375,
-0.2216796875,
-0.266357421875,
-0.1795654296875,
0.2000732421875,
-0.859375,
0.4853515625,
-0.461181640625,
-0.000522613525390625,
0.112548828125,
-0.398681640625,
0.4208984375,
1.3427734375,
-0.486572265625,
0.208984375,
-0.09307861328125,
-0.1331787109375,
0.35791015625,
0.1444091796875,
0.214599609375,
0.43896484375,
-0.1832275390625,
-0.1708984375,
-0.161376953125,
0.357666015625,
0.2384033203125,
0.1329345703125,
-0.2474365234375,
-0.72900390625,
-0.88720703125,
-0.50048828125,
0.10333251953125,
0.1903076171875,
0.25927734375,
-0.63916015625,
-0.1080322265625,
0.315185546875,
-0.7626953125,
-0.10205078125,
-1.2080078125,
-1.2392578125,
0.237060546875,
0.0762939453125,
-0.89111328125,
-0.235595703125,
-0.328369140625,
-0.2744140625,
-0.13623046875,
0.53759765625,
-0.484619140625,
0.440673828125,
0.05792236328125,
0.462646484375,
-0.03253173828125,
-0.2164306640625,
0.274658203125,
0.5625,
-0.650390625,
-0.75537109375,
0.1873779296875,
0.77587890625,
0.1646728515625,
-0.1875,
-0.57080078125,
0.5654296875,
0.2467041015625,
0.12744140625,
-0.1890869140625,
0.140625,
-0.1356201171875,
0.63330078125,
-1.1044921875,
-0.1019287109375,
-0.1878662109375,
0.2271728515625,
0.07470703125,
-0.2381591796875,
-0.47802734375,
0.92041015625,
0.5966796875,
-0.44873046875,
0.4521484375,
0.357177734375,
0.2225341796875,
-0.152099609375,
-0.10980224609375,
-0.1646728515625,
0.260498046875,
0.64013671875,
0.6923828125,
-0.314453125,
0.322509765625,
0.483154296875,
-0.058746337890625,
-0.50390625,
0.2027587890625,
0.2293701171875,
0.1689453125,
0.047271728515625,
-0.34521484375,
-0.461181640625,
-0.18310546875,
-0.78515625,
0.2017822265625,
-0.650390625,
-0.0225067138671875,
0.0406494140625,
-0.826171875,
0.98681640625,
-0.29541015625,
0.055206298828125,
0.1783447265625,
-0.7275390625,
0.225341796875,
0.56005859375,
-0.1285400390625,
-0.265625,
0.798828125,
0.861328125,
0.90966796875,
0.71875,
0.402099609375,
0.479736328125,
-0.630859375,
0.07061767578125,
0.2244873046875,
0.03729248046875,
-0.57958984375,
-0.48876953125,
-0.80419921875,
0.572265625,
-0.422119140625,
-0.2362060546875,
0.462158203125,
-0.72412109375,
-0.030303955078125,
0.1026611328125,
1.1044921875,
-0.48486328125,
0.482421875,
0.71142578125,
-0.430419921875,
-0.783203125,
1.0888671875,
-0.3583984375,
0.177978515625,
0.1614990234375,
0.75048828125,
0.1407470703125,
1.33984375,
0.75,
-0.556640625,
0.2705078125,
0.8359375,
-0.560546875,
-0.8232421875,
-0.9921875,
-0.25244140625,
-0.1363525390625,
-0.4736328125,
-0.14697265625,
-0.0286407470703125,
0.56884765625,
0.1295166015625,
-0.5244140625,
-0.004024505615234375,
0.280029296875,
-0.8017578125,
0.316162109375,
0.265625,
0.320068359375,
0.2249755859375,
-0.1639404296875,
0.150390625,
-0.7978515625,
0.021942138671875,
-0.5537109375,
0.4033203125,
-1.087890625,
-0.25,
-0.93017578125,
-0.7958984375,
0.035736083984375,
-0.5419921875,
-0.421142578125,
-0.95458984375,
0.342041015625,
0.55224609375,
0.45703125,
0.3505859375,
-0.07733154296875,
0.4921875,
0.96923828125,
0.61865234375,
0.0189666748046875,
0.6708984375,
0.426025390625,
0.0198516845703125,
0.02294921875,
-0.1378173828125,
0.50341796875,
-0.171142578125,
0.349365234375,
-0.2459716796875,
0.212158203125,
-1.0078125,
-1.33984375,
0.21337890625,
0.43701171875,
0.2861328125,
-0.384521484375,
-0.66943359375,
-0.2449951171875,
-0.91552734375,
-0.01428985595703125,
-0.8955078125,
0.63818359375,
-0.455078125,
0.034454345703125,
-0.1837158203125,
-1.021484375,
4.32421875,
1.14453125,
1.21875,
0.1807861328125,
0.1875,
1.046875,
0.0024662017822265625,
-0.44140625,
-0.55615234375,
-0.27099609375,
0.8115234375,
-0.482666015625,
0.253662109375,
0.802734375,
0.476806640625,
0.474853515625,
-0.1419677734375,
0.0828857421875,
0.05718994140625,
-0.923828125,
-0.931640625,
0.21875,
-0.1485595703125,
0.60107421875,
-0.1082763671875,
0.4443359375,
0.482666015625,
-0.669921875,
-0.311279296875,
-0.81689453125,
0.272705078125,
-0.442626953125,
0.578125,
-0.140625,
0.06939697265625,
0.72998046875,
0.320556640625,
-0.3310546875,
-0.08172607421875,
0.12493896484375,
-0.06536865234375,
-0.0909423828125,
0.30810546875,
-0.85546875,
-0.01470184326171875,
0.2083740234375,
-0.775390625,
0.52783203125,
0.12384033203125,
-1.2060546875,
0.8232421875,
-0.340576171875,
0.404541015625,
-0.57421875,
-0.67529296875,
0.2122802734375,
0.1474609375,
-0.17822265625,
0.012847900390625,
0.53759765625,
0.2364501953125,
0.386474609375,
0.0654296875,
0.379150390625,
-1.115234375,
0.65380859375,
0.0826416015625,
0.396240234375,
-0.75439453125,
0.09979248046875,
-0.00756072998046875,
-0.65087890625,
-0.375,
-0.36083984375,
0.62451171875,
0.3671875,
-0.095947265625,
0.464599609375,
-0.00852203369140625,
-0.37158203125,
0.133544921875,
-0.244384765625,
-0.09539794921875,
-0.6455078125,
0.60400390625,
1.353515625,
-0.63427734375,
-0.34375,
-0.1685791015625,
0.41015625,
0.53173828125,
0.446533203125,
0.32958984375,
-0.74072265625,
-0.08734130859375
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
You are given a string s consisting of lowercase Latin letters. Let the length of s be |s|. You may perform several operations on this string.
In one operation, you can choose some index i and remove the i-th character of s (s_i) if at least one of its adjacent characters is the previous letter in the Latin alphabet for s_i. For example, the previous letter for b is a, the previous letter for s is r, the letter a has no previous letters. Note that after each removal the length of the string decreases by one. So, the index i should satisfy the condition 1 ≤ i ≤ |s| during each operation.
For the character s_i adjacent characters are s_{i-1} and s_{i+1}. The first and the last characters of s both have only one adjacent character (unless |s| = 1).
Consider the following example. Let s= bacabcab.
1. During the first move, you can remove the first character s_1= b because s_2= a. Then the string becomes s= acabcab.
2. During the second move, you can remove the fifth character s_5= c because s_4= b. Then the string becomes s= acabab.
3. During the third move, you can remove the sixth character s_6='b' because s_5= a. Then the string becomes s= acaba.
4. During the fourth move, the only character you can remove is s_4= b, because s_3= a (or s_5= a). The string becomes s= acaa and you cannot do anything with it.
Your task is to find the maximum possible number of characters you can remove if you choose the sequence of operations optimally.
Input
The first line of the input contains one integer |s| (1 ≤ |s| ≤ 100) — the length of s.
The second line of the input contains one string s consisting of |s| lowercase Latin letters.
Output
Print one integer — the maximum possible number of characters you can remove if you choose the sequence of moves optimally.
Examples
Input
8
bacabcab
Output
4
Input
4
bcda
Output
3
Input
6
abbbbb
Output
5
Note
The first example is described in the problem statement. Note that the sequence of moves provided in the statement is not the only, but it can be shown that the maximum possible answer to this test is 4.
In the second example, you can remove all but one character of s. The only possible answer follows.
1. During the first move, remove the third character s_3= d, s becomes bca.
2. During the second move, remove the second character s_2= c, s becomes ba.
3. And during the third move, remove the first character s_1= b, s becomes a.
Tags: brute force, constructive algorithms, greedy, strings
Correct Solution:
```
n=int(input())
s=list(input())
for i in range(n):
s[i]=ord(s[i])-97
ch=[i for i in range(26,-1,-1)]
s=[-100]+s+[-100]
for i in ch:
j=1
while j<len(s)-1:
if s[j]==i:
if s[j]==s[j-1]+1 or s[j]==s[j+1]+1:
s.pop(j)
j=1
else:
j+=1
else:
j+=1
print(n+2-len(s))
```
| 10,080 | [
0.1654052734375,
0.1585693359375,
0.1649169921875,
0.47802734375,
-0.45556640625,
-0.07977294921875,
-0.31298828125,
0.010345458984375,
0.1448974609375,
0.87548828125,
0.81201171875,
-0.017852783203125,
-0.65380859375,
-1.1171875,
-0.50634765625,
0.039947509765625,
-0.705078125,
-0.65380859375,
-0.445068359375,
-0.04345703125,
0.1533203125,
-0.0091400146484375,
-1.2978515625,
-0.1492919921875,
-0.0633544921875,
0.8876953125,
0.697265625,
-0.285400390625,
1.111328125,
1.3310546875,
-0.11114501953125,
-0.78515625,
0.9130859375,
-1.005859375,
-0.438232421875,
-0.337646484375,
0.79150390625,
-0.47900390625,
0.024505615234375,
-0.505859375,
0.34423828125,
-0.5859375,
0.564453125,
-0.67919921875,
-1.0908203125,
-0.032073974609375,
-0.332275390625,
-0.1868896484375,
-0.56103515625,
-0.470703125,
-0.1077880859375,
-0.283203125,
0.65478515625,
-0.05987548828125,
-0.005489349365234375,
0.1934814453125,
0.216552734375,
-0.2763671875,
-0.363525390625,
0.456298828125,
0.1920166015625,
0.1077880859375,
0.07843017578125,
-0.49609375,
-0.02777099609375,
0.343017578125,
-0.0567626953125,
0.1141357421875,
0.234375,
-0.7626953125,
-0.218994140625,
0.255859375,
-0.407470703125,
-0.701171875,
-0.19189453125,
0.05535888671875,
0.36279296875,
-0.361328125,
-0.65869140625,
0.708984375,
-0.11376953125,
0.92041015625,
0.414794921875,
0.1427001953125,
-0.61865234375,
-0.478271484375,
-0.07122802734375,
0.197265625,
-0.1802978515625,
-0.284423828125,
-0.3193359375,
0.9130859375,
-0.69140625,
-0.048553466796875,
0.3251953125,
0.94140625,
-0.49658203125,
0.3525390625,
0.576171875,
-0.105712890625,
0.65087890625,
0.7451171875,
-0.4150390625,
0.912109375,
-0.458740234375,
0.046905517578125,
0.2139892578125,
-0.219482421875,
-0.05255126953125,
-0.313232421875,
-0.390380859375,
-0.0762939453125,
0.311767578125,
0.2724609375,
-0.58251953125,
0.9404296875,
-0.051300048828125,
0.54443359375,
-0.90087890625,
0.41845703125,
0.475341796875,
0.26513671875,
0.80517578125,
-0.193603515625,
-0.249267578125,
-0.44189453125,
-0.65869140625,
0.80859375,
-0.7841796875,
0.1673583984375,
0.126220703125,
-0.0009303092956542969,
-0.62744140625,
0.359375,
-0.232421875,
1.091796875,
-0.368408203125,
0.396484375,
0.70703125,
-0.48095703125,
0.76611328125,
-0.01023101806640625,
-0.239013671875,
1.41015625,
0.4619140625,
0.0958251953125,
0.7939453125,
0.420166015625,
-0.5625,
0.5078125,
-1.1298828125,
0.67578125,
0.2255859375,
0.2958984375,
-0.43701171875,
0.287353515625,
-0.277099609375,
0.640625,
0.09857177734375,
0.292724609375,
-0.63720703125,
0.038665771484375,
-0.358154296875,
0.5087890625,
-0.1038818359375,
0.85595703125,
-0.42919921875,
-0.384521484375,
-0.0005307197570800781,
-0.36328125,
0.13525390625,
-0.405029296875,
-0.173828125,
0.56494140625,
0.47412109375,
0.98779296875,
0.857421875,
-0.2998046875,
0.5400390625,
0.51513671875,
-0.499755859375,
0.3427734375,
0.3291015625,
0.3916015625,
0.53662109375,
0.1361083984375,
-0.11834716796875,
-0.1458740234375,
-0.6298828125,
-0.421142578125,
-0.0007243156433105469,
0.6298828125,
-0.268310546875,
0.1435546875,
0.25341796875,
-0.2093505859375,
-0.97607421875,
0.062347412109375,
0.0462646484375,
-1.166015625,
-0.383544921875,
0.408447265625,
0.053070068359375,
0.53955078125,
-0.736328125,
-0.61083984375,
0.36328125,
1.15625,
-0.5703125,
0.3115234375,
0.853515625,
-0.016815185546875,
-0.09539794921875,
0.256103515625,
0.026458740234375,
-0.2064208984375,
-0.55712890625,
0.59716796875,
-0.29248046875,
0.31787109375,
0.10968017578125,
0.58837890625,
-0.09912109375,
0.873046875,
-0.15185546875,
-0.321044921875,
0.302978515625,
1.20703125,
0.10247802734375,
0.356689453125,
0.39453125,
0.783203125,
0.56591796875,
0.4482421875,
0.7255859375,
-0.09716796875,
0.70068359375,
1.076171875,
-0.230712890625,
0.2015380859375,
0.276611328125,
0.69140625,
0.71240234375,
0.5869140625,
0.11651611328125,
0.56982421875,
-0.042327880859375,
0.1439208984375,
-0.396484375,
0.1353759765625,
-0.3203125,
0.363525390625,
0.170166015625,
0.344970703125,
-0.2425537109375,
-0.1326904296875,
0.251708984375,
0.60986328125,
-1.05859375,
-0.34716796875,
-0.287841796875,
0.155029296875,
0.396240234375,
0.2490234375,
0.5029296875,
0.47998046875,
0.955078125,
0.29296875,
-0.089111328125,
-0.4384765625,
-0.90869140625,
-0.94873046875,
-0.77099609375,
-0.443359375,
-0.64404296875,
-0.127685546875,
0.39306640625,
-1.09765625,
0.286376953125,
-0.55224609375,
-0.308349609375,
0.1268310546875,
-0.482421875,
0.611328125,
-0.365478515625,
0.50390625,
-0.67431640625,
0.245849609375,
0.09228515625,
1.03515625,
-0.515625,
-0.0450439453125,
-0.32568359375,
-0.4423828125,
0.11456298828125,
-0.06756591796875,
0.55810546875,
0.018035888671875,
-0.611328125,
-0.90576171875,
-0.44970703125,
-0.050537109375,
-0.50146484375,
0.1553955078125,
-0.3359375,
0.58251953125,
0.7294921875,
-0.48681640625,
0.79736328125,
0.95947265625,
-0.79736328125,
0.413330078125,
-0.03521728515625,
0.1278076171875,
-0.7900390625,
1.2275390625,
0.412353515625,
0.381103515625,
-0.82177734375,
-0.88818359375,
-0.3232421875,
0.255615234375,
0.25390625,
-0.6513671875,
-0.2047119140625,
0.42724609375,
-0.29541015625,
-0.9296875,
0.75390625,
-0.8955078125,
-0.335205078125,
-0.3837890625,
-0.264404296875,
0.75390625,
0.54638671875,
0.339111328125,
-0.53759765625,
-0.517578125,
-0.01361846923828125,
1.0234375,
0.6884765625,
-0.86181640625,
0.057373046875,
0.71728515625,
-0.10528564453125,
0.1356201171875,
0.053741455078125,
-0.28125,
-0.419677734375,
0.43408203125,
0.037750244140625,
0.78125,
0.04620361328125,
0.49951171875,
0.83251953125,
0.415771484375,
-1.0224609375,
0.3408203125,
-0.256103515625,
1.0478515625,
0.6005859375,
0.261474609375,
0.53173828125,
-0.53173828125,
-0.488525390625,
-0.8798828125,
0.472412109375,
0.43310546875,
0.5234375,
-0.59619140625,
0.59228515625,
0.452880859375,
-0.29443359375,
0.456787109375,
-0.95458984375,
0.34130859375,
0.95556640625,
-0.256591796875,
1.0400390625,
-0.59619140625,
0.3115234375,
0.01904296875,
0.29345703125,
0.546875,
0.6826171875,
0.23583984375,
-0.362548828125,
-0.25830078125,
-0.423583984375,
-0.40283203125,
0.2379150390625,
-0.417724609375,
0.34375,
-0.0836181640625,
-0.432373046875,
-0.77392578125,
0.072021484375,
1.2138671875,
0.83935546875,
0.038055419921875,
0.1920166015625,
0.17626953125,
0.186767578125,
0.86328125,
-0.303466796875,
0.1258544921875,
-0.70263671875,
1.0439453125,
0.269775390625,
-0.236083984375,
-0.1435546875,
-0.2205810546875,
-0.10693359375,
0.380859375,
0.1427001953125,
-0.06005859375,
-1.271484375,
0.219482421875,
0.1112060546875,
0.57080078125,
-0.65625,
-0.10162353515625,
-0.210205078125,
0.58740234375,
0.1829833984375,
-0.79052734375,
-0.0869140625,
-1.0625,
0.76416015625,
0.334228515625,
0.093505859375,
-0.495361328125,
-0.253173828125,
-0.78173828125,
-0.74072265625,
0.453369140625,
0.75537109375,
-0.26123046875,
0.12115478515625,
-1.1025390625,
0.81396484375,
0.27880859375,
-0.2841796875,
0.0885009765625,
-0.1519775390625,
0.54296875,
0.25341796875,
0.6337890625,
-0.7529296875,
-0.73681640625,
0.015716552734375,
-1.2646484375,
0.6875,
-0.521484375,
0.53955078125,
0.01416015625,
-0.267333984375,
-0.05145263671875,
0.284423828125,
-0.320068359375,
0.50537109375,
-0.4462890625,
0.0177001953125,
-0.6953125,
-0.83544921875,
0.56982421875,
-0.43505859375,
-0.45361328125,
0.80615234375,
-0.0965576171875,
-0.2440185546875,
0.177001953125,
0.331298828125,
-0.43994140625,
0.2347412109375,
-0.5361328125,
0.578125,
-0.34521484375,
-0.80517578125,
-0.234619140625,
-0.350341796875,
0.7080078125,
0.074951171875,
-0.4951171875,
-0.05975341796875,
-0.9482421875,
-0.1180419921875,
0.029022216796875,
-0.7060546875,
0.223876953125,
0.324462890625,
-0.2705078125,
-0.12115478515625,
-0.0621337890625,
-0.173583984375,
-0.450439453125,
-0.469482421875,
-0.44189453125,
0.28076171875,
0.362548828125,
0.84375,
0.126708984375,
-0.274169921875,
-0.1502685546875,
0.0214996337890625,
-0.2216796875,
-0.7451171875,
-0.2108154296875,
-0.259033203125,
-0.19287109375,
-0.55029296875,
0.422607421875,
0.01580810546875,
0.391845703125,
0.81982421875,
0.1522216796875,
0.400146484375,
0.371826171875,
-0.39501953125,
0.9775390625,
0.295166015625,
-1.171875,
-0.85107421875,
0.58154296875,
0.206787109375,
0.27392578125,
0.10064697265625,
-1.0595703125,
-0.54541015625,
-0.91748046875,
0.6298828125,
-0.6591796875,
0.011993408203125,
-1.2197265625,
-0.646484375,
-0.333251953125,
0.4248046875,
-0.055908203125,
-0.2117919921875,
0.3125,
-1.03125,
0.2412109375,
-0.68212890625,
-0.375,
-0.85205078125,
-1.041015625,
-0.2646484375,
0.79931640625,
0.57373046875,
0.474609375,
0.1920166015625,
-0.322021484375,
0.3984375,
-0.409912109375,
-0.71923828125,
-0.365966796875,
-0.37255859375,
-0.0215301513671875,
-0.310302734375,
-0.11328125,
-0.765625,
0.94091796875,
-0.685546875,
0.406494140625,
0.06939697265625,
-0.42822265625,
-0.09942626953125,
-0.50439453125,
1.0908203125,
-0.38623046875,
-0.075927734375,
-0.37744140625,
0.701171875,
0.43505859375,
-0.054931640625,
-0.282470703125,
-0.36376953125,
-0.51220703125,
-1.0537109375,
0.544921875,
-0.6162109375,
0.1988525390625,
-0.85546875,
-0.089111328125,
0.97412109375,
-0.448974609375,
0.314697265625,
1.0146484375,
-0.040130615234375,
0.38427734375,
-0.572265625,
0.83642578125,
0.342041015625,
-0.6650390625,
0.19580078125,
0.06427001953125,
-0.76416015625,
0.2213134765625,
-0.50732421875,
-0.9638671875,
-0.619140625,
0.446044921875,
1.39453125,
-0.12939453125,
0.88720703125,
-0.1806640625,
-1.181640625,
-0.783203125,
0.7939453125,
0.0004870891571044922,
0.52734375,
0.98388671875,
-0.54443359375,
-0.350830078125,
0.1116943359375,
-0.06298828125,
-0.51806640625,
-0.1568603515625,
1.1630859375,
-0.7783203125,
-0.73388671875,
0.654296875,
0.69677734375,
-0.984375,
-0.91650390625,
-0.1495361328125,
-0.1309814453125,
-0.333740234375,
-0.595703125,
0.36279296875,
0.7783203125,
-0.67626953125,
0.054168701171875,
0.11151123046875,
-0.1983642578125,
0.6904296875,
-0.0136871337890625,
0.2479248046875,
-0.572265625,
0.422607421875,
0.27783203125,
-0.5205078125,
-0.513671875,
-1.072265625,
-0.1964111328125,
-0.098876953125,
0.2401123046875,
0.77197265625,
-0.248291015625,
0.0225830078125,
0.488525390625,
-0.077392578125,
0.7099609375,
-0.419677734375,
-0.1893310546875,
0.26513671875,
-0.44140625,
-0.5439453125,
0.07171630859375,
0.287109375,
-0.0677490234375,
0.587890625,
-0.60986328125,
-0.33984375,
0.55712890625,
0.4658203125,
-0.55224609375,
-0.53515625,
-0.314208984375,
-1.23046875,
-0.60986328125,
-0.7958984375,
-0.7490234375,
-0.2017822265625,
0.476806640625,
0.25146484375,
-0.81298828125,
0.2288818359375,
0.53173828125,
-0.82470703125,
0.76806640625,
-0.317138671875,
0.37939453125,
-0.385498046875,
-0.255615234375,
-0.70263671875,
0.27587890625,
-0.6083984375,
-0.2493896484375,
-0.09576416015625,
0.73046875,
-0.367431640625,
0.37353515625,
-0.09649658203125,
0.2919921875,
-0.5322265625,
-0.681640625,
-0.2264404296875,
0.1055908203125,
-0.27685546875,
1.0791015625,
0.66455078125,
0.50048828125,
0.297119140625,
-0.045928955078125,
-0.2061767578125,
-0.5029296875,
0.63671875,
0.63037109375,
-0.2216796875,
-0.266357421875,
-0.1795654296875,
0.2000732421875,
-0.859375,
0.4853515625,
-0.461181640625,
-0.000522613525390625,
0.112548828125,
-0.398681640625,
0.4208984375,
1.3427734375,
-0.486572265625,
0.208984375,
-0.09307861328125,
-0.1331787109375,
0.35791015625,
0.1444091796875,
0.214599609375,
0.43896484375,
-0.1832275390625,
-0.1708984375,
-0.161376953125,
0.357666015625,
0.2384033203125,
0.1329345703125,
-0.2474365234375,
-0.72900390625,
-0.88720703125,
-0.50048828125,
0.10333251953125,
0.1903076171875,
0.25927734375,
-0.63916015625,
-0.1080322265625,
0.315185546875,
-0.7626953125,
-0.10205078125,
-1.2080078125,
-1.2392578125,
0.237060546875,
0.0762939453125,
-0.89111328125,
-0.235595703125,
-0.328369140625,
-0.2744140625,
-0.13623046875,
0.53759765625,
-0.484619140625,
0.440673828125,
0.05792236328125,
0.462646484375,
-0.03253173828125,
-0.2164306640625,
0.274658203125,
0.5625,
-0.650390625,
-0.75537109375,
0.1873779296875,
0.77587890625,
0.1646728515625,
-0.1875,
-0.57080078125,
0.5654296875,
0.2467041015625,
0.12744140625,
-0.1890869140625,
0.140625,
-0.1356201171875,
0.63330078125,
-1.1044921875,
-0.1019287109375,
-0.1878662109375,
0.2271728515625,
0.07470703125,
-0.2381591796875,
-0.47802734375,
0.92041015625,
0.5966796875,
-0.44873046875,
0.4521484375,
0.357177734375,
0.2225341796875,
-0.152099609375,
-0.10980224609375,
-0.1646728515625,
0.260498046875,
0.64013671875,
0.6923828125,
-0.314453125,
0.322509765625,
0.483154296875,
-0.058746337890625,
-0.50390625,
0.2027587890625,
0.2293701171875,
0.1689453125,
0.047271728515625,
-0.34521484375,
-0.461181640625,
-0.18310546875,
-0.78515625,
0.2017822265625,
-0.650390625,
-0.0225067138671875,
0.0406494140625,
-0.826171875,
0.98681640625,
-0.29541015625,
0.055206298828125,
0.1783447265625,
-0.7275390625,
0.225341796875,
0.56005859375,
-0.1285400390625,
-0.265625,
0.798828125,
0.861328125,
0.90966796875,
0.71875,
0.402099609375,
0.479736328125,
-0.630859375,
0.07061767578125,
0.2244873046875,
0.03729248046875,
-0.57958984375,
-0.48876953125,
-0.80419921875,
0.572265625,
-0.422119140625,
-0.2362060546875,
0.462158203125,
-0.72412109375,
-0.030303955078125,
0.1026611328125,
1.1044921875,
-0.48486328125,
0.482421875,
0.71142578125,
-0.430419921875,
-0.783203125,
1.0888671875,
-0.3583984375,
0.177978515625,
0.1614990234375,
0.75048828125,
0.1407470703125,
1.33984375,
0.75,
-0.556640625,
0.2705078125,
0.8359375,
-0.560546875,
-0.8232421875,
-0.9921875,
-0.25244140625,
-0.1363525390625,
-0.4736328125,
-0.14697265625,
-0.0286407470703125,
0.56884765625,
0.1295166015625,
-0.5244140625,
-0.004024505615234375,
0.280029296875,
-0.8017578125,
0.316162109375,
0.265625,
0.320068359375,
0.2249755859375,
-0.1639404296875,
0.150390625,
-0.7978515625,
0.021942138671875,
-0.5537109375,
0.4033203125,
-1.087890625,
-0.25,
-0.93017578125,
-0.7958984375,
0.035736083984375,
-0.5419921875,
-0.421142578125,
-0.95458984375,
0.342041015625,
0.55224609375,
0.45703125,
0.3505859375,
-0.07733154296875,
0.4921875,
0.96923828125,
0.61865234375,
0.0189666748046875,
0.6708984375,
0.426025390625,
0.0198516845703125,
0.02294921875,
-0.1378173828125,
0.50341796875,
-0.171142578125,
0.349365234375,
-0.2459716796875,
0.212158203125,
-1.0078125,
-1.33984375,
0.21337890625,
0.43701171875,
0.2861328125,
-0.384521484375,
-0.66943359375,
-0.2449951171875,
-0.91552734375,
-0.01428985595703125,
-0.8955078125,
0.63818359375,
-0.455078125,
0.034454345703125,
-0.1837158203125,
-1.021484375,
4.32421875,
1.14453125,
1.21875,
0.1807861328125,
0.1875,
1.046875,
0.0024662017822265625,
-0.44140625,
-0.55615234375,
-0.27099609375,
0.8115234375,
-0.482666015625,
0.253662109375,
0.802734375,
0.476806640625,
0.474853515625,
-0.1419677734375,
0.0828857421875,
0.05718994140625,
-0.923828125,
-0.931640625,
0.21875,
-0.1485595703125,
0.60107421875,
-0.1082763671875,
0.4443359375,
0.482666015625,
-0.669921875,
-0.311279296875,
-0.81689453125,
0.272705078125,
-0.442626953125,
0.578125,
-0.140625,
0.06939697265625,
0.72998046875,
0.320556640625,
-0.3310546875,
-0.08172607421875,
0.12493896484375,
-0.06536865234375,
-0.0909423828125,
0.30810546875,
-0.85546875,
-0.01470184326171875,
0.2083740234375,
-0.775390625,
0.52783203125,
0.12384033203125,
-1.2060546875,
0.8232421875,
-0.340576171875,
0.404541015625,
-0.57421875,
-0.67529296875,
0.2122802734375,
0.1474609375,
-0.17822265625,
0.012847900390625,
0.53759765625,
0.2364501953125,
0.386474609375,
0.0654296875,
0.379150390625,
-1.115234375,
0.65380859375,
0.0826416015625,
0.396240234375,
-0.75439453125,
0.09979248046875,
-0.00756072998046875,
-0.65087890625,
-0.375,
-0.36083984375,
0.62451171875,
0.3671875,
-0.095947265625,
0.464599609375,
-0.00852203369140625,
-0.37158203125,
0.133544921875,
-0.244384765625,
-0.09539794921875,
-0.6455078125,
0.60400390625,
1.353515625,
-0.63427734375,
-0.34375,
-0.1685791015625,
0.41015625,
0.53173828125,
0.446533203125,
0.32958984375,
-0.74072265625,
-0.08734130859375
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
You are given a string s consisting of lowercase Latin letters. Let the length of s be |s|. You may perform several operations on this string.
In one operation, you can choose some index i and remove the i-th character of s (s_i) if at least one of its adjacent characters is the previous letter in the Latin alphabet for s_i. For example, the previous letter for b is a, the previous letter for s is r, the letter a has no previous letters. Note that after each removal the length of the string decreases by one. So, the index i should satisfy the condition 1 ≤ i ≤ |s| during each operation.
For the character s_i adjacent characters are s_{i-1} and s_{i+1}. The first and the last characters of s both have only one adjacent character (unless |s| = 1).
Consider the following example. Let s= bacabcab.
1. During the first move, you can remove the first character s_1= b because s_2= a. Then the string becomes s= acabcab.
2. During the second move, you can remove the fifth character s_5= c because s_4= b. Then the string becomes s= acabab.
3. During the third move, you can remove the sixth character s_6='b' because s_5= a. Then the string becomes s= acaba.
4. During the fourth move, the only character you can remove is s_4= b, because s_3= a (or s_5= a). The string becomes s= acaa and you cannot do anything with it.
Your task is to find the maximum possible number of characters you can remove if you choose the sequence of operations optimally.
Input
The first line of the input contains one integer |s| (1 ≤ |s| ≤ 100) — the length of s.
The second line of the input contains one string s consisting of |s| lowercase Latin letters.
Output
Print one integer — the maximum possible number of characters you can remove if you choose the sequence of moves optimally.
Examples
Input
8
bacabcab
Output
4
Input
4
bcda
Output
3
Input
6
abbbbb
Output
5
Note
The first example is described in the problem statement. Note that the sequence of moves provided in the statement is not the only, but it can be shown that the maximum possible answer to this test is 4.
In the second example, you can remove all but one character of s. The only possible answer follows.
1. During the first move, remove the third character s_3= d, s becomes bca.
2. During the second move, remove the second character s_2= c, s becomes ba.
3. And during the third move, remove the first character s_1= b, s becomes a.
Tags: brute force, constructive algorithms, greedy, strings
Correct Solution:
```
n=int(input())
s=str(input())
s=list(s)
n=len(s)
count = [[] for i in range(26)]
for i in range(n):
count[ord(s[i])-ord('a')].append(i)
start = 25
total = 0
while True:
if start<=0:
break
if len(count[start])==0:
start=start-1
continue
for i in range(len(count[start])):
indexStart = count[start][i]
#print(indexStart,s[indexStart])
indexBack = indexStart-1
indexFront = indexStart + 1
b1=0
b2=0
while(indexBack>=0):
if s[indexBack]!='.' and ord(s[indexBack])-ord('a')!=start:
b1=1
break
indexBack=indexBack-1
while(indexFront<n):
if s[indexFront]!='.' and ord(s[indexFront])-ord('a')!=start:
b2=1
break
indexFront = indexFront +1
if (b1==1):
if ord(s[indexBack])-ord('a')==start-1:
s[indexStart]='.'
total=total+1
continue
if (b2==1):
if ord(s[indexFront])-ord('a')==start-1:
s[indexStart]='.'
total=total+1
4
start = start - 1
#print(s)
print(total)
```
| 10,081 | [
0.1654052734375,
0.1585693359375,
0.1649169921875,
0.47802734375,
-0.45556640625,
-0.07977294921875,
-0.31298828125,
0.010345458984375,
0.1448974609375,
0.87548828125,
0.81201171875,
-0.017852783203125,
-0.65380859375,
-1.1171875,
-0.50634765625,
0.039947509765625,
-0.705078125,
-0.65380859375,
-0.445068359375,
-0.04345703125,
0.1533203125,
-0.0091400146484375,
-1.2978515625,
-0.1492919921875,
-0.0633544921875,
0.8876953125,
0.697265625,
-0.285400390625,
1.111328125,
1.3310546875,
-0.11114501953125,
-0.78515625,
0.9130859375,
-1.005859375,
-0.438232421875,
-0.337646484375,
0.79150390625,
-0.47900390625,
0.024505615234375,
-0.505859375,
0.34423828125,
-0.5859375,
0.564453125,
-0.67919921875,
-1.0908203125,
-0.032073974609375,
-0.332275390625,
-0.1868896484375,
-0.56103515625,
-0.470703125,
-0.1077880859375,
-0.283203125,
0.65478515625,
-0.05987548828125,
-0.005489349365234375,
0.1934814453125,
0.216552734375,
-0.2763671875,
-0.363525390625,
0.456298828125,
0.1920166015625,
0.1077880859375,
0.07843017578125,
-0.49609375,
-0.02777099609375,
0.343017578125,
-0.0567626953125,
0.1141357421875,
0.234375,
-0.7626953125,
-0.218994140625,
0.255859375,
-0.407470703125,
-0.701171875,
-0.19189453125,
0.05535888671875,
0.36279296875,
-0.361328125,
-0.65869140625,
0.708984375,
-0.11376953125,
0.92041015625,
0.414794921875,
0.1427001953125,
-0.61865234375,
-0.478271484375,
-0.07122802734375,
0.197265625,
-0.1802978515625,
-0.284423828125,
-0.3193359375,
0.9130859375,
-0.69140625,
-0.048553466796875,
0.3251953125,
0.94140625,
-0.49658203125,
0.3525390625,
0.576171875,
-0.105712890625,
0.65087890625,
0.7451171875,
-0.4150390625,
0.912109375,
-0.458740234375,
0.046905517578125,
0.2139892578125,
-0.219482421875,
-0.05255126953125,
-0.313232421875,
-0.390380859375,
-0.0762939453125,
0.311767578125,
0.2724609375,
-0.58251953125,
0.9404296875,
-0.051300048828125,
0.54443359375,
-0.90087890625,
0.41845703125,
0.475341796875,
0.26513671875,
0.80517578125,
-0.193603515625,
-0.249267578125,
-0.44189453125,
-0.65869140625,
0.80859375,
-0.7841796875,
0.1673583984375,
0.126220703125,
-0.0009303092956542969,
-0.62744140625,
0.359375,
-0.232421875,
1.091796875,
-0.368408203125,
0.396484375,
0.70703125,
-0.48095703125,
0.76611328125,
-0.01023101806640625,
-0.239013671875,
1.41015625,
0.4619140625,
0.0958251953125,
0.7939453125,
0.420166015625,
-0.5625,
0.5078125,
-1.1298828125,
0.67578125,
0.2255859375,
0.2958984375,
-0.43701171875,
0.287353515625,
-0.277099609375,
0.640625,
0.09857177734375,
0.292724609375,
-0.63720703125,
0.038665771484375,
-0.358154296875,
0.5087890625,
-0.1038818359375,
0.85595703125,
-0.42919921875,
-0.384521484375,
-0.0005307197570800781,
-0.36328125,
0.13525390625,
-0.405029296875,
-0.173828125,
0.56494140625,
0.47412109375,
0.98779296875,
0.857421875,
-0.2998046875,
0.5400390625,
0.51513671875,
-0.499755859375,
0.3427734375,
0.3291015625,
0.3916015625,
0.53662109375,
0.1361083984375,
-0.11834716796875,
-0.1458740234375,
-0.6298828125,
-0.421142578125,
-0.0007243156433105469,
0.6298828125,
-0.268310546875,
0.1435546875,
0.25341796875,
-0.2093505859375,
-0.97607421875,
0.062347412109375,
0.0462646484375,
-1.166015625,
-0.383544921875,
0.408447265625,
0.053070068359375,
0.53955078125,
-0.736328125,
-0.61083984375,
0.36328125,
1.15625,
-0.5703125,
0.3115234375,
0.853515625,
-0.016815185546875,
-0.09539794921875,
0.256103515625,
0.026458740234375,
-0.2064208984375,
-0.55712890625,
0.59716796875,
-0.29248046875,
0.31787109375,
0.10968017578125,
0.58837890625,
-0.09912109375,
0.873046875,
-0.15185546875,
-0.321044921875,
0.302978515625,
1.20703125,
0.10247802734375,
0.356689453125,
0.39453125,
0.783203125,
0.56591796875,
0.4482421875,
0.7255859375,
-0.09716796875,
0.70068359375,
1.076171875,
-0.230712890625,
0.2015380859375,
0.276611328125,
0.69140625,
0.71240234375,
0.5869140625,
0.11651611328125,
0.56982421875,
-0.042327880859375,
0.1439208984375,
-0.396484375,
0.1353759765625,
-0.3203125,
0.363525390625,
0.170166015625,
0.344970703125,
-0.2425537109375,
-0.1326904296875,
0.251708984375,
0.60986328125,
-1.05859375,
-0.34716796875,
-0.287841796875,
0.155029296875,
0.396240234375,
0.2490234375,
0.5029296875,
0.47998046875,
0.955078125,
0.29296875,
-0.089111328125,
-0.4384765625,
-0.90869140625,
-0.94873046875,
-0.77099609375,
-0.443359375,
-0.64404296875,
-0.127685546875,
0.39306640625,
-1.09765625,
0.286376953125,
-0.55224609375,
-0.308349609375,
0.1268310546875,
-0.482421875,
0.611328125,
-0.365478515625,
0.50390625,
-0.67431640625,
0.245849609375,
0.09228515625,
1.03515625,
-0.515625,
-0.0450439453125,
-0.32568359375,
-0.4423828125,
0.11456298828125,
-0.06756591796875,
0.55810546875,
0.018035888671875,
-0.611328125,
-0.90576171875,
-0.44970703125,
-0.050537109375,
-0.50146484375,
0.1553955078125,
-0.3359375,
0.58251953125,
0.7294921875,
-0.48681640625,
0.79736328125,
0.95947265625,
-0.79736328125,
0.413330078125,
-0.03521728515625,
0.1278076171875,
-0.7900390625,
1.2275390625,
0.412353515625,
0.381103515625,
-0.82177734375,
-0.88818359375,
-0.3232421875,
0.255615234375,
0.25390625,
-0.6513671875,
-0.2047119140625,
0.42724609375,
-0.29541015625,
-0.9296875,
0.75390625,
-0.8955078125,
-0.335205078125,
-0.3837890625,
-0.264404296875,
0.75390625,
0.54638671875,
0.339111328125,
-0.53759765625,
-0.517578125,
-0.01361846923828125,
1.0234375,
0.6884765625,
-0.86181640625,
0.057373046875,
0.71728515625,
-0.10528564453125,
0.1356201171875,
0.053741455078125,
-0.28125,
-0.419677734375,
0.43408203125,
0.037750244140625,
0.78125,
0.04620361328125,
0.49951171875,
0.83251953125,
0.415771484375,
-1.0224609375,
0.3408203125,
-0.256103515625,
1.0478515625,
0.6005859375,
0.261474609375,
0.53173828125,
-0.53173828125,
-0.488525390625,
-0.8798828125,
0.472412109375,
0.43310546875,
0.5234375,
-0.59619140625,
0.59228515625,
0.452880859375,
-0.29443359375,
0.456787109375,
-0.95458984375,
0.34130859375,
0.95556640625,
-0.256591796875,
1.0400390625,
-0.59619140625,
0.3115234375,
0.01904296875,
0.29345703125,
0.546875,
0.6826171875,
0.23583984375,
-0.362548828125,
-0.25830078125,
-0.423583984375,
-0.40283203125,
0.2379150390625,
-0.417724609375,
0.34375,
-0.0836181640625,
-0.432373046875,
-0.77392578125,
0.072021484375,
1.2138671875,
0.83935546875,
0.038055419921875,
0.1920166015625,
0.17626953125,
0.186767578125,
0.86328125,
-0.303466796875,
0.1258544921875,
-0.70263671875,
1.0439453125,
0.269775390625,
-0.236083984375,
-0.1435546875,
-0.2205810546875,
-0.10693359375,
0.380859375,
0.1427001953125,
-0.06005859375,
-1.271484375,
0.219482421875,
0.1112060546875,
0.57080078125,
-0.65625,
-0.10162353515625,
-0.210205078125,
0.58740234375,
0.1829833984375,
-0.79052734375,
-0.0869140625,
-1.0625,
0.76416015625,
0.334228515625,
0.093505859375,
-0.495361328125,
-0.253173828125,
-0.78173828125,
-0.74072265625,
0.453369140625,
0.75537109375,
-0.26123046875,
0.12115478515625,
-1.1025390625,
0.81396484375,
0.27880859375,
-0.2841796875,
0.0885009765625,
-0.1519775390625,
0.54296875,
0.25341796875,
0.6337890625,
-0.7529296875,
-0.73681640625,
0.015716552734375,
-1.2646484375,
0.6875,
-0.521484375,
0.53955078125,
0.01416015625,
-0.267333984375,
-0.05145263671875,
0.284423828125,
-0.320068359375,
0.50537109375,
-0.4462890625,
0.0177001953125,
-0.6953125,
-0.83544921875,
0.56982421875,
-0.43505859375,
-0.45361328125,
0.80615234375,
-0.0965576171875,
-0.2440185546875,
0.177001953125,
0.331298828125,
-0.43994140625,
0.2347412109375,
-0.5361328125,
0.578125,
-0.34521484375,
-0.80517578125,
-0.234619140625,
-0.350341796875,
0.7080078125,
0.074951171875,
-0.4951171875,
-0.05975341796875,
-0.9482421875,
-0.1180419921875,
0.029022216796875,
-0.7060546875,
0.223876953125,
0.324462890625,
-0.2705078125,
-0.12115478515625,
-0.0621337890625,
-0.173583984375,
-0.450439453125,
-0.469482421875,
-0.44189453125,
0.28076171875,
0.362548828125,
0.84375,
0.126708984375,
-0.274169921875,
-0.1502685546875,
0.0214996337890625,
-0.2216796875,
-0.7451171875,
-0.2108154296875,
-0.259033203125,
-0.19287109375,
-0.55029296875,
0.422607421875,
0.01580810546875,
0.391845703125,
0.81982421875,
0.1522216796875,
0.400146484375,
0.371826171875,
-0.39501953125,
0.9775390625,
0.295166015625,
-1.171875,
-0.85107421875,
0.58154296875,
0.206787109375,
0.27392578125,
0.10064697265625,
-1.0595703125,
-0.54541015625,
-0.91748046875,
0.6298828125,
-0.6591796875,
0.011993408203125,
-1.2197265625,
-0.646484375,
-0.333251953125,
0.4248046875,
-0.055908203125,
-0.2117919921875,
0.3125,
-1.03125,
0.2412109375,
-0.68212890625,
-0.375,
-0.85205078125,
-1.041015625,
-0.2646484375,
0.79931640625,
0.57373046875,
0.474609375,
0.1920166015625,
-0.322021484375,
0.3984375,
-0.409912109375,
-0.71923828125,
-0.365966796875,
-0.37255859375,
-0.0215301513671875,
-0.310302734375,
-0.11328125,
-0.765625,
0.94091796875,
-0.685546875,
0.406494140625,
0.06939697265625,
-0.42822265625,
-0.09942626953125,
-0.50439453125,
1.0908203125,
-0.38623046875,
-0.075927734375,
-0.37744140625,
0.701171875,
0.43505859375,
-0.054931640625,
-0.282470703125,
-0.36376953125,
-0.51220703125,
-1.0537109375,
0.544921875,
-0.6162109375,
0.1988525390625,
-0.85546875,
-0.089111328125,
0.97412109375,
-0.448974609375,
0.314697265625,
1.0146484375,
-0.040130615234375,
0.38427734375,
-0.572265625,
0.83642578125,
0.342041015625,
-0.6650390625,
0.19580078125,
0.06427001953125,
-0.76416015625,
0.2213134765625,
-0.50732421875,
-0.9638671875,
-0.619140625,
0.446044921875,
1.39453125,
-0.12939453125,
0.88720703125,
-0.1806640625,
-1.181640625,
-0.783203125,
0.7939453125,
0.0004870891571044922,
0.52734375,
0.98388671875,
-0.54443359375,
-0.350830078125,
0.1116943359375,
-0.06298828125,
-0.51806640625,
-0.1568603515625,
1.1630859375,
-0.7783203125,
-0.73388671875,
0.654296875,
0.69677734375,
-0.984375,
-0.91650390625,
-0.1495361328125,
-0.1309814453125,
-0.333740234375,
-0.595703125,
0.36279296875,
0.7783203125,
-0.67626953125,
0.054168701171875,
0.11151123046875,
-0.1983642578125,
0.6904296875,
-0.0136871337890625,
0.2479248046875,
-0.572265625,
0.422607421875,
0.27783203125,
-0.5205078125,
-0.513671875,
-1.072265625,
-0.1964111328125,
-0.098876953125,
0.2401123046875,
0.77197265625,
-0.248291015625,
0.0225830078125,
0.488525390625,
-0.077392578125,
0.7099609375,
-0.419677734375,
-0.1893310546875,
0.26513671875,
-0.44140625,
-0.5439453125,
0.07171630859375,
0.287109375,
-0.0677490234375,
0.587890625,
-0.60986328125,
-0.33984375,
0.55712890625,
0.4658203125,
-0.55224609375,
-0.53515625,
-0.314208984375,
-1.23046875,
-0.60986328125,
-0.7958984375,
-0.7490234375,
-0.2017822265625,
0.476806640625,
0.25146484375,
-0.81298828125,
0.2288818359375,
0.53173828125,
-0.82470703125,
0.76806640625,
-0.317138671875,
0.37939453125,
-0.385498046875,
-0.255615234375,
-0.70263671875,
0.27587890625,
-0.6083984375,
-0.2493896484375,
-0.09576416015625,
0.73046875,
-0.367431640625,
0.37353515625,
-0.09649658203125,
0.2919921875,
-0.5322265625,
-0.681640625,
-0.2264404296875,
0.1055908203125,
-0.27685546875,
1.0791015625,
0.66455078125,
0.50048828125,
0.297119140625,
-0.045928955078125,
-0.2061767578125,
-0.5029296875,
0.63671875,
0.63037109375,
-0.2216796875,
-0.266357421875,
-0.1795654296875,
0.2000732421875,
-0.859375,
0.4853515625,
-0.461181640625,
-0.000522613525390625,
0.112548828125,
-0.398681640625,
0.4208984375,
1.3427734375,
-0.486572265625,
0.208984375,
-0.09307861328125,
-0.1331787109375,
0.35791015625,
0.1444091796875,
0.214599609375,
0.43896484375,
-0.1832275390625,
-0.1708984375,
-0.161376953125,
0.357666015625,
0.2384033203125,
0.1329345703125,
-0.2474365234375,
-0.72900390625,
-0.88720703125,
-0.50048828125,
0.10333251953125,
0.1903076171875,
0.25927734375,
-0.63916015625,
-0.1080322265625,
0.315185546875,
-0.7626953125,
-0.10205078125,
-1.2080078125,
-1.2392578125,
0.237060546875,
0.0762939453125,
-0.89111328125,
-0.235595703125,
-0.328369140625,
-0.2744140625,
-0.13623046875,
0.53759765625,
-0.484619140625,
0.440673828125,
0.05792236328125,
0.462646484375,
-0.03253173828125,
-0.2164306640625,
0.274658203125,
0.5625,
-0.650390625,
-0.75537109375,
0.1873779296875,
0.77587890625,
0.1646728515625,
-0.1875,
-0.57080078125,
0.5654296875,
0.2467041015625,
0.12744140625,
-0.1890869140625,
0.140625,
-0.1356201171875,
0.63330078125,
-1.1044921875,
-0.1019287109375,
-0.1878662109375,
0.2271728515625,
0.07470703125,
-0.2381591796875,
-0.47802734375,
0.92041015625,
0.5966796875,
-0.44873046875,
0.4521484375,
0.357177734375,
0.2225341796875,
-0.152099609375,
-0.10980224609375,
-0.1646728515625,
0.260498046875,
0.64013671875,
0.6923828125,
-0.314453125,
0.322509765625,
0.483154296875,
-0.058746337890625,
-0.50390625,
0.2027587890625,
0.2293701171875,
0.1689453125,
0.047271728515625,
-0.34521484375,
-0.461181640625,
-0.18310546875,
-0.78515625,
0.2017822265625,
-0.650390625,
-0.0225067138671875,
0.0406494140625,
-0.826171875,
0.98681640625,
-0.29541015625,
0.055206298828125,
0.1783447265625,
-0.7275390625,
0.225341796875,
0.56005859375,
-0.1285400390625,
-0.265625,
0.798828125,
0.861328125,
0.90966796875,
0.71875,
0.402099609375,
0.479736328125,
-0.630859375,
0.07061767578125,
0.2244873046875,
0.03729248046875,
-0.57958984375,
-0.48876953125,
-0.80419921875,
0.572265625,
-0.422119140625,
-0.2362060546875,
0.462158203125,
-0.72412109375,
-0.030303955078125,
0.1026611328125,
1.1044921875,
-0.48486328125,
0.482421875,
0.71142578125,
-0.430419921875,
-0.783203125,
1.0888671875,
-0.3583984375,
0.177978515625,
0.1614990234375,
0.75048828125,
0.1407470703125,
1.33984375,
0.75,
-0.556640625,
0.2705078125,
0.8359375,
-0.560546875,
-0.8232421875,
-0.9921875,
-0.25244140625,
-0.1363525390625,
-0.4736328125,
-0.14697265625,
-0.0286407470703125,
0.56884765625,
0.1295166015625,
-0.5244140625,
-0.004024505615234375,
0.280029296875,
-0.8017578125,
0.316162109375,
0.265625,
0.320068359375,
0.2249755859375,
-0.1639404296875,
0.150390625,
-0.7978515625,
0.021942138671875,
-0.5537109375,
0.4033203125,
-1.087890625,
-0.25,
-0.93017578125,
-0.7958984375,
0.035736083984375,
-0.5419921875,
-0.421142578125,
-0.95458984375,
0.342041015625,
0.55224609375,
0.45703125,
0.3505859375,
-0.07733154296875,
0.4921875,
0.96923828125,
0.61865234375,
0.0189666748046875,
0.6708984375,
0.426025390625,
0.0198516845703125,
0.02294921875,
-0.1378173828125,
0.50341796875,
-0.171142578125,
0.349365234375,
-0.2459716796875,
0.212158203125,
-1.0078125,
-1.33984375,
0.21337890625,
0.43701171875,
0.2861328125,
-0.384521484375,
-0.66943359375,
-0.2449951171875,
-0.91552734375,
-0.01428985595703125,
-0.8955078125,
0.63818359375,
-0.455078125,
0.034454345703125,
-0.1837158203125,
-1.021484375,
4.32421875,
1.14453125,
1.21875,
0.1807861328125,
0.1875,
1.046875,
0.0024662017822265625,
-0.44140625,
-0.55615234375,
-0.27099609375,
0.8115234375,
-0.482666015625,
0.253662109375,
0.802734375,
0.476806640625,
0.474853515625,
-0.1419677734375,
0.0828857421875,
0.05718994140625,
-0.923828125,
-0.931640625,
0.21875,
-0.1485595703125,
0.60107421875,
-0.1082763671875,
0.4443359375,
0.482666015625,
-0.669921875,
-0.311279296875,
-0.81689453125,
0.272705078125,
-0.442626953125,
0.578125,
-0.140625,
0.06939697265625,
0.72998046875,
0.320556640625,
-0.3310546875,
-0.08172607421875,
0.12493896484375,
-0.06536865234375,
-0.0909423828125,
0.30810546875,
-0.85546875,
-0.01470184326171875,
0.2083740234375,
-0.775390625,
0.52783203125,
0.12384033203125,
-1.2060546875,
0.8232421875,
-0.340576171875,
0.404541015625,
-0.57421875,
-0.67529296875,
0.2122802734375,
0.1474609375,
-0.17822265625,
0.012847900390625,
0.53759765625,
0.2364501953125,
0.386474609375,
0.0654296875,
0.379150390625,
-1.115234375,
0.65380859375,
0.0826416015625,
0.396240234375,
-0.75439453125,
0.09979248046875,
-0.00756072998046875,
-0.65087890625,
-0.375,
-0.36083984375,
0.62451171875,
0.3671875,
-0.095947265625,
0.464599609375,
-0.00852203369140625,
-0.37158203125,
0.133544921875,
-0.244384765625,
-0.09539794921875,
-0.6455078125,
0.60400390625,
1.353515625,
-0.63427734375,
-0.34375,
-0.1685791015625,
0.41015625,
0.53173828125,
0.446533203125,
0.32958984375,
-0.74072265625,
-0.08734130859375
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
You are given a string s consisting of lowercase Latin letters. Let the length of s be |s|. You may perform several operations on this string.
In one operation, you can choose some index i and remove the i-th character of s (s_i) if at least one of its adjacent characters is the previous letter in the Latin alphabet for s_i. For example, the previous letter for b is a, the previous letter for s is r, the letter a has no previous letters. Note that after each removal the length of the string decreases by one. So, the index i should satisfy the condition 1 ≤ i ≤ |s| during each operation.
For the character s_i adjacent characters are s_{i-1} and s_{i+1}. The first and the last characters of s both have only one adjacent character (unless |s| = 1).
Consider the following example. Let s= bacabcab.
1. During the first move, you can remove the first character s_1= b because s_2= a. Then the string becomes s= acabcab.
2. During the second move, you can remove the fifth character s_5= c because s_4= b. Then the string becomes s= acabab.
3. During the third move, you can remove the sixth character s_6='b' because s_5= a. Then the string becomes s= acaba.
4. During the fourth move, the only character you can remove is s_4= b, because s_3= a (or s_5= a). The string becomes s= acaa and you cannot do anything with it.
Your task is to find the maximum possible number of characters you can remove if you choose the sequence of operations optimally.
Input
The first line of the input contains one integer |s| (1 ≤ |s| ≤ 100) — the length of s.
The second line of the input contains one string s consisting of |s| lowercase Latin letters.
Output
Print one integer — the maximum possible number of characters you can remove if you choose the sequence of moves optimally.
Examples
Input
8
bacabcab
Output
4
Input
4
bcda
Output
3
Input
6
abbbbb
Output
5
Note
The first example is described in the problem statement. Note that the sequence of moves provided in the statement is not the only, but it can be shown that the maximum possible answer to this test is 4.
In the second example, you can remove all but one character of s. The only possible answer follows.
1. During the first move, remove the third character s_3= d, s becomes bca.
2. During the second move, remove the second character s_2= c, s becomes ba.
3. And during the third move, remove the first character s_1= b, s becomes a.
Tags: brute force, constructive algorithms, greedy, strings
Correct Solution:
```
# -*- coding: utf-8 -*-
"""
Created on Tue Mar 3 19:29:45 2020
@author: hp
"""
n = int(input())
s = input()
count= 0
lst=[]
for i in s:
lst.append(ord(i))
for j in range(123,97,-1):
for k in range(n):
for i in range(len(lst)-1):
if lst[i]==lst[i+1]-1:
if(lst[i+1]==j):
lst.pop(i+1)
count+=1
break
elif(lst[i]-1==lst[i+1]):
if(lst[i]==j):
lst.pop(i)
count+=1
break
print(count)
```
| 10,082 | [
0.1654052734375,
0.1585693359375,
0.1649169921875,
0.47802734375,
-0.45556640625,
-0.07977294921875,
-0.31298828125,
0.010345458984375,
0.1448974609375,
0.87548828125,
0.81201171875,
-0.017852783203125,
-0.65380859375,
-1.1171875,
-0.50634765625,
0.039947509765625,
-0.705078125,
-0.65380859375,
-0.445068359375,
-0.04345703125,
0.1533203125,
-0.0091400146484375,
-1.2978515625,
-0.1492919921875,
-0.0633544921875,
0.8876953125,
0.697265625,
-0.285400390625,
1.111328125,
1.3310546875,
-0.11114501953125,
-0.78515625,
0.9130859375,
-1.005859375,
-0.438232421875,
-0.337646484375,
0.79150390625,
-0.47900390625,
0.024505615234375,
-0.505859375,
0.34423828125,
-0.5859375,
0.564453125,
-0.67919921875,
-1.0908203125,
-0.032073974609375,
-0.332275390625,
-0.1868896484375,
-0.56103515625,
-0.470703125,
-0.1077880859375,
-0.283203125,
0.65478515625,
-0.05987548828125,
-0.005489349365234375,
0.1934814453125,
0.216552734375,
-0.2763671875,
-0.363525390625,
0.456298828125,
0.1920166015625,
0.1077880859375,
0.07843017578125,
-0.49609375,
-0.02777099609375,
0.343017578125,
-0.0567626953125,
0.1141357421875,
0.234375,
-0.7626953125,
-0.218994140625,
0.255859375,
-0.407470703125,
-0.701171875,
-0.19189453125,
0.05535888671875,
0.36279296875,
-0.361328125,
-0.65869140625,
0.708984375,
-0.11376953125,
0.92041015625,
0.414794921875,
0.1427001953125,
-0.61865234375,
-0.478271484375,
-0.07122802734375,
0.197265625,
-0.1802978515625,
-0.284423828125,
-0.3193359375,
0.9130859375,
-0.69140625,
-0.048553466796875,
0.3251953125,
0.94140625,
-0.49658203125,
0.3525390625,
0.576171875,
-0.105712890625,
0.65087890625,
0.7451171875,
-0.4150390625,
0.912109375,
-0.458740234375,
0.046905517578125,
0.2139892578125,
-0.219482421875,
-0.05255126953125,
-0.313232421875,
-0.390380859375,
-0.0762939453125,
0.311767578125,
0.2724609375,
-0.58251953125,
0.9404296875,
-0.051300048828125,
0.54443359375,
-0.90087890625,
0.41845703125,
0.475341796875,
0.26513671875,
0.80517578125,
-0.193603515625,
-0.249267578125,
-0.44189453125,
-0.65869140625,
0.80859375,
-0.7841796875,
0.1673583984375,
0.126220703125,
-0.0009303092956542969,
-0.62744140625,
0.359375,
-0.232421875,
1.091796875,
-0.368408203125,
0.396484375,
0.70703125,
-0.48095703125,
0.76611328125,
-0.01023101806640625,
-0.239013671875,
1.41015625,
0.4619140625,
0.0958251953125,
0.7939453125,
0.420166015625,
-0.5625,
0.5078125,
-1.1298828125,
0.67578125,
0.2255859375,
0.2958984375,
-0.43701171875,
0.287353515625,
-0.277099609375,
0.640625,
0.09857177734375,
0.292724609375,
-0.63720703125,
0.038665771484375,
-0.358154296875,
0.5087890625,
-0.1038818359375,
0.85595703125,
-0.42919921875,
-0.384521484375,
-0.0005307197570800781,
-0.36328125,
0.13525390625,
-0.405029296875,
-0.173828125,
0.56494140625,
0.47412109375,
0.98779296875,
0.857421875,
-0.2998046875,
0.5400390625,
0.51513671875,
-0.499755859375,
0.3427734375,
0.3291015625,
0.3916015625,
0.53662109375,
0.1361083984375,
-0.11834716796875,
-0.1458740234375,
-0.6298828125,
-0.421142578125,
-0.0007243156433105469,
0.6298828125,
-0.268310546875,
0.1435546875,
0.25341796875,
-0.2093505859375,
-0.97607421875,
0.062347412109375,
0.0462646484375,
-1.166015625,
-0.383544921875,
0.408447265625,
0.053070068359375,
0.53955078125,
-0.736328125,
-0.61083984375,
0.36328125,
1.15625,
-0.5703125,
0.3115234375,
0.853515625,
-0.016815185546875,
-0.09539794921875,
0.256103515625,
0.026458740234375,
-0.2064208984375,
-0.55712890625,
0.59716796875,
-0.29248046875,
0.31787109375,
0.10968017578125,
0.58837890625,
-0.09912109375,
0.873046875,
-0.15185546875,
-0.321044921875,
0.302978515625,
1.20703125,
0.10247802734375,
0.356689453125,
0.39453125,
0.783203125,
0.56591796875,
0.4482421875,
0.7255859375,
-0.09716796875,
0.70068359375,
1.076171875,
-0.230712890625,
0.2015380859375,
0.276611328125,
0.69140625,
0.71240234375,
0.5869140625,
0.11651611328125,
0.56982421875,
-0.042327880859375,
0.1439208984375,
-0.396484375,
0.1353759765625,
-0.3203125,
0.363525390625,
0.170166015625,
0.344970703125,
-0.2425537109375,
-0.1326904296875,
0.251708984375,
0.60986328125,
-1.05859375,
-0.34716796875,
-0.287841796875,
0.155029296875,
0.396240234375,
0.2490234375,
0.5029296875,
0.47998046875,
0.955078125,
0.29296875,
-0.089111328125,
-0.4384765625,
-0.90869140625,
-0.94873046875,
-0.77099609375,
-0.443359375,
-0.64404296875,
-0.127685546875,
0.39306640625,
-1.09765625,
0.286376953125,
-0.55224609375,
-0.308349609375,
0.1268310546875,
-0.482421875,
0.611328125,
-0.365478515625,
0.50390625,
-0.67431640625,
0.245849609375,
0.09228515625,
1.03515625,
-0.515625,
-0.0450439453125,
-0.32568359375,
-0.4423828125,
0.11456298828125,
-0.06756591796875,
0.55810546875,
0.018035888671875,
-0.611328125,
-0.90576171875,
-0.44970703125,
-0.050537109375,
-0.50146484375,
0.1553955078125,
-0.3359375,
0.58251953125,
0.7294921875,
-0.48681640625,
0.79736328125,
0.95947265625,
-0.79736328125,
0.413330078125,
-0.03521728515625,
0.1278076171875,
-0.7900390625,
1.2275390625,
0.412353515625,
0.381103515625,
-0.82177734375,
-0.88818359375,
-0.3232421875,
0.255615234375,
0.25390625,
-0.6513671875,
-0.2047119140625,
0.42724609375,
-0.29541015625,
-0.9296875,
0.75390625,
-0.8955078125,
-0.335205078125,
-0.3837890625,
-0.264404296875,
0.75390625,
0.54638671875,
0.339111328125,
-0.53759765625,
-0.517578125,
-0.01361846923828125,
1.0234375,
0.6884765625,
-0.86181640625,
0.057373046875,
0.71728515625,
-0.10528564453125,
0.1356201171875,
0.053741455078125,
-0.28125,
-0.419677734375,
0.43408203125,
0.037750244140625,
0.78125,
0.04620361328125,
0.49951171875,
0.83251953125,
0.415771484375,
-1.0224609375,
0.3408203125,
-0.256103515625,
1.0478515625,
0.6005859375,
0.261474609375,
0.53173828125,
-0.53173828125,
-0.488525390625,
-0.8798828125,
0.472412109375,
0.43310546875,
0.5234375,
-0.59619140625,
0.59228515625,
0.452880859375,
-0.29443359375,
0.456787109375,
-0.95458984375,
0.34130859375,
0.95556640625,
-0.256591796875,
1.0400390625,
-0.59619140625,
0.3115234375,
0.01904296875,
0.29345703125,
0.546875,
0.6826171875,
0.23583984375,
-0.362548828125,
-0.25830078125,
-0.423583984375,
-0.40283203125,
0.2379150390625,
-0.417724609375,
0.34375,
-0.0836181640625,
-0.432373046875,
-0.77392578125,
0.072021484375,
1.2138671875,
0.83935546875,
0.038055419921875,
0.1920166015625,
0.17626953125,
0.186767578125,
0.86328125,
-0.303466796875,
0.1258544921875,
-0.70263671875,
1.0439453125,
0.269775390625,
-0.236083984375,
-0.1435546875,
-0.2205810546875,
-0.10693359375,
0.380859375,
0.1427001953125,
-0.06005859375,
-1.271484375,
0.219482421875,
0.1112060546875,
0.57080078125,
-0.65625,
-0.10162353515625,
-0.210205078125,
0.58740234375,
0.1829833984375,
-0.79052734375,
-0.0869140625,
-1.0625,
0.76416015625,
0.334228515625,
0.093505859375,
-0.495361328125,
-0.253173828125,
-0.78173828125,
-0.74072265625,
0.453369140625,
0.75537109375,
-0.26123046875,
0.12115478515625,
-1.1025390625,
0.81396484375,
0.27880859375,
-0.2841796875,
0.0885009765625,
-0.1519775390625,
0.54296875,
0.25341796875,
0.6337890625,
-0.7529296875,
-0.73681640625,
0.015716552734375,
-1.2646484375,
0.6875,
-0.521484375,
0.53955078125,
0.01416015625,
-0.267333984375,
-0.05145263671875,
0.284423828125,
-0.320068359375,
0.50537109375,
-0.4462890625,
0.0177001953125,
-0.6953125,
-0.83544921875,
0.56982421875,
-0.43505859375,
-0.45361328125,
0.80615234375,
-0.0965576171875,
-0.2440185546875,
0.177001953125,
0.331298828125,
-0.43994140625,
0.2347412109375,
-0.5361328125,
0.578125,
-0.34521484375,
-0.80517578125,
-0.234619140625,
-0.350341796875,
0.7080078125,
0.074951171875,
-0.4951171875,
-0.05975341796875,
-0.9482421875,
-0.1180419921875,
0.029022216796875,
-0.7060546875,
0.223876953125,
0.324462890625,
-0.2705078125,
-0.12115478515625,
-0.0621337890625,
-0.173583984375,
-0.450439453125,
-0.469482421875,
-0.44189453125,
0.28076171875,
0.362548828125,
0.84375,
0.126708984375,
-0.274169921875,
-0.1502685546875,
0.0214996337890625,
-0.2216796875,
-0.7451171875,
-0.2108154296875,
-0.259033203125,
-0.19287109375,
-0.55029296875,
0.422607421875,
0.01580810546875,
0.391845703125,
0.81982421875,
0.1522216796875,
0.400146484375,
0.371826171875,
-0.39501953125,
0.9775390625,
0.295166015625,
-1.171875,
-0.85107421875,
0.58154296875,
0.206787109375,
0.27392578125,
0.10064697265625,
-1.0595703125,
-0.54541015625,
-0.91748046875,
0.6298828125,
-0.6591796875,
0.011993408203125,
-1.2197265625,
-0.646484375,
-0.333251953125,
0.4248046875,
-0.055908203125,
-0.2117919921875,
0.3125,
-1.03125,
0.2412109375,
-0.68212890625,
-0.375,
-0.85205078125,
-1.041015625,
-0.2646484375,
0.79931640625,
0.57373046875,
0.474609375,
0.1920166015625,
-0.322021484375,
0.3984375,
-0.409912109375,
-0.71923828125,
-0.365966796875,
-0.37255859375,
-0.0215301513671875,
-0.310302734375,
-0.11328125,
-0.765625,
0.94091796875,
-0.685546875,
0.406494140625,
0.06939697265625,
-0.42822265625,
-0.09942626953125,
-0.50439453125,
1.0908203125,
-0.38623046875,
-0.075927734375,
-0.37744140625,
0.701171875,
0.43505859375,
-0.054931640625,
-0.282470703125,
-0.36376953125,
-0.51220703125,
-1.0537109375,
0.544921875,
-0.6162109375,
0.1988525390625,
-0.85546875,
-0.089111328125,
0.97412109375,
-0.448974609375,
0.314697265625,
1.0146484375,
-0.040130615234375,
0.38427734375,
-0.572265625,
0.83642578125,
0.342041015625,
-0.6650390625,
0.19580078125,
0.06427001953125,
-0.76416015625,
0.2213134765625,
-0.50732421875,
-0.9638671875,
-0.619140625,
0.446044921875,
1.39453125,
-0.12939453125,
0.88720703125,
-0.1806640625,
-1.181640625,
-0.783203125,
0.7939453125,
0.0004870891571044922,
0.52734375,
0.98388671875,
-0.54443359375,
-0.350830078125,
0.1116943359375,
-0.06298828125,
-0.51806640625,
-0.1568603515625,
1.1630859375,
-0.7783203125,
-0.73388671875,
0.654296875,
0.69677734375,
-0.984375,
-0.91650390625,
-0.1495361328125,
-0.1309814453125,
-0.333740234375,
-0.595703125,
0.36279296875,
0.7783203125,
-0.67626953125,
0.054168701171875,
0.11151123046875,
-0.1983642578125,
0.6904296875,
-0.0136871337890625,
0.2479248046875,
-0.572265625,
0.422607421875,
0.27783203125,
-0.5205078125,
-0.513671875,
-1.072265625,
-0.1964111328125,
-0.098876953125,
0.2401123046875,
0.77197265625,
-0.248291015625,
0.0225830078125,
0.488525390625,
-0.077392578125,
0.7099609375,
-0.419677734375,
-0.1893310546875,
0.26513671875,
-0.44140625,
-0.5439453125,
0.07171630859375,
0.287109375,
-0.0677490234375,
0.587890625,
-0.60986328125,
-0.33984375,
0.55712890625,
0.4658203125,
-0.55224609375,
-0.53515625,
-0.314208984375,
-1.23046875,
-0.60986328125,
-0.7958984375,
-0.7490234375,
-0.2017822265625,
0.476806640625,
0.25146484375,
-0.81298828125,
0.2288818359375,
0.53173828125,
-0.82470703125,
0.76806640625,
-0.317138671875,
0.37939453125,
-0.385498046875,
-0.255615234375,
-0.70263671875,
0.27587890625,
-0.6083984375,
-0.2493896484375,
-0.09576416015625,
0.73046875,
-0.367431640625,
0.37353515625,
-0.09649658203125,
0.2919921875,
-0.5322265625,
-0.681640625,
-0.2264404296875,
0.1055908203125,
-0.27685546875,
1.0791015625,
0.66455078125,
0.50048828125,
0.297119140625,
-0.045928955078125,
-0.2061767578125,
-0.5029296875,
0.63671875,
0.63037109375,
-0.2216796875,
-0.266357421875,
-0.1795654296875,
0.2000732421875,
-0.859375,
0.4853515625,
-0.461181640625,
-0.000522613525390625,
0.112548828125,
-0.398681640625,
0.4208984375,
1.3427734375,
-0.486572265625,
0.208984375,
-0.09307861328125,
-0.1331787109375,
0.35791015625,
0.1444091796875,
0.214599609375,
0.43896484375,
-0.1832275390625,
-0.1708984375,
-0.161376953125,
0.357666015625,
0.2384033203125,
0.1329345703125,
-0.2474365234375,
-0.72900390625,
-0.88720703125,
-0.50048828125,
0.10333251953125,
0.1903076171875,
0.25927734375,
-0.63916015625,
-0.1080322265625,
0.315185546875,
-0.7626953125,
-0.10205078125,
-1.2080078125,
-1.2392578125,
0.237060546875,
0.0762939453125,
-0.89111328125,
-0.235595703125,
-0.328369140625,
-0.2744140625,
-0.13623046875,
0.53759765625,
-0.484619140625,
0.440673828125,
0.05792236328125,
0.462646484375,
-0.03253173828125,
-0.2164306640625,
0.274658203125,
0.5625,
-0.650390625,
-0.75537109375,
0.1873779296875,
0.77587890625,
0.1646728515625,
-0.1875,
-0.57080078125,
0.5654296875,
0.2467041015625,
0.12744140625,
-0.1890869140625,
0.140625,
-0.1356201171875,
0.63330078125,
-1.1044921875,
-0.1019287109375,
-0.1878662109375,
0.2271728515625,
0.07470703125,
-0.2381591796875,
-0.47802734375,
0.92041015625,
0.5966796875,
-0.44873046875,
0.4521484375,
0.357177734375,
0.2225341796875,
-0.152099609375,
-0.10980224609375,
-0.1646728515625,
0.260498046875,
0.64013671875,
0.6923828125,
-0.314453125,
0.322509765625,
0.483154296875,
-0.058746337890625,
-0.50390625,
0.2027587890625,
0.2293701171875,
0.1689453125,
0.047271728515625,
-0.34521484375,
-0.461181640625,
-0.18310546875,
-0.78515625,
0.2017822265625,
-0.650390625,
-0.0225067138671875,
0.0406494140625,
-0.826171875,
0.98681640625,
-0.29541015625,
0.055206298828125,
0.1783447265625,
-0.7275390625,
0.225341796875,
0.56005859375,
-0.1285400390625,
-0.265625,
0.798828125,
0.861328125,
0.90966796875,
0.71875,
0.402099609375,
0.479736328125,
-0.630859375,
0.07061767578125,
0.2244873046875,
0.03729248046875,
-0.57958984375,
-0.48876953125,
-0.80419921875,
0.572265625,
-0.422119140625,
-0.2362060546875,
0.462158203125,
-0.72412109375,
-0.030303955078125,
0.1026611328125,
1.1044921875,
-0.48486328125,
0.482421875,
0.71142578125,
-0.430419921875,
-0.783203125,
1.0888671875,
-0.3583984375,
0.177978515625,
0.1614990234375,
0.75048828125,
0.1407470703125,
1.33984375,
0.75,
-0.556640625,
0.2705078125,
0.8359375,
-0.560546875,
-0.8232421875,
-0.9921875,
-0.25244140625,
-0.1363525390625,
-0.4736328125,
-0.14697265625,
-0.0286407470703125,
0.56884765625,
0.1295166015625,
-0.5244140625,
-0.004024505615234375,
0.280029296875,
-0.8017578125,
0.316162109375,
0.265625,
0.320068359375,
0.2249755859375,
-0.1639404296875,
0.150390625,
-0.7978515625,
0.021942138671875,
-0.5537109375,
0.4033203125,
-1.087890625,
-0.25,
-0.93017578125,
-0.7958984375,
0.035736083984375,
-0.5419921875,
-0.421142578125,
-0.95458984375,
0.342041015625,
0.55224609375,
0.45703125,
0.3505859375,
-0.07733154296875,
0.4921875,
0.96923828125,
0.61865234375,
0.0189666748046875,
0.6708984375,
0.426025390625,
0.0198516845703125,
0.02294921875,
-0.1378173828125,
0.50341796875,
-0.171142578125,
0.349365234375,
-0.2459716796875,
0.212158203125,
-1.0078125,
-1.33984375,
0.21337890625,
0.43701171875,
0.2861328125,
-0.384521484375,
-0.66943359375,
-0.2449951171875,
-0.91552734375,
-0.01428985595703125,
-0.8955078125,
0.63818359375,
-0.455078125,
0.034454345703125,
-0.1837158203125,
-1.021484375,
4.32421875,
1.14453125,
1.21875,
0.1807861328125,
0.1875,
1.046875,
0.0024662017822265625,
-0.44140625,
-0.55615234375,
-0.27099609375,
0.8115234375,
-0.482666015625,
0.253662109375,
0.802734375,
0.476806640625,
0.474853515625,
-0.1419677734375,
0.0828857421875,
0.05718994140625,
-0.923828125,
-0.931640625,
0.21875,
-0.1485595703125,
0.60107421875,
-0.1082763671875,
0.4443359375,
0.482666015625,
-0.669921875,
-0.311279296875,
-0.81689453125,
0.272705078125,
-0.442626953125,
0.578125,
-0.140625,
0.06939697265625,
0.72998046875,
0.320556640625,
-0.3310546875,
-0.08172607421875,
0.12493896484375,
-0.06536865234375,
-0.0909423828125,
0.30810546875,
-0.85546875,
-0.01470184326171875,
0.2083740234375,
-0.775390625,
0.52783203125,
0.12384033203125,
-1.2060546875,
0.8232421875,
-0.340576171875,
0.404541015625,
-0.57421875,
-0.67529296875,
0.2122802734375,
0.1474609375,
-0.17822265625,
0.012847900390625,
0.53759765625,
0.2364501953125,
0.386474609375,
0.0654296875,
0.379150390625,
-1.115234375,
0.65380859375,
0.0826416015625,
0.396240234375,
-0.75439453125,
0.09979248046875,
-0.00756072998046875,
-0.65087890625,
-0.375,
-0.36083984375,
0.62451171875,
0.3671875,
-0.095947265625,
0.464599609375,
-0.00852203369140625,
-0.37158203125,
0.133544921875,
-0.244384765625,
-0.09539794921875,
-0.6455078125,
0.60400390625,
1.353515625,
-0.63427734375,
-0.34375,
-0.1685791015625,
0.41015625,
0.53173828125,
0.446533203125,
0.32958984375,
-0.74072265625,
-0.08734130859375
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
You are given a string s consisting of lowercase Latin letters. Let the length of s be |s|. You may perform several operations on this string.
In one operation, you can choose some index i and remove the i-th character of s (s_i) if at least one of its adjacent characters is the previous letter in the Latin alphabet for s_i. For example, the previous letter for b is a, the previous letter for s is r, the letter a has no previous letters. Note that after each removal the length of the string decreases by one. So, the index i should satisfy the condition 1 ≤ i ≤ |s| during each operation.
For the character s_i adjacent characters are s_{i-1} and s_{i+1}. The first and the last characters of s both have only one adjacent character (unless |s| = 1).
Consider the following example. Let s= bacabcab.
1. During the first move, you can remove the first character s_1= b because s_2= a. Then the string becomes s= acabcab.
2. During the second move, you can remove the fifth character s_5= c because s_4= b. Then the string becomes s= acabab.
3. During the third move, you can remove the sixth character s_6='b' because s_5= a. Then the string becomes s= acaba.
4. During the fourth move, the only character you can remove is s_4= b, because s_3= a (or s_5= a). The string becomes s= acaa and you cannot do anything with it.
Your task is to find the maximum possible number of characters you can remove if you choose the sequence of operations optimally.
Input
The first line of the input contains one integer |s| (1 ≤ |s| ≤ 100) — the length of s.
The second line of the input contains one string s consisting of |s| lowercase Latin letters.
Output
Print one integer — the maximum possible number of characters you can remove if you choose the sequence of moves optimally.
Examples
Input
8
bacabcab
Output
4
Input
4
bcda
Output
3
Input
6
abbbbb
Output
5
Note
The first example is described in the problem statement. Note that the sequence of moves provided in the statement is not the only, but it can be shown that the maximum possible answer to this test is 4.
In the second example, you can remove all but one character of s. The only possible answer follows.
1. During the first move, remove the third character s_3= d, s becomes bca.
2. During the second move, remove the second character s_2= c, s becomes ba.
3. And during the third move, remove the first character s_1= b, s becomes a.
Submitted Solution:
```
# import io, os
# input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline
import sys
# sys.stdin=open('input.txt','r')
# sys.stdout=open('output.txt','w')
input=sys.stdin.readline
# sys.setrecursionlimit(300010)
MOD = 1000000007
MOD2 = 998244353
ii = lambda: int(input().strip('\n'))
si = lambda: input().strip('\n')
dgl = lambda: list(map(int,input().strip('\n')))
f = lambda: map(int, input().strip('\n').split())
il = lambda: list(map(int, input().strip('\n').split()))
ls = lambda: list(input().strip('\n'))
lsi = lambda: [int(i) for i in ls()]
let = 'abcdefghijklmnopqrstuvwxyz'
for _ in range(1):
n=ii()
s=ls()
for j in reversed(let):
fg=1
while fg:
fg1=0
if len(s)>1:
for i in range(len(s)):
if s[i]==j:
if i==0 and ord(j)-ord(s[i+1])==1:
s.pop(0)
fg1=1
break
elif i==len(s)-1 and ord(j)-ord(s[i-1])==1:
s.pop(len(s)-1)
fg1=1
break
elif 0<i<len(s)-1 and (ord(j)-ord(s[i+1])==1 or ord(j)-ord(s[i-1])==1):
s.pop(i)
fg1=1
break
fg=fg1
print(n-len(s))
```
Yes
| 10,083 | [
0.2034912109375,
0.1744384765625,
0.1737060546875,
0.361572265625,
-0.4453125,
0.004779815673828125,
-0.4208984375,
-0.0103912353515625,
0.1571044921875,
0.83935546875,
0.763671875,
-0.05419921875,
-0.6025390625,
-1.1572265625,
-0.546875,
-0.0247650146484375,
-0.64306640625,
-0.69677734375,
-0.44482421875,
-0.09136962890625,
0.1368408203125,
-0.108154296875,
-1.2861328125,
-0.084228515625,
-0.0478515625,
0.77783203125,
0.6376953125,
-0.31982421875,
1.04296875,
1.2861328125,
-0.08221435546875,
-0.74072265625,
0.90673828125,
-0.8984375,
-0.34765625,
-0.476806640625,
0.75244140625,
-0.564453125,
-0.10736083984375,
-0.460693359375,
0.212646484375,
-0.49072265625,
0.473876953125,
-0.69921875,
-1.123046875,
-0.005405426025390625,
-0.29541015625,
-0.2325439453125,
-0.49365234375,
-0.489501953125,
0.0211334228515625,
-0.312255859375,
0.64013671875,
-0.09039306640625,
0.0694580078125,
0.359375,
0.14794921875,
-0.325927734375,
-0.47412109375,
0.441162109375,
0.254150390625,
0.10528564453125,
0.00856781005859375,
-0.5830078125,
-0.0770263671875,
0.2939453125,
-0.0032978057861328125,
0.06170654296875,
0.284423828125,
-0.712890625,
-0.1983642578125,
0.13916015625,
-0.448486328125,
-0.5771484375,
-0.22705078125,
0.0894775390625,
0.3662109375,
-0.35009765625,
-0.79345703125,
0.68505859375,
-0.1385498046875,
1.0205078125,
0.42626953125,
0.14111328125,
-0.60400390625,
-0.4345703125,
-0.0184478759765625,
0.1748046875,
-0.08184814453125,
-0.2548828125,
-0.322509765625,
0.8388671875,
-0.642578125,
-0.11236572265625,
0.31787109375,
0.8427734375,
-0.53662109375,
0.401611328125,
0.52197265625,
-0.0478515625,
0.65966796875,
0.67529296875,
-0.435546875,
0.94580078125,
-0.412841796875,
-0.034698486328125,
0.2137451171875,
-0.2178955078125,
-0.0299224853515625,
-0.34521484375,
-0.24560546875,
-0.184814453125,
0.2391357421875,
0.131103515625,
-0.71142578125,
0.9013671875,
-0.02740478515625,
0.498291015625,
-0.75634765625,
0.382080078125,
0.41943359375,
0.1519775390625,
0.7529296875,
-0.229248046875,
-0.1361083984375,
-0.466064453125,
-0.68310546875,
0.81005859375,
-0.76953125,
0.1263427734375,
0.1256103515625,
0.00965118408203125,
-0.62353515625,
0.259521484375,
-0.183349609375,
1.0556640625,
-0.345703125,
0.408935546875,
0.7890625,
-0.451416015625,
0.80078125,
0.016082763671875,
-0.151123046875,
1.458984375,
0.31884765625,
0.012115478515625,
0.77294921875,
0.41162109375,
-0.50341796875,
0.6025390625,
-1.0673828125,
0.66748046875,
0.2236328125,
0.2386474609375,
-0.460693359375,
0.311767578125,
-0.2154541015625,
0.55517578125,
0.1500244140625,
0.2442626953125,
-0.630859375,
0.205322265625,
-0.4248046875,
0.59228515625,
-0.1197509765625,
0.89501953125,
-0.4306640625,
-0.413330078125,
-0.0733642578125,
-0.326171875,
0.1390380859375,
-0.435791015625,
-0.0249176025390625,
0.7109375,
0.53955078125,
1.056640625,
0.81787109375,
-0.1783447265625,
0.497314453125,
0.46533203125,
-0.50537109375,
0.171630859375,
0.3203125,
0.491455078125,
0.5615234375,
0.1629638671875,
-0.0498046875,
-0.07305908203125,
-0.5751953125,
-0.5283203125,
0.040924072265625,
0.75830078125,
-0.322509765625,
0.153076171875,
0.1790771484375,
-0.232666015625,
-0.921875,
-0.1131591796875,
0.09503173828125,
-1.1220703125,
-0.415283203125,
0.376220703125,
0.0186614990234375,
0.6044921875,
-0.76708984375,
-0.65869140625,
0.306884765625,
1.185546875,
-0.465087890625,
0.257080078125,
0.81982421875,
0.15234375,
-0.1766357421875,
0.1805419921875,
0.055694580078125,
-0.166259765625,
-0.50439453125,
0.5322265625,
-0.2286376953125,
0.275390625,
0.08587646484375,
0.59814453125,
-0.1019287109375,
0.8388671875,
-0.2025146484375,
-0.26904296875,
0.257568359375,
1.2861328125,
0.064453125,
0.294189453125,
0.421875,
0.79736328125,
0.55078125,
0.59912109375,
0.74609375,
-0.0213470458984375,
0.798828125,
1.103515625,
-0.34375,
0.247314453125,
0.2470703125,
0.72021484375,
0.71142578125,
0.63818359375,
0.1551513671875,
0.51171875,
0.0308990478515625,
0.166748046875,
-0.357666015625,
0.2103271484375,
-0.3447265625,
0.419677734375,
0.07421875,
0.4697265625,
-0.222412109375,
-0.125244140625,
0.32763671875,
0.6123046875,
-1.12890625,
-0.476318359375,
-0.2171630859375,
0.120849609375,
0.398193359375,
0.28369140625,
0.50537109375,
0.361328125,
0.8046875,
0.302001953125,
-0.1148681640625,
-0.52001953125,
-0.869140625,
-1.03125,
-0.8837890625,
-0.39306640625,
-0.68603515625,
-0.17041015625,
0.23193359375,
-1.056640625,
0.2244873046875,
-0.638671875,
-0.320068359375,
0.1402587890625,
-0.413330078125,
0.66748046875,
-0.3486328125,
0.55029296875,
-0.67724609375,
0.19482421875,
0.2744140625,
1.0263671875,
-0.52001953125,
0.03741455078125,
-0.3349609375,
-0.405029296875,
0.109375,
-0.07647705078125,
0.5712890625,
0.055572509765625,
-0.67529296875,
-0.91259765625,
-0.470703125,
0.067626953125,
-0.51513671875,
0.007038116455078125,
-0.344482421875,
0.61181640625,
0.64990234375,
-0.53173828125,
0.80126953125,
0.95263671875,
-0.81689453125,
0.521484375,
-0.0113067626953125,
0.11224365234375,
-0.76806640625,
1.3525390625,
0.445556640625,
0.401123046875,
-0.7587890625,
-0.86669921875,
-0.366943359375,
0.189697265625,
0.29931640625,
-0.65673828125,
-0.2132568359375,
0.396728515625,
-0.1522216796875,
-0.90966796875,
0.7607421875,
-0.98046875,
-0.30908203125,
-0.44287109375,
-0.33740234375,
0.77099609375,
0.591796875,
0.385986328125,
-0.41943359375,
-0.54833984375,
0.04925537109375,
1.0185546875,
0.732421875,
-0.99951171875,
0.121826171875,
0.791015625,
-0.1331787109375,
0.1949462890625,
0.03985595703125,
-0.407958984375,
-0.321044921875,
0.393310546875,
-0.0174560546875,
0.84228515625,
0.03997802734375,
0.521484375,
0.7783203125,
0.400634765625,
-1.0263671875,
0.3125,
-0.33447265625,
1.013671875,
0.58837890625,
0.3828125,
0.58154296875,
-0.470458984375,
-0.5,
-0.77587890625,
0.39208984375,
0.326904296875,
0.5517578125,
-0.61962890625,
0.6015625,
0.352783203125,
-0.357177734375,
0.48779296875,
-0.955078125,
0.29443359375,
0.95263671875,
-0.286376953125,
1.0615234375,
-0.67919921875,
0.362060546875,
-0.00255584716796875,
0.258544921875,
0.482666015625,
0.59716796875,
0.271484375,
-0.404296875,
-0.2271728515625,
-0.333740234375,
-0.40087890625,
0.1695556640625,
-0.44775390625,
0.30224609375,
-0.10662841796875,
-0.486328125,
-0.830078125,
0.229736328125,
1.037109375,
0.8876953125,
0.1337890625,
0.20849609375,
0.172119140625,
0.1934814453125,
0.82373046875,
-0.2066650390625,
0.07708740234375,
-0.7373046875,
1.03125,
0.245849609375,
-0.25537109375,
-0.1492919921875,
-0.1624755859375,
-0.15234375,
0.38623046875,
0.1614990234375,
-0.07269287109375,
-1.341796875,
0.31982421875,
0.074951171875,
0.57421875,
-0.69580078125,
-0.136962890625,
-0.26708984375,
0.59716796875,
0.271240234375,
-0.845703125,
-0.0206146240234375,
-1.0869140625,
0.693359375,
0.478759765625,
0.12139892578125,
-0.455810546875,
-0.187744140625,
-0.85546875,
-0.71142578125,
0.44384765625,
0.8173828125,
-0.25732421875,
0.12005615234375,
-1.1943359375,
0.7744140625,
0.341796875,
-0.4248046875,
0.130126953125,
-0.260009765625,
0.46240234375,
0.2349853515625,
0.69287109375,
-0.7421875,
-0.7412109375,
0.0086517333984375,
-1.21484375,
0.61767578125,
-0.51416015625,
0.5537109375,
-0.0109710693359375,
-0.198486328125,
0.047210693359375,
0.375244140625,
-0.2939453125,
0.48583984375,
-0.33740234375,
0.0679931640625,
-0.80908203125,
-0.8310546875,
0.57763671875,
-0.315185546875,
-0.43017578125,
0.76513671875,
-0.156005859375,
-0.32421875,
0.181884765625,
0.322265625,
-0.48974609375,
0.362548828125,
-0.53076171875,
0.59130859375,
-0.302734375,
-0.77001953125,
-0.1866455078125,
-0.334716796875,
0.83447265625,
0.07073974609375,
-0.41064453125,
-0.216552734375,
-0.96826171875,
-0.0384521484375,
0.00223541259765625,
-0.6826171875,
0.2802734375,
0.397705078125,
-0.2386474609375,
-0.147705078125,
-0.0670166015625,
-0.2459716796875,
-0.4248046875,
-0.45849609375,
-0.447509765625,
0.3525390625,
0.346435546875,
0.8798828125,
0.1353759765625,
-0.332763671875,
-0.2193603515625,
0.08343505859375,
-0.10009765625,
-0.7880859375,
-0.244384765625,
-0.09991455078125,
-0.2138671875,
-0.53515625,
0.405517578125,
-0.021942138671875,
0.41796875,
0.88671875,
0.11553955078125,
0.4775390625,
0.364990234375,
-0.5087890625,
1.0712890625,
0.2467041015625,
-1.3310546875,
-0.85693359375,
0.469482421875,
0.259521484375,
0.387451171875,
0.171142578125,
-0.9345703125,
-0.59814453125,
-0.9853515625,
0.6630859375,
-0.64697265625,
0.007442474365234375,
-1.2666015625,
-0.6865234375,
-0.351318359375,
0.455078125,
-0.021881103515625,
-0.261474609375,
0.2392578125,
-1.14453125,
0.3212890625,
-0.7890625,
-0.306396484375,
-0.89892578125,
-0.9990234375,
-0.2213134765625,
0.89501953125,
0.60205078125,
0.46240234375,
0.10052490234375,
-0.28759765625,
0.3095703125,
-0.328125,
-0.7666015625,
-0.46630859375,
-0.28173828125,
-0.053802490234375,
-0.385009765625,
-0.13818359375,
-0.75537109375,
0.94970703125,
-0.61669921875,
0.431884765625,
0.0609130859375,
-0.386474609375,
-0.09063720703125,
-0.63232421875,
1.1357421875,
-0.35400390625,
-0.0675048828125,
-0.51416015625,
0.669921875,
0.58056640625,
-0.1759033203125,
-0.33349609375,
-0.45556640625,
-0.472900390625,
-1.103515625,
0.473388671875,
-0.66064453125,
0.22021484375,
-0.89501953125,
-0.0833740234375,
1.048828125,
-0.5234375,
0.28369140625,
1.068359375,
-0.01444244384765625,
0.3076171875,
-0.69580078125,
0.87060546875,
0.41455078125,
-0.69921875,
0.2197265625,
-0.004428863525390625,
-0.794921875,
0.1527099609375,
-0.489990234375,
-0.9130859375,
-0.625,
0.440185546875,
1.310546875,
-0.191650390625,
0.95947265625,
-0.189208984375,
-1.162109375,
-0.7080078125,
0.7939453125,
-0.0011444091796875,
0.443115234375,
0.9619140625,
-0.354248046875,
-0.35693359375,
0.1217041015625,
-0.062408447265625,
-0.399658203125,
-0.1512451171875,
1.1943359375,
-0.6884765625,
-0.705078125,
0.66552734375,
0.71728515625,
-1.05078125,
-0.91748046875,
-0.12078857421875,
-0.1046142578125,
-0.3134765625,
-0.59912109375,
0.47216796875,
0.751953125,
-0.6669921875,
0.1650390625,
0.178466796875,
-0.294677734375,
0.65771484375,
-0.032745361328125,
0.382080078125,
-0.59033203125,
0.355224609375,
0.377685546875,
-0.48876953125,
-0.55322265625,
-1.07421875,
-0.143798828125,
-0.1300048828125,
0.176513671875,
0.72900390625,
-0.201171875,
0.08001708984375,
0.50634765625,
-0.044097900390625,
0.6962890625,
-0.52099609375,
-0.1671142578125,
0.18994140625,
-0.471435546875,
-0.61083984375,
-0.08624267578125,
0.359619140625,
-0.0863037109375,
0.6513671875,
-0.6201171875,
-0.246826171875,
0.56298828125,
0.5009765625,
-0.447021484375,
-0.5703125,
-0.326904296875,
-1.2060546875,
-0.66845703125,
-0.80908203125,
-0.75830078125,
-0.2239990234375,
0.48193359375,
0.34716796875,
-0.75,
0.1578369140625,
0.50927734375,
-0.74462890625,
0.734375,
-0.35693359375,
0.288330078125,
-0.486572265625,
-0.3525390625,
-0.6689453125,
0.291748046875,
-0.64208984375,
-0.1378173828125,
0.0259246826171875,
0.76318359375,
-0.431640625,
0.3828125,
-0.11322021484375,
0.318603515625,
-0.4580078125,
-0.5302734375,
-0.0572509765625,
0.0947265625,
-0.356201171875,
1.15234375,
0.60693359375,
0.4912109375,
0.305419921875,
-0.1923828125,
-0.1268310546875,
-0.339111328125,
0.68505859375,
0.60791015625,
-0.2012939453125,
-0.262939453125,
-0.12249755859375,
0.0760498046875,
-0.88330078125,
0.548828125,
-0.418212890625,
-0.0268707275390625,
0.0273895263671875,
-0.3984375,
0.326904296875,
1.296875,
-0.48291015625,
0.27001953125,
-0.10345458984375,
-0.044830322265625,
0.388427734375,
0.182373046875,
0.1282958984375,
0.464111328125,
-0.1298828125,
-0.0665283203125,
-0.192626953125,
0.45361328125,
0.165771484375,
0.193115234375,
-0.309814453125,
-0.82568359375,
-0.98876953125,
-0.38232421875,
0.0501708984375,
0.140625,
0.27587890625,
-0.54150390625,
-0.09326171875,
0.330322265625,
-0.67431640625,
-0.08856201171875,
-1.2158203125,
-1.251953125,
0.396240234375,
0.01181793212890625,
-0.89697265625,
-0.203857421875,
-0.35302734375,
-0.190185546875,
-0.07073974609375,
0.4052734375,
-0.482421875,
0.417724609375,
0.1422119140625,
0.4580078125,
-0.050750732421875,
-0.2265625,
0.1922607421875,
0.54833984375,
-0.78857421875,
-0.70654296875,
0.1917724609375,
0.83544921875,
0.05419921875,
-0.31005859375,
-0.56982421875,
0.58837890625,
0.19482421875,
0.12432861328125,
-0.205078125,
0.1771240234375,
-0.1146240234375,
0.646484375,
-0.939453125,
-0.09576416015625,
-0.320068359375,
0.190185546875,
0.027557373046875,
-0.267578125,
-0.47021484375,
0.83984375,
0.62890625,
-0.4609375,
0.44482421875,
0.244384765625,
0.293701171875,
-0.1722412109375,
-0.09185791015625,
-0.135498046875,
0.467529296875,
0.68798828125,
0.79736328125,
-0.2998046875,
0.35595703125,
0.49853515625,
0.06292724609375,
-0.403564453125,
0.228515625,
0.1822509765625,
0.1988525390625,
0.038818359375,
-0.3515625,
-0.490234375,
-0.1593017578125,
-0.85546875,
0.218994140625,
-0.67236328125,
0.01346588134765625,
-0.10101318359375,
-0.80029296875,
0.9501953125,
-0.239501953125,
0.1104736328125,
0.19189453125,
-0.72607421875,
0.31884765625,
0.60302734375,
-0.11053466796875,
-0.2337646484375,
0.84326171875,
0.94580078125,
0.822265625,
0.72998046875,
0.30615234375,
0.41650390625,
-0.64599609375,
-0.01241302490234375,
0.338134765625,
0.02947998046875,
-0.477294921875,
-0.5458984375,
-0.8955078125,
0.6064453125,
-0.407470703125,
-0.152587890625,
0.402099609375,
-0.77978515625,
-0.0283660888671875,
0.06781005859375,
1.1015625,
-0.58935546875,
0.46826171875,
0.62744140625,
-0.47314453125,
-0.85595703125,
1.052734375,
-0.282470703125,
0.251220703125,
0.097412109375,
0.775390625,
0.1822509765625,
1.43359375,
0.810546875,
-0.53125,
0.30078125,
0.8779296875,
-0.419921875,
-0.7841796875,
-0.88525390625,
-0.335693359375,
-0.193115234375,
-0.5771484375,
-0.285400390625,
-0.11724853515625,
0.5654296875,
0.1427001953125,
-0.63525390625,
-0.06927490234375,
0.3037109375,
-0.8623046875,
0.357177734375,
0.1585693359375,
0.28955078125,
0.31494140625,
-0.07745361328125,
0.03570556640625,
-0.83984375,
0.10223388671875,
-0.5244140625,
0.434814453125,
-1.0458984375,
-0.2156982421875,
-1.021484375,
-0.7578125,
0.0128021240234375,
-0.442626953125,
-0.461181640625,
-0.8193359375,
0.416259765625,
0.5869140625,
0.397216796875,
0.254638671875,
-0.0802001953125,
0.416748046875,
1.00390625,
0.67431640625,
0.049163818359375,
0.83349609375,
0.42529296875,
0.006145477294921875,
-0.01317596435546875,
-0.2301025390625,
0.56689453125,
-0.1690673828125,
0.365478515625,
-0.296142578125,
0.162109375,
-0.98681640625,
-1.2607421875,
0.1378173828125,
0.479736328125,
0.201171875,
-0.372802734375,
-0.79833984375,
-0.32177734375,
-0.84375,
-0.10382080078125,
-0.921875,
0.74267578125,
-0.52001953125,
0.03448486328125,
-0.1688232421875,
-0.96875,
4.296875,
1.060546875,
1.125,
0.215576171875,
0.26904296875,
0.91015625,
0.06500244140625,
-0.4912109375,
-0.373779296875,
-0.394287109375,
0.806640625,
-0.56298828125,
0.198974609375,
0.8623046875,
0.41943359375,
0.45263671875,
-0.12158203125,
-0.01503753662109375,
0.2119140625,
-0.9794921875,
-0.97021484375,
0.292236328125,
-0.1734619140625,
0.53759765625,
-0.10186767578125,
0.44677734375,
0.5478515625,
-0.75732421875,
-0.35009765625,
-0.82080078125,
0.331787109375,
-0.35302734375,
0.720703125,
-0.07843017578125,
0.0980224609375,
0.64794921875,
0.345703125,
-0.34130859375,
-0.2296142578125,
0.134765625,
-0.208740234375,
-0.004413604736328125,
0.36865234375,
-0.76220703125,
-0.0031871795654296875,
0.3955078125,
-0.80078125,
0.58251953125,
0.233154296875,
-1.25390625,
0.919921875,
-0.227783203125,
0.422607421875,
-0.45654296875,
-0.69091796875,
0.244384765625,
0.216064453125,
-0.0787353515625,
-0.011962890625,
0.47705078125,
0.205810546875,
0.455810546875,
-0.0266265869140625,
0.4970703125,
-1.2470703125,
0.5615234375,
0.140625,
0.38037109375,
-0.693359375,
0.01433563232421875,
-0.1492919921875,
-0.6513671875,
-0.2288818359375,
-0.489990234375,
0.53173828125,
0.376220703125,
-0.2479248046875,
0.41552734375,
0.043670654296875,
-0.41845703125,
0.08331298828125,
-0.2861328125,
-0.1529541015625,
-0.69189453125,
0.7021484375,
1.294921875,
-0.55126953125,
-0.407958984375,
-0.2080078125,
0.4189453125,
0.60791015625,
0.449951171875,
0.22607421875,
-0.6640625,
-0.1810302734375
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
You are given a string s consisting of lowercase Latin letters. Let the length of s be |s|. You may perform several operations on this string.
In one operation, you can choose some index i and remove the i-th character of s (s_i) if at least one of its adjacent characters is the previous letter in the Latin alphabet for s_i. For example, the previous letter for b is a, the previous letter for s is r, the letter a has no previous letters. Note that after each removal the length of the string decreases by one. So, the index i should satisfy the condition 1 ≤ i ≤ |s| during each operation.
For the character s_i adjacent characters are s_{i-1} and s_{i+1}. The first and the last characters of s both have only one adjacent character (unless |s| = 1).
Consider the following example. Let s= bacabcab.
1. During the first move, you can remove the first character s_1= b because s_2= a. Then the string becomes s= acabcab.
2. During the second move, you can remove the fifth character s_5= c because s_4= b. Then the string becomes s= acabab.
3. During the third move, you can remove the sixth character s_6='b' because s_5= a. Then the string becomes s= acaba.
4. During the fourth move, the only character you can remove is s_4= b, because s_3= a (or s_5= a). The string becomes s= acaa and you cannot do anything with it.
Your task is to find the maximum possible number of characters you can remove if you choose the sequence of operations optimally.
Input
The first line of the input contains one integer |s| (1 ≤ |s| ≤ 100) — the length of s.
The second line of the input contains one string s consisting of |s| lowercase Latin letters.
Output
Print one integer — the maximum possible number of characters you can remove if you choose the sequence of moves optimally.
Examples
Input
8
bacabcab
Output
4
Input
4
bcda
Output
3
Input
6
abbbbb
Output
5
Note
The first example is described in the problem statement. Note that the sequence of moves provided in the statement is not the only, but it can be shown that the maximum possible answer to this test is 4.
In the second example, you can remove all but one character of s. The only possible answer follows.
1. During the first move, remove the third character s_3= d, s becomes bca.
2. During the second move, remove the second character s_2= c, s becomes ba.
3. And during the third move, remove the first character s_1= b, s becomes a.
Submitted Solution:
```
import math
from collections import *
n = int(input())
s = input()
flag = True
ans = 0
while flag and len(s) > 1:
flag = False
for i in range(len(s)):
if i == 0:
tst = False
for j in range(1,len(s)):
if ord(s[j])-ord(s[i]) == 1:
tst = True
break
if tst == False and ord(s[i])-ord(s[i+1]) == 1:
s = s[1:len(s)]
flag = True
ans+=1
break
elif i == len(s)-1:
tst = False
for j in range(0,len(s)-1):
if ord(s[j])-ord(s[i]) == 1:
tst = True
break
if tst == False and ord(s[i])-ord(s[i-1]) == 1:
flag = True
s = s[0:len(s)-1]
ans+=1
break
else:
tst = False
for j in range(0,i):
if ord(s[j])-ord(s[i]) == 1:
tst = True
break
for j in range(i+1,len(s)):
if ord(s[j])-ord(s[i]) == 1:
tst = True
break
chk = ord(s[i])-ord(s[i-1]) == 1 or ord(s[i])-ord(s[i+1]) == 1
if tst == False and chk:
flag = True
ans+=1
s1 = s[0:i]
s2 = s[i+1:len(s)]
s = s1+s2
break
flag = True
while flag and len(s)>1:
flag = False
for i in range(len(s)-1,-1,-1):
if i == 0:
if ord(s[i])-ord(s[i+1]) == 1:
ans+=1
flag = True
s = s[1:len(s)]
break
elif i == len(s)-1:
if ord(s[i])-ord(s[i-1]) == 1:
ans+=1
flag = True
s = s[0:len(s)-1]
break
else:
if ord(s[i+1])-ord(s[i]) !=1 and ord(s[i-1])-ord(s[i]) !=1:
if ord(s[i+1])-ord(s[i]) ==-1 or ord(s[i-1])-ord(s[i]) ==-1:
flag = True
ans+=1
s1 = s[0:i]
s2 = s[i+1:len(s)]
s = s1+s2
break
print(ans)
```
Yes
| 10,084 | [
0.2034912109375,
0.1744384765625,
0.1737060546875,
0.361572265625,
-0.4453125,
0.004779815673828125,
-0.4208984375,
-0.0103912353515625,
0.1571044921875,
0.83935546875,
0.763671875,
-0.05419921875,
-0.6025390625,
-1.1572265625,
-0.546875,
-0.0247650146484375,
-0.64306640625,
-0.69677734375,
-0.44482421875,
-0.09136962890625,
0.1368408203125,
-0.108154296875,
-1.2861328125,
-0.084228515625,
-0.0478515625,
0.77783203125,
0.6376953125,
-0.31982421875,
1.04296875,
1.2861328125,
-0.08221435546875,
-0.74072265625,
0.90673828125,
-0.8984375,
-0.34765625,
-0.476806640625,
0.75244140625,
-0.564453125,
-0.10736083984375,
-0.460693359375,
0.212646484375,
-0.49072265625,
0.473876953125,
-0.69921875,
-1.123046875,
-0.005405426025390625,
-0.29541015625,
-0.2325439453125,
-0.49365234375,
-0.489501953125,
0.0211334228515625,
-0.312255859375,
0.64013671875,
-0.09039306640625,
0.0694580078125,
0.359375,
0.14794921875,
-0.325927734375,
-0.47412109375,
0.441162109375,
0.254150390625,
0.10528564453125,
0.00856781005859375,
-0.5830078125,
-0.0770263671875,
0.2939453125,
-0.0032978057861328125,
0.06170654296875,
0.284423828125,
-0.712890625,
-0.1983642578125,
0.13916015625,
-0.448486328125,
-0.5771484375,
-0.22705078125,
0.0894775390625,
0.3662109375,
-0.35009765625,
-0.79345703125,
0.68505859375,
-0.1385498046875,
1.0205078125,
0.42626953125,
0.14111328125,
-0.60400390625,
-0.4345703125,
-0.0184478759765625,
0.1748046875,
-0.08184814453125,
-0.2548828125,
-0.322509765625,
0.8388671875,
-0.642578125,
-0.11236572265625,
0.31787109375,
0.8427734375,
-0.53662109375,
0.401611328125,
0.52197265625,
-0.0478515625,
0.65966796875,
0.67529296875,
-0.435546875,
0.94580078125,
-0.412841796875,
-0.034698486328125,
0.2137451171875,
-0.2178955078125,
-0.0299224853515625,
-0.34521484375,
-0.24560546875,
-0.184814453125,
0.2391357421875,
0.131103515625,
-0.71142578125,
0.9013671875,
-0.02740478515625,
0.498291015625,
-0.75634765625,
0.382080078125,
0.41943359375,
0.1519775390625,
0.7529296875,
-0.229248046875,
-0.1361083984375,
-0.466064453125,
-0.68310546875,
0.81005859375,
-0.76953125,
0.1263427734375,
0.1256103515625,
0.00965118408203125,
-0.62353515625,
0.259521484375,
-0.183349609375,
1.0556640625,
-0.345703125,
0.408935546875,
0.7890625,
-0.451416015625,
0.80078125,
0.016082763671875,
-0.151123046875,
1.458984375,
0.31884765625,
0.012115478515625,
0.77294921875,
0.41162109375,
-0.50341796875,
0.6025390625,
-1.0673828125,
0.66748046875,
0.2236328125,
0.2386474609375,
-0.460693359375,
0.311767578125,
-0.2154541015625,
0.55517578125,
0.1500244140625,
0.2442626953125,
-0.630859375,
0.205322265625,
-0.4248046875,
0.59228515625,
-0.1197509765625,
0.89501953125,
-0.4306640625,
-0.413330078125,
-0.0733642578125,
-0.326171875,
0.1390380859375,
-0.435791015625,
-0.0249176025390625,
0.7109375,
0.53955078125,
1.056640625,
0.81787109375,
-0.1783447265625,
0.497314453125,
0.46533203125,
-0.50537109375,
0.171630859375,
0.3203125,
0.491455078125,
0.5615234375,
0.1629638671875,
-0.0498046875,
-0.07305908203125,
-0.5751953125,
-0.5283203125,
0.040924072265625,
0.75830078125,
-0.322509765625,
0.153076171875,
0.1790771484375,
-0.232666015625,
-0.921875,
-0.1131591796875,
0.09503173828125,
-1.1220703125,
-0.415283203125,
0.376220703125,
0.0186614990234375,
0.6044921875,
-0.76708984375,
-0.65869140625,
0.306884765625,
1.185546875,
-0.465087890625,
0.257080078125,
0.81982421875,
0.15234375,
-0.1766357421875,
0.1805419921875,
0.055694580078125,
-0.166259765625,
-0.50439453125,
0.5322265625,
-0.2286376953125,
0.275390625,
0.08587646484375,
0.59814453125,
-0.1019287109375,
0.8388671875,
-0.2025146484375,
-0.26904296875,
0.257568359375,
1.2861328125,
0.064453125,
0.294189453125,
0.421875,
0.79736328125,
0.55078125,
0.59912109375,
0.74609375,
-0.0213470458984375,
0.798828125,
1.103515625,
-0.34375,
0.247314453125,
0.2470703125,
0.72021484375,
0.71142578125,
0.63818359375,
0.1551513671875,
0.51171875,
0.0308990478515625,
0.166748046875,
-0.357666015625,
0.2103271484375,
-0.3447265625,
0.419677734375,
0.07421875,
0.4697265625,
-0.222412109375,
-0.125244140625,
0.32763671875,
0.6123046875,
-1.12890625,
-0.476318359375,
-0.2171630859375,
0.120849609375,
0.398193359375,
0.28369140625,
0.50537109375,
0.361328125,
0.8046875,
0.302001953125,
-0.1148681640625,
-0.52001953125,
-0.869140625,
-1.03125,
-0.8837890625,
-0.39306640625,
-0.68603515625,
-0.17041015625,
0.23193359375,
-1.056640625,
0.2244873046875,
-0.638671875,
-0.320068359375,
0.1402587890625,
-0.413330078125,
0.66748046875,
-0.3486328125,
0.55029296875,
-0.67724609375,
0.19482421875,
0.2744140625,
1.0263671875,
-0.52001953125,
0.03741455078125,
-0.3349609375,
-0.405029296875,
0.109375,
-0.07647705078125,
0.5712890625,
0.055572509765625,
-0.67529296875,
-0.91259765625,
-0.470703125,
0.067626953125,
-0.51513671875,
0.007038116455078125,
-0.344482421875,
0.61181640625,
0.64990234375,
-0.53173828125,
0.80126953125,
0.95263671875,
-0.81689453125,
0.521484375,
-0.0113067626953125,
0.11224365234375,
-0.76806640625,
1.3525390625,
0.445556640625,
0.401123046875,
-0.7587890625,
-0.86669921875,
-0.366943359375,
0.189697265625,
0.29931640625,
-0.65673828125,
-0.2132568359375,
0.396728515625,
-0.1522216796875,
-0.90966796875,
0.7607421875,
-0.98046875,
-0.30908203125,
-0.44287109375,
-0.33740234375,
0.77099609375,
0.591796875,
0.385986328125,
-0.41943359375,
-0.54833984375,
0.04925537109375,
1.0185546875,
0.732421875,
-0.99951171875,
0.121826171875,
0.791015625,
-0.1331787109375,
0.1949462890625,
0.03985595703125,
-0.407958984375,
-0.321044921875,
0.393310546875,
-0.0174560546875,
0.84228515625,
0.03997802734375,
0.521484375,
0.7783203125,
0.400634765625,
-1.0263671875,
0.3125,
-0.33447265625,
1.013671875,
0.58837890625,
0.3828125,
0.58154296875,
-0.470458984375,
-0.5,
-0.77587890625,
0.39208984375,
0.326904296875,
0.5517578125,
-0.61962890625,
0.6015625,
0.352783203125,
-0.357177734375,
0.48779296875,
-0.955078125,
0.29443359375,
0.95263671875,
-0.286376953125,
1.0615234375,
-0.67919921875,
0.362060546875,
-0.00255584716796875,
0.258544921875,
0.482666015625,
0.59716796875,
0.271484375,
-0.404296875,
-0.2271728515625,
-0.333740234375,
-0.40087890625,
0.1695556640625,
-0.44775390625,
0.30224609375,
-0.10662841796875,
-0.486328125,
-0.830078125,
0.229736328125,
1.037109375,
0.8876953125,
0.1337890625,
0.20849609375,
0.172119140625,
0.1934814453125,
0.82373046875,
-0.2066650390625,
0.07708740234375,
-0.7373046875,
1.03125,
0.245849609375,
-0.25537109375,
-0.1492919921875,
-0.1624755859375,
-0.15234375,
0.38623046875,
0.1614990234375,
-0.07269287109375,
-1.341796875,
0.31982421875,
0.074951171875,
0.57421875,
-0.69580078125,
-0.136962890625,
-0.26708984375,
0.59716796875,
0.271240234375,
-0.845703125,
-0.0206146240234375,
-1.0869140625,
0.693359375,
0.478759765625,
0.12139892578125,
-0.455810546875,
-0.187744140625,
-0.85546875,
-0.71142578125,
0.44384765625,
0.8173828125,
-0.25732421875,
0.12005615234375,
-1.1943359375,
0.7744140625,
0.341796875,
-0.4248046875,
0.130126953125,
-0.260009765625,
0.46240234375,
0.2349853515625,
0.69287109375,
-0.7421875,
-0.7412109375,
0.0086517333984375,
-1.21484375,
0.61767578125,
-0.51416015625,
0.5537109375,
-0.0109710693359375,
-0.198486328125,
0.047210693359375,
0.375244140625,
-0.2939453125,
0.48583984375,
-0.33740234375,
0.0679931640625,
-0.80908203125,
-0.8310546875,
0.57763671875,
-0.315185546875,
-0.43017578125,
0.76513671875,
-0.156005859375,
-0.32421875,
0.181884765625,
0.322265625,
-0.48974609375,
0.362548828125,
-0.53076171875,
0.59130859375,
-0.302734375,
-0.77001953125,
-0.1866455078125,
-0.334716796875,
0.83447265625,
0.07073974609375,
-0.41064453125,
-0.216552734375,
-0.96826171875,
-0.0384521484375,
0.00223541259765625,
-0.6826171875,
0.2802734375,
0.397705078125,
-0.2386474609375,
-0.147705078125,
-0.0670166015625,
-0.2459716796875,
-0.4248046875,
-0.45849609375,
-0.447509765625,
0.3525390625,
0.346435546875,
0.8798828125,
0.1353759765625,
-0.332763671875,
-0.2193603515625,
0.08343505859375,
-0.10009765625,
-0.7880859375,
-0.244384765625,
-0.09991455078125,
-0.2138671875,
-0.53515625,
0.405517578125,
-0.021942138671875,
0.41796875,
0.88671875,
0.11553955078125,
0.4775390625,
0.364990234375,
-0.5087890625,
1.0712890625,
0.2467041015625,
-1.3310546875,
-0.85693359375,
0.469482421875,
0.259521484375,
0.387451171875,
0.171142578125,
-0.9345703125,
-0.59814453125,
-0.9853515625,
0.6630859375,
-0.64697265625,
0.007442474365234375,
-1.2666015625,
-0.6865234375,
-0.351318359375,
0.455078125,
-0.021881103515625,
-0.261474609375,
0.2392578125,
-1.14453125,
0.3212890625,
-0.7890625,
-0.306396484375,
-0.89892578125,
-0.9990234375,
-0.2213134765625,
0.89501953125,
0.60205078125,
0.46240234375,
0.10052490234375,
-0.28759765625,
0.3095703125,
-0.328125,
-0.7666015625,
-0.46630859375,
-0.28173828125,
-0.053802490234375,
-0.385009765625,
-0.13818359375,
-0.75537109375,
0.94970703125,
-0.61669921875,
0.431884765625,
0.0609130859375,
-0.386474609375,
-0.09063720703125,
-0.63232421875,
1.1357421875,
-0.35400390625,
-0.0675048828125,
-0.51416015625,
0.669921875,
0.58056640625,
-0.1759033203125,
-0.33349609375,
-0.45556640625,
-0.472900390625,
-1.103515625,
0.473388671875,
-0.66064453125,
0.22021484375,
-0.89501953125,
-0.0833740234375,
1.048828125,
-0.5234375,
0.28369140625,
1.068359375,
-0.01444244384765625,
0.3076171875,
-0.69580078125,
0.87060546875,
0.41455078125,
-0.69921875,
0.2197265625,
-0.004428863525390625,
-0.794921875,
0.1527099609375,
-0.489990234375,
-0.9130859375,
-0.625,
0.440185546875,
1.310546875,
-0.191650390625,
0.95947265625,
-0.189208984375,
-1.162109375,
-0.7080078125,
0.7939453125,
-0.0011444091796875,
0.443115234375,
0.9619140625,
-0.354248046875,
-0.35693359375,
0.1217041015625,
-0.062408447265625,
-0.399658203125,
-0.1512451171875,
1.1943359375,
-0.6884765625,
-0.705078125,
0.66552734375,
0.71728515625,
-1.05078125,
-0.91748046875,
-0.12078857421875,
-0.1046142578125,
-0.3134765625,
-0.59912109375,
0.47216796875,
0.751953125,
-0.6669921875,
0.1650390625,
0.178466796875,
-0.294677734375,
0.65771484375,
-0.032745361328125,
0.382080078125,
-0.59033203125,
0.355224609375,
0.377685546875,
-0.48876953125,
-0.55322265625,
-1.07421875,
-0.143798828125,
-0.1300048828125,
0.176513671875,
0.72900390625,
-0.201171875,
0.08001708984375,
0.50634765625,
-0.044097900390625,
0.6962890625,
-0.52099609375,
-0.1671142578125,
0.18994140625,
-0.471435546875,
-0.61083984375,
-0.08624267578125,
0.359619140625,
-0.0863037109375,
0.6513671875,
-0.6201171875,
-0.246826171875,
0.56298828125,
0.5009765625,
-0.447021484375,
-0.5703125,
-0.326904296875,
-1.2060546875,
-0.66845703125,
-0.80908203125,
-0.75830078125,
-0.2239990234375,
0.48193359375,
0.34716796875,
-0.75,
0.1578369140625,
0.50927734375,
-0.74462890625,
0.734375,
-0.35693359375,
0.288330078125,
-0.486572265625,
-0.3525390625,
-0.6689453125,
0.291748046875,
-0.64208984375,
-0.1378173828125,
0.0259246826171875,
0.76318359375,
-0.431640625,
0.3828125,
-0.11322021484375,
0.318603515625,
-0.4580078125,
-0.5302734375,
-0.0572509765625,
0.0947265625,
-0.356201171875,
1.15234375,
0.60693359375,
0.4912109375,
0.305419921875,
-0.1923828125,
-0.1268310546875,
-0.339111328125,
0.68505859375,
0.60791015625,
-0.2012939453125,
-0.262939453125,
-0.12249755859375,
0.0760498046875,
-0.88330078125,
0.548828125,
-0.418212890625,
-0.0268707275390625,
0.0273895263671875,
-0.3984375,
0.326904296875,
1.296875,
-0.48291015625,
0.27001953125,
-0.10345458984375,
-0.044830322265625,
0.388427734375,
0.182373046875,
0.1282958984375,
0.464111328125,
-0.1298828125,
-0.0665283203125,
-0.192626953125,
0.45361328125,
0.165771484375,
0.193115234375,
-0.309814453125,
-0.82568359375,
-0.98876953125,
-0.38232421875,
0.0501708984375,
0.140625,
0.27587890625,
-0.54150390625,
-0.09326171875,
0.330322265625,
-0.67431640625,
-0.08856201171875,
-1.2158203125,
-1.251953125,
0.396240234375,
0.01181793212890625,
-0.89697265625,
-0.203857421875,
-0.35302734375,
-0.190185546875,
-0.07073974609375,
0.4052734375,
-0.482421875,
0.417724609375,
0.1422119140625,
0.4580078125,
-0.050750732421875,
-0.2265625,
0.1922607421875,
0.54833984375,
-0.78857421875,
-0.70654296875,
0.1917724609375,
0.83544921875,
0.05419921875,
-0.31005859375,
-0.56982421875,
0.58837890625,
0.19482421875,
0.12432861328125,
-0.205078125,
0.1771240234375,
-0.1146240234375,
0.646484375,
-0.939453125,
-0.09576416015625,
-0.320068359375,
0.190185546875,
0.027557373046875,
-0.267578125,
-0.47021484375,
0.83984375,
0.62890625,
-0.4609375,
0.44482421875,
0.244384765625,
0.293701171875,
-0.1722412109375,
-0.09185791015625,
-0.135498046875,
0.467529296875,
0.68798828125,
0.79736328125,
-0.2998046875,
0.35595703125,
0.49853515625,
0.06292724609375,
-0.403564453125,
0.228515625,
0.1822509765625,
0.1988525390625,
0.038818359375,
-0.3515625,
-0.490234375,
-0.1593017578125,
-0.85546875,
0.218994140625,
-0.67236328125,
0.01346588134765625,
-0.10101318359375,
-0.80029296875,
0.9501953125,
-0.239501953125,
0.1104736328125,
0.19189453125,
-0.72607421875,
0.31884765625,
0.60302734375,
-0.11053466796875,
-0.2337646484375,
0.84326171875,
0.94580078125,
0.822265625,
0.72998046875,
0.30615234375,
0.41650390625,
-0.64599609375,
-0.01241302490234375,
0.338134765625,
0.02947998046875,
-0.477294921875,
-0.5458984375,
-0.8955078125,
0.6064453125,
-0.407470703125,
-0.152587890625,
0.402099609375,
-0.77978515625,
-0.0283660888671875,
0.06781005859375,
1.1015625,
-0.58935546875,
0.46826171875,
0.62744140625,
-0.47314453125,
-0.85595703125,
1.052734375,
-0.282470703125,
0.251220703125,
0.097412109375,
0.775390625,
0.1822509765625,
1.43359375,
0.810546875,
-0.53125,
0.30078125,
0.8779296875,
-0.419921875,
-0.7841796875,
-0.88525390625,
-0.335693359375,
-0.193115234375,
-0.5771484375,
-0.285400390625,
-0.11724853515625,
0.5654296875,
0.1427001953125,
-0.63525390625,
-0.06927490234375,
0.3037109375,
-0.8623046875,
0.357177734375,
0.1585693359375,
0.28955078125,
0.31494140625,
-0.07745361328125,
0.03570556640625,
-0.83984375,
0.10223388671875,
-0.5244140625,
0.434814453125,
-1.0458984375,
-0.2156982421875,
-1.021484375,
-0.7578125,
0.0128021240234375,
-0.442626953125,
-0.461181640625,
-0.8193359375,
0.416259765625,
0.5869140625,
0.397216796875,
0.254638671875,
-0.0802001953125,
0.416748046875,
1.00390625,
0.67431640625,
0.049163818359375,
0.83349609375,
0.42529296875,
0.006145477294921875,
-0.01317596435546875,
-0.2301025390625,
0.56689453125,
-0.1690673828125,
0.365478515625,
-0.296142578125,
0.162109375,
-0.98681640625,
-1.2607421875,
0.1378173828125,
0.479736328125,
0.201171875,
-0.372802734375,
-0.79833984375,
-0.32177734375,
-0.84375,
-0.10382080078125,
-0.921875,
0.74267578125,
-0.52001953125,
0.03448486328125,
-0.1688232421875,
-0.96875,
4.296875,
1.060546875,
1.125,
0.215576171875,
0.26904296875,
0.91015625,
0.06500244140625,
-0.4912109375,
-0.373779296875,
-0.394287109375,
0.806640625,
-0.56298828125,
0.198974609375,
0.8623046875,
0.41943359375,
0.45263671875,
-0.12158203125,
-0.01503753662109375,
0.2119140625,
-0.9794921875,
-0.97021484375,
0.292236328125,
-0.1734619140625,
0.53759765625,
-0.10186767578125,
0.44677734375,
0.5478515625,
-0.75732421875,
-0.35009765625,
-0.82080078125,
0.331787109375,
-0.35302734375,
0.720703125,
-0.07843017578125,
0.0980224609375,
0.64794921875,
0.345703125,
-0.34130859375,
-0.2296142578125,
0.134765625,
-0.208740234375,
-0.004413604736328125,
0.36865234375,
-0.76220703125,
-0.0031871795654296875,
0.3955078125,
-0.80078125,
0.58251953125,
0.233154296875,
-1.25390625,
0.919921875,
-0.227783203125,
0.422607421875,
-0.45654296875,
-0.69091796875,
0.244384765625,
0.216064453125,
-0.0787353515625,
-0.011962890625,
0.47705078125,
0.205810546875,
0.455810546875,
-0.0266265869140625,
0.4970703125,
-1.2470703125,
0.5615234375,
0.140625,
0.38037109375,
-0.693359375,
0.01433563232421875,
-0.1492919921875,
-0.6513671875,
-0.2288818359375,
-0.489990234375,
0.53173828125,
0.376220703125,
-0.2479248046875,
0.41552734375,
0.043670654296875,
-0.41845703125,
0.08331298828125,
-0.2861328125,
-0.1529541015625,
-0.69189453125,
0.7021484375,
1.294921875,
-0.55126953125,
-0.407958984375,
-0.2080078125,
0.4189453125,
0.60791015625,
0.449951171875,
0.22607421875,
-0.6640625,
-0.1810302734375
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
You are given a string s consisting of lowercase Latin letters. Let the length of s be |s|. You may perform several operations on this string.
In one operation, you can choose some index i and remove the i-th character of s (s_i) if at least one of its adjacent characters is the previous letter in the Latin alphabet for s_i. For example, the previous letter for b is a, the previous letter for s is r, the letter a has no previous letters. Note that after each removal the length of the string decreases by one. So, the index i should satisfy the condition 1 ≤ i ≤ |s| during each operation.
For the character s_i adjacent characters are s_{i-1} and s_{i+1}. The first and the last characters of s both have only one adjacent character (unless |s| = 1).
Consider the following example. Let s= bacabcab.
1. During the first move, you can remove the first character s_1= b because s_2= a. Then the string becomes s= acabcab.
2. During the second move, you can remove the fifth character s_5= c because s_4= b. Then the string becomes s= acabab.
3. During the third move, you can remove the sixth character s_6='b' because s_5= a. Then the string becomes s= acaba.
4. During the fourth move, the only character you can remove is s_4= b, because s_3= a (or s_5= a). The string becomes s= acaa and you cannot do anything with it.
Your task is to find the maximum possible number of characters you can remove if you choose the sequence of operations optimally.
Input
The first line of the input contains one integer |s| (1 ≤ |s| ≤ 100) — the length of s.
The second line of the input contains one string s consisting of |s| lowercase Latin letters.
Output
Print one integer — the maximum possible number of characters you can remove if you choose the sequence of moves optimally.
Examples
Input
8
bacabcab
Output
4
Input
4
bcda
Output
3
Input
6
abbbbb
Output
5
Note
The first example is described in the problem statement. Note that the sequence of moves provided in the statement is not the only, but it can be shown that the maximum possible answer to this test is 4.
In the second example, you can remove all but one character of s. The only possible answer follows.
1. During the first move, remove the third character s_3= d, s becomes bca.
2. During the second move, remove the second character s_2= c, s becomes ba.
3. And during the third move, remove the first character s_1= b, s becomes a.
Submitted Solution:
```
q = int(input())
arr = [ord(i) for i in input()]
count = 0
max1 = max(arr)
#print(arr)
while max1 != 0:
max1 = max(arr)
temp = []
for x in range(len(arr)):
if x == 0:
if arr[x] == max1 and len(arr) != 1:
if arr[x + 1] == max1 - 1:
temp.append(x)
count += 1
#else:
#arr[x] = 0
elif x == len(arr)-1:
if arr[x] == max1 and len(arr) != 1:
if arr[x - 1] == max1 - 1:
temp.append(x)
count += 1
#else:
#arr[x] = 0
else:
if arr[x] == max1:
if arr[x-1] == max1-1 or arr[x+1] == max1-1:
temp.append(x)
count += 1
#else:
#arr[x] = 0
for each in reversed(temp):
arr.pop(each)
#print(temp)
#print(arr)
if len(temp) == 0:
for x in range(len(arr)):
if arr[x] == max1:
arr[x] = 0
print(count)
```
Yes
| 10,085 | [
0.2034912109375,
0.1744384765625,
0.1737060546875,
0.361572265625,
-0.4453125,
0.004779815673828125,
-0.4208984375,
-0.0103912353515625,
0.1571044921875,
0.83935546875,
0.763671875,
-0.05419921875,
-0.6025390625,
-1.1572265625,
-0.546875,
-0.0247650146484375,
-0.64306640625,
-0.69677734375,
-0.44482421875,
-0.09136962890625,
0.1368408203125,
-0.108154296875,
-1.2861328125,
-0.084228515625,
-0.0478515625,
0.77783203125,
0.6376953125,
-0.31982421875,
1.04296875,
1.2861328125,
-0.08221435546875,
-0.74072265625,
0.90673828125,
-0.8984375,
-0.34765625,
-0.476806640625,
0.75244140625,
-0.564453125,
-0.10736083984375,
-0.460693359375,
0.212646484375,
-0.49072265625,
0.473876953125,
-0.69921875,
-1.123046875,
-0.005405426025390625,
-0.29541015625,
-0.2325439453125,
-0.49365234375,
-0.489501953125,
0.0211334228515625,
-0.312255859375,
0.64013671875,
-0.09039306640625,
0.0694580078125,
0.359375,
0.14794921875,
-0.325927734375,
-0.47412109375,
0.441162109375,
0.254150390625,
0.10528564453125,
0.00856781005859375,
-0.5830078125,
-0.0770263671875,
0.2939453125,
-0.0032978057861328125,
0.06170654296875,
0.284423828125,
-0.712890625,
-0.1983642578125,
0.13916015625,
-0.448486328125,
-0.5771484375,
-0.22705078125,
0.0894775390625,
0.3662109375,
-0.35009765625,
-0.79345703125,
0.68505859375,
-0.1385498046875,
1.0205078125,
0.42626953125,
0.14111328125,
-0.60400390625,
-0.4345703125,
-0.0184478759765625,
0.1748046875,
-0.08184814453125,
-0.2548828125,
-0.322509765625,
0.8388671875,
-0.642578125,
-0.11236572265625,
0.31787109375,
0.8427734375,
-0.53662109375,
0.401611328125,
0.52197265625,
-0.0478515625,
0.65966796875,
0.67529296875,
-0.435546875,
0.94580078125,
-0.412841796875,
-0.034698486328125,
0.2137451171875,
-0.2178955078125,
-0.0299224853515625,
-0.34521484375,
-0.24560546875,
-0.184814453125,
0.2391357421875,
0.131103515625,
-0.71142578125,
0.9013671875,
-0.02740478515625,
0.498291015625,
-0.75634765625,
0.382080078125,
0.41943359375,
0.1519775390625,
0.7529296875,
-0.229248046875,
-0.1361083984375,
-0.466064453125,
-0.68310546875,
0.81005859375,
-0.76953125,
0.1263427734375,
0.1256103515625,
0.00965118408203125,
-0.62353515625,
0.259521484375,
-0.183349609375,
1.0556640625,
-0.345703125,
0.408935546875,
0.7890625,
-0.451416015625,
0.80078125,
0.016082763671875,
-0.151123046875,
1.458984375,
0.31884765625,
0.012115478515625,
0.77294921875,
0.41162109375,
-0.50341796875,
0.6025390625,
-1.0673828125,
0.66748046875,
0.2236328125,
0.2386474609375,
-0.460693359375,
0.311767578125,
-0.2154541015625,
0.55517578125,
0.1500244140625,
0.2442626953125,
-0.630859375,
0.205322265625,
-0.4248046875,
0.59228515625,
-0.1197509765625,
0.89501953125,
-0.4306640625,
-0.413330078125,
-0.0733642578125,
-0.326171875,
0.1390380859375,
-0.435791015625,
-0.0249176025390625,
0.7109375,
0.53955078125,
1.056640625,
0.81787109375,
-0.1783447265625,
0.497314453125,
0.46533203125,
-0.50537109375,
0.171630859375,
0.3203125,
0.491455078125,
0.5615234375,
0.1629638671875,
-0.0498046875,
-0.07305908203125,
-0.5751953125,
-0.5283203125,
0.040924072265625,
0.75830078125,
-0.322509765625,
0.153076171875,
0.1790771484375,
-0.232666015625,
-0.921875,
-0.1131591796875,
0.09503173828125,
-1.1220703125,
-0.415283203125,
0.376220703125,
0.0186614990234375,
0.6044921875,
-0.76708984375,
-0.65869140625,
0.306884765625,
1.185546875,
-0.465087890625,
0.257080078125,
0.81982421875,
0.15234375,
-0.1766357421875,
0.1805419921875,
0.055694580078125,
-0.166259765625,
-0.50439453125,
0.5322265625,
-0.2286376953125,
0.275390625,
0.08587646484375,
0.59814453125,
-0.1019287109375,
0.8388671875,
-0.2025146484375,
-0.26904296875,
0.257568359375,
1.2861328125,
0.064453125,
0.294189453125,
0.421875,
0.79736328125,
0.55078125,
0.59912109375,
0.74609375,
-0.0213470458984375,
0.798828125,
1.103515625,
-0.34375,
0.247314453125,
0.2470703125,
0.72021484375,
0.71142578125,
0.63818359375,
0.1551513671875,
0.51171875,
0.0308990478515625,
0.166748046875,
-0.357666015625,
0.2103271484375,
-0.3447265625,
0.419677734375,
0.07421875,
0.4697265625,
-0.222412109375,
-0.125244140625,
0.32763671875,
0.6123046875,
-1.12890625,
-0.476318359375,
-0.2171630859375,
0.120849609375,
0.398193359375,
0.28369140625,
0.50537109375,
0.361328125,
0.8046875,
0.302001953125,
-0.1148681640625,
-0.52001953125,
-0.869140625,
-1.03125,
-0.8837890625,
-0.39306640625,
-0.68603515625,
-0.17041015625,
0.23193359375,
-1.056640625,
0.2244873046875,
-0.638671875,
-0.320068359375,
0.1402587890625,
-0.413330078125,
0.66748046875,
-0.3486328125,
0.55029296875,
-0.67724609375,
0.19482421875,
0.2744140625,
1.0263671875,
-0.52001953125,
0.03741455078125,
-0.3349609375,
-0.405029296875,
0.109375,
-0.07647705078125,
0.5712890625,
0.055572509765625,
-0.67529296875,
-0.91259765625,
-0.470703125,
0.067626953125,
-0.51513671875,
0.007038116455078125,
-0.344482421875,
0.61181640625,
0.64990234375,
-0.53173828125,
0.80126953125,
0.95263671875,
-0.81689453125,
0.521484375,
-0.0113067626953125,
0.11224365234375,
-0.76806640625,
1.3525390625,
0.445556640625,
0.401123046875,
-0.7587890625,
-0.86669921875,
-0.366943359375,
0.189697265625,
0.29931640625,
-0.65673828125,
-0.2132568359375,
0.396728515625,
-0.1522216796875,
-0.90966796875,
0.7607421875,
-0.98046875,
-0.30908203125,
-0.44287109375,
-0.33740234375,
0.77099609375,
0.591796875,
0.385986328125,
-0.41943359375,
-0.54833984375,
0.04925537109375,
1.0185546875,
0.732421875,
-0.99951171875,
0.121826171875,
0.791015625,
-0.1331787109375,
0.1949462890625,
0.03985595703125,
-0.407958984375,
-0.321044921875,
0.393310546875,
-0.0174560546875,
0.84228515625,
0.03997802734375,
0.521484375,
0.7783203125,
0.400634765625,
-1.0263671875,
0.3125,
-0.33447265625,
1.013671875,
0.58837890625,
0.3828125,
0.58154296875,
-0.470458984375,
-0.5,
-0.77587890625,
0.39208984375,
0.326904296875,
0.5517578125,
-0.61962890625,
0.6015625,
0.352783203125,
-0.357177734375,
0.48779296875,
-0.955078125,
0.29443359375,
0.95263671875,
-0.286376953125,
1.0615234375,
-0.67919921875,
0.362060546875,
-0.00255584716796875,
0.258544921875,
0.482666015625,
0.59716796875,
0.271484375,
-0.404296875,
-0.2271728515625,
-0.333740234375,
-0.40087890625,
0.1695556640625,
-0.44775390625,
0.30224609375,
-0.10662841796875,
-0.486328125,
-0.830078125,
0.229736328125,
1.037109375,
0.8876953125,
0.1337890625,
0.20849609375,
0.172119140625,
0.1934814453125,
0.82373046875,
-0.2066650390625,
0.07708740234375,
-0.7373046875,
1.03125,
0.245849609375,
-0.25537109375,
-0.1492919921875,
-0.1624755859375,
-0.15234375,
0.38623046875,
0.1614990234375,
-0.07269287109375,
-1.341796875,
0.31982421875,
0.074951171875,
0.57421875,
-0.69580078125,
-0.136962890625,
-0.26708984375,
0.59716796875,
0.271240234375,
-0.845703125,
-0.0206146240234375,
-1.0869140625,
0.693359375,
0.478759765625,
0.12139892578125,
-0.455810546875,
-0.187744140625,
-0.85546875,
-0.71142578125,
0.44384765625,
0.8173828125,
-0.25732421875,
0.12005615234375,
-1.1943359375,
0.7744140625,
0.341796875,
-0.4248046875,
0.130126953125,
-0.260009765625,
0.46240234375,
0.2349853515625,
0.69287109375,
-0.7421875,
-0.7412109375,
0.0086517333984375,
-1.21484375,
0.61767578125,
-0.51416015625,
0.5537109375,
-0.0109710693359375,
-0.198486328125,
0.047210693359375,
0.375244140625,
-0.2939453125,
0.48583984375,
-0.33740234375,
0.0679931640625,
-0.80908203125,
-0.8310546875,
0.57763671875,
-0.315185546875,
-0.43017578125,
0.76513671875,
-0.156005859375,
-0.32421875,
0.181884765625,
0.322265625,
-0.48974609375,
0.362548828125,
-0.53076171875,
0.59130859375,
-0.302734375,
-0.77001953125,
-0.1866455078125,
-0.334716796875,
0.83447265625,
0.07073974609375,
-0.41064453125,
-0.216552734375,
-0.96826171875,
-0.0384521484375,
0.00223541259765625,
-0.6826171875,
0.2802734375,
0.397705078125,
-0.2386474609375,
-0.147705078125,
-0.0670166015625,
-0.2459716796875,
-0.4248046875,
-0.45849609375,
-0.447509765625,
0.3525390625,
0.346435546875,
0.8798828125,
0.1353759765625,
-0.332763671875,
-0.2193603515625,
0.08343505859375,
-0.10009765625,
-0.7880859375,
-0.244384765625,
-0.09991455078125,
-0.2138671875,
-0.53515625,
0.405517578125,
-0.021942138671875,
0.41796875,
0.88671875,
0.11553955078125,
0.4775390625,
0.364990234375,
-0.5087890625,
1.0712890625,
0.2467041015625,
-1.3310546875,
-0.85693359375,
0.469482421875,
0.259521484375,
0.387451171875,
0.171142578125,
-0.9345703125,
-0.59814453125,
-0.9853515625,
0.6630859375,
-0.64697265625,
0.007442474365234375,
-1.2666015625,
-0.6865234375,
-0.351318359375,
0.455078125,
-0.021881103515625,
-0.261474609375,
0.2392578125,
-1.14453125,
0.3212890625,
-0.7890625,
-0.306396484375,
-0.89892578125,
-0.9990234375,
-0.2213134765625,
0.89501953125,
0.60205078125,
0.46240234375,
0.10052490234375,
-0.28759765625,
0.3095703125,
-0.328125,
-0.7666015625,
-0.46630859375,
-0.28173828125,
-0.053802490234375,
-0.385009765625,
-0.13818359375,
-0.75537109375,
0.94970703125,
-0.61669921875,
0.431884765625,
0.0609130859375,
-0.386474609375,
-0.09063720703125,
-0.63232421875,
1.1357421875,
-0.35400390625,
-0.0675048828125,
-0.51416015625,
0.669921875,
0.58056640625,
-0.1759033203125,
-0.33349609375,
-0.45556640625,
-0.472900390625,
-1.103515625,
0.473388671875,
-0.66064453125,
0.22021484375,
-0.89501953125,
-0.0833740234375,
1.048828125,
-0.5234375,
0.28369140625,
1.068359375,
-0.01444244384765625,
0.3076171875,
-0.69580078125,
0.87060546875,
0.41455078125,
-0.69921875,
0.2197265625,
-0.004428863525390625,
-0.794921875,
0.1527099609375,
-0.489990234375,
-0.9130859375,
-0.625,
0.440185546875,
1.310546875,
-0.191650390625,
0.95947265625,
-0.189208984375,
-1.162109375,
-0.7080078125,
0.7939453125,
-0.0011444091796875,
0.443115234375,
0.9619140625,
-0.354248046875,
-0.35693359375,
0.1217041015625,
-0.062408447265625,
-0.399658203125,
-0.1512451171875,
1.1943359375,
-0.6884765625,
-0.705078125,
0.66552734375,
0.71728515625,
-1.05078125,
-0.91748046875,
-0.12078857421875,
-0.1046142578125,
-0.3134765625,
-0.59912109375,
0.47216796875,
0.751953125,
-0.6669921875,
0.1650390625,
0.178466796875,
-0.294677734375,
0.65771484375,
-0.032745361328125,
0.382080078125,
-0.59033203125,
0.355224609375,
0.377685546875,
-0.48876953125,
-0.55322265625,
-1.07421875,
-0.143798828125,
-0.1300048828125,
0.176513671875,
0.72900390625,
-0.201171875,
0.08001708984375,
0.50634765625,
-0.044097900390625,
0.6962890625,
-0.52099609375,
-0.1671142578125,
0.18994140625,
-0.471435546875,
-0.61083984375,
-0.08624267578125,
0.359619140625,
-0.0863037109375,
0.6513671875,
-0.6201171875,
-0.246826171875,
0.56298828125,
0.5009765625,
-0.447021484375,
-0.5703125,
-0.326904296875,
-1.2060546875,
-0.66845703125,
-0.80908203125,
-0.75830078125,
-0.2239990234375,
0.48193359375,
0.34716796875,
-0.75,
0.1578369140625,
0.50927734375,
-0.74462890625,
0.734375,
-0.35693359375,
0.288330078125,
-0.486572265625,
-0.3525390625,
-0.6689453125,
0.291748046875,
-0.64208984375,
-0.1378173828125,
0.0259246826171875,
0.76318359375,
-0.431640625,
0.3828125,
-0.11322021484375,
0.318603515625,
-0.4580078125,
-0.5302734375,
-0.0572509765625,
0.0947265625,
-0.356201171875,
1.15234375,
0.60693359375,
0.4912109375,
0.305419921875,
-0.1923828125,
-0.1268310546875,
-0.339111328125,
0.68505859375,
0.60791015625,
-0.2012939453125,
-0.262939453125,
-0.12249755859375,
0.0760498046875,
-0.88330078125,
0.548828125,
-0.418212890625,
-0.0268707275390625,
0.0273895263671875,
-0.3984375,
0.326904296875,
1.296875,
-0.48291015625,
0.27001953125,
-0.10345458984375,
-0.044830322265625,
0.388427734375,
0.182373046875,
0.1282958984375,
0.464111328125,
-0.1298828125,
-0.0665283203125,
-0.192626953125,
0.45361328125,
0.165771484375,
0.193115234375,
-0.309814453125,
-0.82568359375,
-0.98876953125,
-0.38232421875,
0.0501708984375,
0.140625,
0.27587890625,
-0.54150390625,
-0.09326171875,
0.330322265625,
-0.67431640625,
-0.08856201171875,
-1.2158203125,
-1.251953125,
0.396240234375,
0.01181793212890625,
-0.89697265625,
-0.203857421875,
-0.35302734375,
-0.190185546875,
-0.07073974609375,
0.4052734375,
-0.482421875,
0.417724609375,
0.1422119140625,
0.4580078125,
-0.050750732421875,
-0.2265625,
0.1922607421875,
0.54833984375,
-0.78857421875,
-0.70654296875,
0.1917724609375,
0.83544921875,
0.05419921875,
-0.31005859375,
-0.56982421875,
0.58837890625,
0.19482421875,
0.12432861328125,
-0.205078125,
0.1771240234375,
-0.1146240234375,
0.646484375,
-0.939453125,
-0.09576416015625,
-0.320068359375,
0.190185546875,
0.027557373046875,
-0.267578125,
-0.47021484375,
0.83984375,
0.62890625,
-0.4609375,
0.44482421875,
0.244384765625,
0.293701171875,
-0.1722412109375,
-0.09185791015625,
-0.135498046875,
0.467529296875,
0.68798828125,
0.79736328125,
-0.2998046875,
0.35595703125,
0.49853515625,
0.06292724609375,
-0.403564453125,
0.228515625,
0.1822509765625,
0.1988525390625,
0.038818359375,
-0.3515625,
-0.490234375,
-0.1593017578125,
-0.85546875,
0.218994140625,
-0.67236328125,
0.01346588134765625,
-0.10101318359375,
-0.80029296875,
0.9501953125,
-0.239501953125,
0.1104736328125,
0.19189453125,
-0.72607421875,
0.31884765625,
0.60302734375,
-0.11053466796875,
-0.2337646484375,
0.84326171875,
0.94580078125,
0.822265625,
0.72998046875,
0.30615234375,
0.41650390625,
-0.64599609375,
-0.01241302490234375,
0.338134765625,
0.02947998046875,
-0.477294921875,
-0.5458984375,
-0.8955078125,
0.6064453125,
-0.407470703125,
-0.152587890625,
0.402099609375,
-0.77978515625,
-0.0283660888671875,
0.06781005859375,
1.1015625,
-0.58935546875,
0.46826171875,
0.62744140625,
-0.47314453125,
-0.85595703125,
1.052734375,
-0.282470703125,
0.251220703125,
0.097412109375,
0.775390625,
0.1822509765625,
1.43359375,
0.810546875,
-0.53125,
0.30078125,
0.8779296875,
-0.419921875,
-0.7841796875,
-0.88525390625,
-0.335693359375,
-0.193115234375,
-0.5771484375,
-0.285400390625,
-0.11724853515625,
0.5654296875,
0.1427001953125,
-0.63525390625,
-0.06927490234375,
0.3037109375,
-0.8623046875,
0.357177734375,
0.1585693359375,
0.28955078125,
0.31494140625,
-0.07745361328125,
0.03570556640625,
-0.83984375,
0.10223388671875,
-0.5244140625,
0.434814453125,
-1.0458984375,
-0.2156982421875,
-1.021484375,
-0.7578125,
0.0128021240234375,
-0.442626953125,
-0.461181640625,
-0.8193359375,
0.416259765625,
0.5869140625,
0.397216796875,
0.254638671875,
-0.0802001953125,
0.416748046875,
1.00390625,
0.67431640625,
0.049163818359375,
0.83349609375,
0.42529296875,
0.006145477294921875,
-0.01317596435546875,
-0.2301025390625,
0.56689453125,
-0.1690673828125,
0.365478515625,
-0.296142578125,
0.162109375,
-0.98681640625,
-1.2607421875,
0.1378173828125,
0.479736328125,
0.201171875,
-0.372802734375,
-0.79833984375,
-0.32177734375,
-0.84375,
-0.10382080078125,
-0.921875,
0.74267578125,
-0.52001953125,
0.03448486328125,
-0.1688232421875,
-0.96875,
4.296875,
1.060546875,
1.125,
0.215576171875,
0.26904296875,
0.91015625,
0.06500244140625,
-0.4912109375,
-0.373779296875,
-0.394287109375,
0.806640625,
-0.56298828125,
0.198974609375,
0.8623046875,
0.41943359375,
0.45263671875,
-0.12158203125,
-0.01503753662109375,
0.2119140625,
-0.9794921875,
-0.97021484375,
0.292236328125,
-0.1734619140625,
0.53759765625,
-0.10186767578125,
0.44677734375,
0.5478515625,
-0.75732421875,
-0.35009765625,
-0.82080078125,
0.331787109375,
-0.35302734375,
0.720703125,
-0.07843017578125,
0.0980224609375,
0.64794921875,
0.345703125,
-0.34130859375,
-0.2296142578125,
0.134765625,
-0.208740234375,
-0.004413604736328125,
0.36865234375,
-0.76220703125,
-0.0031871795654296875,
0.3955078125,
-0.80078125,
0.58251953125,
0.233154296875,
-1.25390625,
0.919921875,
-0.227783203125,
0.422607421875,
-0.45654296875,
-0.69091796875,
0.244384765625,
0.216064453125,
-0.0787353515625,
-0.011962890625,
0.47705078125,
0.205810546875,
0.455810546875,
-0.0266265869140625,
0.4970703125,
-1.2470703125,
0.5615234375,
0.140625,
0.38037109375,
-0.693359375,
0.01433563232421875,
-0.1492919921875,
-0.6513671875,
-0.2288818359375,
-0.489990234375,
0.53173828125,
0.376220703125,
-0.2479248046875,
0.41552734375,
0.043670654296875,
-0.41845703125,
0.08331298828125,
-0.2861328125,
-0.1529541015625,
-0.69189453125,
0.7021484375,
1.294921875,
-0.55126953125,
-0.407958984375,
-0.2080078125,
0.4189453125,
0.60791015625,
0.449951171875,
0.22607421875,
-0.6640625,
-0.1810302734375
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
You are given a string s consisting of lowercase Latin letters. Let the length of s be |s|. You may perform several operations on this string.
In one operation, you can choose some index i and remove the i-th character of s (s_i) if at least one of its adjacent characters is the previous letter in the Latin alphabet for s_i. For example, the previous letter for b is a, the previous letter for s is r, the letter a has no previous letters. Note that after each removal the length of the string decreases by one. So, the index i should satisfy the condition 1 ≤ i ≤ |s| during each operation.
For the character s_i adjacent characters are s_{i-1} and s_{i+1}. The first and the last characters of s both have only one adjacent character (unless |s| = 1).
Consider the following example. Let s= bacabcab.
1. During the first move, you can remove the first character s_1= b because s_2= a. Then the string becomes s= acabcab.
2. During the second move, you can remove the fifth character s_5= c because s_4= b. Then the string becomes s= acabab.
3. During the third move, you can remove the sixth character s_6='b' because s_5= a. Then the string becomes s= acaba.
4. During the fourth move, the only character you can remove is s_4= b, because s_3= a (or s_5= a). The string becomes s= acaa and you cannot do anything with it.
Your task is to find the maximum possible number of characters you can remove if you choose the sequence of operations optimally.
Input
The first line of the input contains one integer |s| (1 ≤ |s| ≤ 100) — the length of s.
The second line of the input contains one string s consisting of |s| lowercase Latin letters.
Output
Print one integer — the maximum possible number of characters you can remove if you choose the sequence of moves optimally.
Examples
Input
8
bacabcab
Output
4
Input
4
bcda
Output
3
Input
6
abbbbb
Output
5
Note
The first example is described in the problem statement. Note that the sequence of moves provided in the statement is not the only, but it can be shown that the maximum possible answer to this test is 4.
In the second example, you can remove all but one character of s. The only possible answer follows.
1. During the first move, remove the third character s_3= d, s becomes bca.
2. During the second move, remove the second character s_2= c, s becomes ba.
3. And during the third move, remove the first character s_1= b, s becomes a.
Submitted Solution:
```
from collections import *
n, s, d = int(input()), input(), deque()
for i in range(ord('z'), ord('a'), -1):
for c, j in enumerate(s):
if j == chr(i):
if (c < len(s) - 1 and s[c + 1] == chr(i - 1)) or (d and d[-1] == chr(i - 1)):
continue
else:
d.append(j)
else:
d.append(j)
s = ''.join(d)[::-1]
d = deque()
for c, j in enumerate(s):
if j == chr(i):
if (c < len(s) - 1 and s[c + 1] == chr(i - 1)) or (d and d[-1] == chr(i - 1)):
continue
else:
d.append(j)
else:
d.append(j)
s = ''.join(d)
d = deque()
# print(s)
print(n - len(s))
```
Yes
| 10,086 | [
0.2034912109375,
0.1744384765625,
0.1737060546875,
0.361572265625,
-0.4453125,
0.004779815673828125,
-0.4208984375,
-0.0103912353515625,
0.1571044921875,
0.83935546875,
0.763671875,
-0.05419921875,
-0.6025390625,
-1.1572265625,
-0.546875,
-0.0247650146484375,
-0.64306640625,
-0.69677734375,
-0.44482421875,
-0.09136962890625,
0.1368408203125,
-0.108154296875,
-1.2861328125,
-0.084228515625,
-0.0478515625,
0.77783203125,
0.6376953125,
-0.31982421875,
1.04296875,
1.2861328125,
-0.08221435546875,
-0.74072265625,
0.90673828125,
-0.8984375,
-0.34765625,
-0.476806640625,
0.75244140625,
-0.564453125,
-0.10736083984375,
-0.460693359375,
0.212646484375,
-0.49072265625,
0.473876953125,
-0.69921875,
-1.123046875,
-0.005405426025390625,
-0.29541015625,
-0.2325439453125,
-0.49365234375,
-0.489501953125,
0.0211334228515625,
-0.312255859375,
0.64013671875,
-0.09039306640625,
0.0694580078125,
0.359375,
0.14794921875,
-0.325927734375,
-0.47412109375,
0.441162109375,
0.254150390625,
0.10528564453125,
0.00856781005859375,
-0.5830078125,
-0.0770263671875,
0.2939453125,
-0.0032978057861328125,
0.06170654296875,
0.284423828125,
-0.712890625,
-0.1983642578125,
0.13916015625,
-0.448486328125,
-0.5771484375,
-0.22705078125,
0.0894775390625,
0.3662109375,
-0.35009765625,
-0.79345703125,
0.68505859375,
-0.1385498046875,
1.0205078125,
0.42626953125,
0.14111328125,
-0.60400390625,
-0.4345703125,
-0.0184478759765625,
0.1748046875,
-0.08184814453125,
-0.2548828125,
-0.322509765625,
0.8388671875,
-0.642578125,
-0.11236572265625,
0.31787109375,
0.8427734375,
-0.53662109375,
0.401611328125,
0.52197265625,
-0.0478515625,
0.65966796875,
0.67529296875,
-0.435546875,
0.94580078125,
-0.412841796875,
-0.034698486328125,
0.2137451171875,
-0.2178955078125,
-0.0299224853515625,
-0.34521484375,
-0.24560546875,
-0.184814453125,
0.2391357421875,
0.131103515625,
-0.71142578125,
0.9013671875,
-0.02740478515625,
0.498291015625,
-0.75634765625,
0.382080078125,
0.41943359375,
0.1519775390625,
0.7529296875,
-0.229248046875,
-0.1361083984375,
-0.466064453125,
-0.68310546875,
0.81005859375,
-0.76953125,
0.1263427734375,
0.1256103515625,
0.00965118408203125,
-0.62353515625,
0.259521484375,
-0.183349609375,
1.0556640625,
-0.345703125,
0.408935546875,
0.7890625,
-0.451416015625,
0.80078125,
0.016082763671875,
-0.151123046875,
1.458984375,
0.31884765625,
0.012115478515625,
0.77294921875,
0.41162109375,
-0.50341796875,
0.6025390625,
-1.0673828125,
0.66748046875,
0.2236328125,
0.2386474609375,
-0.460693359375,
0.311767578125,
-0.2154541015625,
0.55517578125,
0.1500244140625,
0.2442626953125,
-0.630859375,
0.205322265625,
-0.4248046875,
0.59228515625,
-0.1197509765625,
0.89501953125,
-0.4306640625,
-0.413330078125,
-0.0733642578125,
-0.326171875,
0.1390380859375,
-0.435791015625,
-0.0249176025390625,
0.7109375,
0.53955078125,
1.056640625,
0.81787109375,
-0.1783447265625,
0.497314453125,
0.46533203125,
-0.50537109375,
0.171630859375,
0.3203125,
0.491455078125,
0.5615234375,
0.1629638671875,
-0.0498046875,
-0.07305908203125,
-0.5751953125,
-0.5283203125,
0.040924072265625,
0.75830078125,
-0.322509765625,
0.153076171875,
0.1790771484375,
-0.232666015625,
-0.921875,
-0.1131591796875,
0.09503173828125,
-1.1220703125,
-0.415283203125,
0.376220703125,
0.0186614990234375,
0.6044921875,
-0.76708984375,
-0.65869140625,
0.306884765625,
1.185546875,
-0.465087890625,
0.257080078125,
0.81982421875,
0.15234375,
-0.1766357421875,
0.1805419921875,
0.055694580078125,
-0.166259765625,
-0.50439453125,
0.5322265625,
-0.2286376953125,
0.275390625,
0.08587646484375,
0.59814453125,
-0.1019287109375,
0.8388671875,
-0.2025146484375,
-0.26904296875,
0.257568359375,
1.2861328125,
0.064453125,
0.294189453125,
0.421875,
0.79736328125,
0.55078125,
0.59912109375,
0.74609375,
-0.0213470458984375,
0.798828125,
1.103515625,
-0.34375,
0.247314453125,
0.2470703125,
0.72021484375,
0.71142578125,
0.63818359375,
0.1551513671875,
0.51171875,
0.0308990478515625,
0.166748046875,
-0.357666015625,
0.2103271484375,
-0.3447265625,
0.419677734375,
0.07421875,
0.4697265625,
-0.222412109375,
-0.125244140625,
0.32763671875,
0.6123046875,
-1.12890625,
-0.476318359375,
-0.2171630859375,
0.120849609375,
0.398193359375,
0.28369140625,
0.50537109375,
0.361328125,
0.8046875,
0.302001953125,
-0.1148681640625,
-0.52001953125,
-0.869140625,
-1.03125,
-0.8837890625,
-0.39306640625,
-0.68603515625,
-0.17041015625,
0.23193359375,
-1.056640625,
0.2244873046875,
-0.638671875,
-0.320068359375,
0.1402587890625,
-0.413330078125,
0.66748046875,
-0.3486328125,
0.55029296875,
-0.67724609375,
0.19482421875,
0.2744140625,
1.0263671875,
-0.52001953125,
0.03741455078125,
-0.3349609375,
-0.405029296875,
0.109375,
-0.07647705078125,
0.5712890625,
0.055572509765625,
-0.67529296875,
-0.91259765625,
-0.470703125,
0.067626953125,
-0.51513671875,
0.007038116455078125,
-0.344482421875,
0.61181640625,
0.64990234375,
-0.53173828125,
0.80126953125,
0.95263671875,
-0.81689453125,
0.521484375,
-0.0113067626953125,
0.11224365234375,
-0.76806640625,
1.3525390625,
0.445556640625,
0.401123046875,
-0.7587890625,
-0.86669921875,
-0.366943359375,
0.189697265625,
0.29931640625,
-0.65673828125,
-0.2132568359375,
0.396728515625,
-0.1522216796875,
-0.90966796875,
0.7607421875,
-0.98046875,
-0.30908203125,
-0.44287109375,
-0.33740234375,
0.77099609375,
0.591796875,
0.385986328125,
-0.41943359375,
-0.54833984375,
0.04925537109375,
1.0185546875,
0.732421875,
-0.99951171875,
0.121826171875,
0.791015625,
-0.1331787109375,
0.1949462890625,
0.03985595703125,
-0.407958984375,
-0.321044921875,
0.393310546875,
-0.0174560546875,
0.84228515625,
0.03997802734375,
0.521484375,
0.7783203125,
0.400634765625,
-1.0263671875,
0.3125,
-0.33447265625,
1.013671875,
0.58837890625,
0.3828125,
0.58154296875,
-0.470458984375,
-0.5,
-0.77587890625,
0.39208984375,
0.326904296875,
0.5517578125,
-0.61962890625,
0.6015625,
0.352783203125,
-0.357177734375,
0.48779296875,
-0.955078125,
0.29443359375,
0.95263671875,
-0.286376953125,
1.0615234375,
-0.67919921875,
0.362060546875,
-0.00255584716796875,
0.258544921875,
0.482666015625,
0.59716796875,
0.271484375,
-0.404296875,
-0.2271728515625,
-0.333740234375,
-0.40087890625,
0.1695556640625,
-0.44775390625,
0.30224609375,
-0.10662841796875,
-0.486328125,
-0.830078125,
0.229736328125,
1.037109375,
0.8876953125,
0.1337890625,
0.20849609375,
0.172119140625,
0.1934814453125,
0.82373046875,
-0.2066650390625,
0.07708740234375,
-0.7373046875,
1.03125,
0.245849609375,
-0.25537109375,
-0.1492919921875,
-0.1624755859375,
-0.15234375,
0.38623046875,
0.1614990234375,
-0.07269287109375,
-1.341796875,
0.31982421875,
0.074951171875,
0.57421875,
-0.69580078125,
-0.136962890625,
-0.26708984375,
0.59716796875,
0.271240234375,
-0.845703125,
-0.0206146240234375,
-1.0869140625,
0.693359375,
0.478759765625,
0.12139892578125,
-0.455810546875,
-0.187744140625,
-0.85546875,
-0.71142578125,
0.44384765625,
0.8173828125,
-0.25732421875,
0.12005615234375,
-1.1943359375,
0.7744140625,
0.341796875,
-0.4248046875,
0.130126953125,
-0.260009765625,
0.46240234375,
0.2349853515625,
0.69287109375,
-0.7421875,
-0.7412109375,
0.0086517333984375,
-1.21484375,
0.61767578125,
-0.51416015625,
0.5537109375,
-0.0109710693359375,
-0.198486328125,
0.047210693359375,
0.375244140625,
-0.2939453125,
0.48583984375,
-0.33740234375,
0.0679931640625,
-0.80908203125,
-0.8310546875,
0.57763671875,
-0.315185546875,
-0.43017578125,
0.76513671875,
-0.156005859375,
-0.32421875,
0.181884765625,
0.322265625,
-0.48974609375,
0.362548828125,
-0.53076171875,
0.59130859375,
-0.302734375,
-0.77001953125,
-0.1866455078125,
-0.334716796875,
0.83447265625,
0.07073974609375,
-0.41064453125,
-0.216552734375,
-0.96826171875,
-0.0384521484375,
0.00223541259765625,
-0.6826171875,
0.2802734375,
0.397705078125,
-0.2386474609375,
-0.147705078125,
-0.0670166015625,
-0.2459716796875,
-0.4248046875,
-0.45849609375,
-0.447509765625,
0.3525390625,
0.346435546875,
0.8798828125,
0.1353759765625,
-0.332763671875,
-0.2193603515625,
0.08343505859375,
-0.10009765625,
-0.7880859375,
-0.244384765625,
-0.09991455078125,
-0.2138671875,
-0.53515625,
0.405517578125,
-0.021942138671875,
0.41796875,
0.88671875,
0.11553955078125,
0.4775390625,
0.364990234375,
-0.5087890625,
1.0712890625,
0.2467041015625,
-1.3310546875,
-0.85693359375,
0.469482421875,
0.259521484375,
0.387451171875,
0.171142578125,
-0.9345703125,
-0.59814453125,
-0.9853515625,
0.6630859375,
-0.64697265625,
0.007442474365234375,
-1.2666015625,
-0.6865234375,
-0.351318359375,
0.455078125,
-0.021881103515625,
-0.261474609375,
0.2392578125,
-1.14453125,
0.3212890625,
-0.7890625,
-0.306396484375,
-0.89892578125,
-0.9990234375,
-0.2213134765625,
0.89501953125,
0.60205078125,
0.46240234375,
0.10052490234375,
-0.28759765625,
0.3095703125,
-0.328125,
-0.7666015625,
-0.46630859375,
-0.28173828125,
-0.053802490234375,
-0.385009765625,
-0.13818359375,
-0.75537109375,
0.94970703125,
-0.61669921875,
0.431884765625,
0.0609130859375,
-0.386474609375,
-0.09063720703125,
-0.63232421875,
1.1357421875,
-0.35400390625,
-0.0675048828125,
-0.51416015625,
0.669921875,
0.58056640625,
-0.1759033203125,
-0.33349609375,
-0.45556640625,
-0.472900390625,
-1.103515625,
0.473388671875,
-0.66064453125,
0.22021484375,
-0.89501953125,
-0.0833740234375,
1.048828125,
-0.5234375,
0.28369140625,
1.068359375,
-0.01444244384765625,
0.3076171875,
-0.69580078125,
0.87060546875,
0.41455078125,
-0.69921875,
0.2197265625,
-0.004428863525390625,
-0.794921875,
0.1527099609375,
-0.489990234375,
-0.9130859375,
-0.625,
0.440185546875,
1.310546875,
-0.191650390625,
0.95947265625,
-0.189208984375,
-1.162109375,
-0.7080078125,
0.7939453125,
-0.0011444091796875,
0.443115234375,
0.9619140625,
-0.354248046875,
-0.35693359375,
0.1217041015625,
-0.062408447265625,
-0.399658203125,
-0.1512451171875,
1.1943359375,
-0.6884765625,
-0.705078125,
0.66552734375,
0.71728515625,
-1.05078125,
-0.91748046875,
-0.12078857421875,
-0.1046142578125,
-0.3134765625,
-0.59912109375,
0.47216796875,
0.751953125,
-0.6669921875,
0.1650390625,
0.178466796875,
-0.294677734375,
0.65771484375,
-0.032745361328125,
0.382080078125,
-0.59033203125,
0.355224609375,
0.377685546875,
-0.48876953125,
-0.55322265625,
-1.07421875,
-0.143798828125,
-0.1300048828125,
0.176513671875,
0.72900390625,
-0.201171875,
0.08001708984375,
0.50634765625,
-0.044097900390625,
0.6962890625,
-0.52099609375,
-0.1671142578125,
0.18994140625,
-0.471435546875,
-0.61083984375,
-0.08624267578125,
0.359619140625,
-0.0863037109375,
0.6513671875,
-0.6201171875,
-0.246826171875,
0.56298828125,
0.5009765625,
-0.447021484375,
-0.5703125,
-0.326904296875,
-1.2060546875,
-0.66845703125,
-0.80908203125,
-0.75830078125,
-0.2239990234375,
0.48193359375,
0.34716796875,
-0.75,
0.1578369140625,
0.50927734375,
-0.74462890625,
0.734375,
-0.35693359375,
0.288330078125,
-0.486572265625,
-0.3525390625,
-0.6689453125,
0.291748046875,
-0.64208984375,
-0.1378173828125,
0.0259246826171875,
0.76318359375,
-0.431640625,
0.3828125,
-0.11322021484375,
0.318603515625,
-0.4580078125,
-0.5302734375,
-0.0572509765625,
0.0947265625,
-0.356201171875,
1.15234375,
0.60693359375,
0.4912109375,
0.305419921875,
-0.1923828125,
-0.1268310546875,
-0.339111328125,
0.68505859375,
0.60791015625,
-0.2012939453125,
-0.262939453125,
-0.12249755859375,
0.0760498046875,
-0.88330078125,
0.548828125,
-0.418212890625,
-0.0268707275390625,
0.0273895263671875,
-0.3984375,
0.326904296875,
1.296875,
-0.48291015625,
0.27001953125,
-0.10345458984375,
-0.044830322265625,
0.388427734375,
0.182373046875,
0.1282958984375,
0.464111328125,
-0.1298828125,
-0.0665283203125,
-0.192626953125,
0.45361328125,
0.165771484375,
0.193115234375,
-0.309814453125,
-0.82568359375,
-0.98876953125,
-0.38232421875,
0.0501708984375,
0.140625,
0.27587890625,
-0.54150390625,
-0.09326171875,
0.330322265625,
-0.67431640625,
-0.08856201171875,
-1.2158203125,
-1.251953125,
0.396240234375,
0.01181793212890625,
-0.89697265625,
-0.203857421875,
-0.35302734375,
-0.190185546875,
-0.07073974609375,
0.4052734375,
-0.482421875,
0.417724609375,
0.1422119140625,
0.4580078125,
-0.050750732421875,
-0.2265625,
0.1922607421875,
0.54833984375,
-0.78857421875,
-0.70654296875,
0.1917724609375,
0.83544921875,
0.05419921875,
-0.31005859375,
-0.56982421875,
0.58837890625,
0.19482421875,
0.12432861328125,
-0.205078125,
0.1771240234375,
-0.1146240234375,
0.646484375,
-0.939453125,
-0.09576416015625,
-0.320068359375,
0.190185546875,
0.027557373046875,
-0.267578125,
-0.47021484375,
0.83984375,
0.62890625,
-0.4609375,
0.44482421875,
0.244384765625,
0.293701171875,
-0.1722412109375,
-0.09185791015625,
-0.135498046875,
0.467529296875,
0.68798828125,
0.79736328125,
-0.2998046875,
0.35595703125,
0.49853515625,
0.06292724609375,
-0.403564453125,
0.228515625,
0.1822509765625,
0.1988525390625,
0.038818359375,
-0.3515625,
-0.490234375,
-0.1593017578125,
-0.85546875,
0.218994140625,
-0.67236328125,
0.01346588134765625,
-0.10101318359375,
-0.80029296875,
0.9501953125,
-0.239501953125,
0.1104736328125,
0.19189453125,
-0.72607421875,
0.31884765625,
0.60302734375,
-0.11053466796875,
-0.2337646484375,
0.84326171875,
0.94580078125,
0.822265625,
0.72998046875,
0.30615234375,
0.41650390625,
-0.64599609375,
-0.01241302490234375,
0.338134765625,
0.02947998046875,
-0.477294921875,
-0.5458984375,
-0.8955078125,
0.6064453125,
-0.407470703125,
-0.152587890625,
0.402099609375,
-0.77978515625,
-0.0283660888671875,
0.06781005859375,
1.1015625,
-0.58935546875,
0.46826171875,
0.62744140625,
-0.47314453125,
-0.85595703125,
1.052734375,
-0.282470703125,
0.251220703125,
0.097412109375,
0.775390625,
0.1822509765625,
1.43359375,
0.810546875,
-0.53125,
0.30078125,
0.8779296875,
-0.419921875,
-0.7841796875,
-0.88525390625,
-0.335693359375,
-0.193115234375,
-0.5771484375,
-0.285400390625,
-0.11724853515625,
0.5654296875,
0.1427001953125,
-0.63525390625,
-0.06927490234375,
0.3037109375,
-0.8623046875,
0.357177734375,
0.1585693359375,
0.28955078125,
0.31494140625,
-0.07745361328125,
0.03570556640625,
-0.83984375,
0.10223388671875,
-0.5244140625,
0.434814453125,
-1.0458984375,
-0.2156982421875,
-1.021484375,
-0.7578125,
0.0128021240234375,
-0.442626953125,
-0.461181640625,
-0.8193359375,
0.416259765625,
0.5869140625,
0.397216796875,
0.254638671875,
-0.0802001953125,
0.416748046875,
1.00390625,
0.67431640625,
0.049163818359375,
0.83349609375,
0.42529296875,
0.006145477294921875,
-0.01317596435546875,
-0.2301025390625,
0.56689453125,
-0.1690673828125,
0.365478515625,
-0.296142578125,
0.162109375,
-0.98681640625,
-1.2607421875,
0.1378173828125,
0.479736328125,
0.201171875,
-0.372802734375,
-0.79833984375,
-0.32177734375,
-0.84375,
-0.10382080078125,
-0.921875,
0.74267578125,
-0.52001953125,
0.03448486328125,
-0.1688232421875,
-0.96875,
4.296875,
1.060546875,
1.125,
0.215576171875,
0.26904296875,
0.91015625,
0.06500244140625,
-0.4912109375,
-0.373779296875,
-0.394287109375,
0.806640625,
-0.56298828125,
0.198974609375,
0.8623046875,
0.41943359375,
0.45263671875,
-0.12158203125,
-0.01503753662109375,
0.2119140625,
-0.9794921875,
-0.97021484375,
0.292236328125,
-0.1734619140625,
0.53759765625,
-0.10186767578125,
0.44677734375,
0.5478515625,
-0.75732421875,
-0.35009765625,
-0.82080078125,
0.331787109375,
-0.35302734375,
0.720703125,
-0.07843017578125,
0.0980224609375,
0.64794921875,
0.345703125,
-0.34130859375,
-0.2296142578125,
0.134765625,
-0.208740234375,
-0.004413604736328125,
0.36865234375,
-0.76220703125,
-0.0031871795654296875,
0.3955078125,
-0.80078125,
0.58251953125,
0.233154296875,
-1.25390625,
0.919921875,
-0.227783203125,
0.422607421875,
-0.45654296875,
-0.69091796875,
0.244384765625,
0.216064453125,
-0.0787353515625,
-0.011962890625,
0.47705078125,
0.205810546875,
0.455810546875,
-0.0266265869140625,
0.4970703125,
-1.2470703125,
0.5615234375,
0.140625,
0.38037109375,
-0.693359375,
0.01433563232421875,
-0.1492919921875,
-0.6513671875,
-0.2288818359375,
-0.489990234375,
0.53173828125,
0.376220703125,
-0.2479248046875,
0.41552734375,
0.043670654296875,
-0.41845703125,
0.08331298828125,
-0.2861328125,
-0.1529541015625,
-0.69189453125,
0.7021484375,
1.294921875,
-0.55126953125,
-0.407958984375,
-0.2080078125,
0.4189453125,
0.60791015625,
0.449951171875,
0.22607421875,
-0.6640625,
-0.1810302734375
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
You are given a string s consisting of lowercase Latin letters. Let the length of s be |s|. You may perform several operations on this string.
In one operation, you can choose some index i and remove the i-th character of s (s_i) if at least one of its adjacent characters is the previous letter in the Latin alphabet for s_i. For example, the previous letter for b is a, the previous letter for s is r, the letter a has no previous letters. Note that after each removal the length of the string decreases by one. So, the index i should satisfy the condition 1 ≤ i ≤ |s| during each operation.
For the character s_i adjacent characters are s_{i-1} and s_{i+1}. The first and the last characters of s both have only one adjacent character (unless |s| = 1).
Consider the following example. Let s= bacabcab.
1. During the first move, you can remove the first character s_1= b because s_2= a. Then the string becomes s= acabcab.
2. During the second move, you can remove the fifth character s_5= c because s_4= b. Then the string becomes s= acabab.
3. During the third move, you can remove the sixth character s_6='b' because s_5= a. Then the string becomes s= acaba.
4. During the fourth move, the only character you can remove is s_4= b, because s_3= a (or s_5= a). The string becomes s= acaa and you cannot do anything with it.
Your task is to find the maximum possible number of characters you can remove if you choose the sequence of operations optimally.
Input
The first line of the input contains one integer |s| (1 ≤ |s| ≤ 100) — the length of s.
The second line of the input contains one string s consisting of |s| lowercase Latin letters.
Output
Print one integer — the maximum possible number of characters you can remove if you choose the sequence of moves optimally.
Examples
Input
8
bacabcab
Output
4
Input
4
bcda
Output
3
Input
6
abbbbb
Output
5
Note
The first example is described in the problem statement. Note that the sequence of moves provided in the statement is not the only, but it can be shown that the maximum possible answer to this test is 4.
In the second example, you can remove all but one character of s. The only possible answer follows.
1. During the first move, remove the third character s_3= d, s becomes bca.
2. During the second move, remove the second character s_2= c, s becomes ba.
3. And during the third move, remove the first character s_1= b, s becomes a.
Submitted Solution:
```
ans = 0
def check1(seq, i):
if i == 0 or i == len(seq)-1:
return False
if seq[i] - seq[i-1] == 1 and seq[i] - seq[i+1] == 2:
return True
if seq[i] - seq[i+1] == 1 and seq[i] - seq[i-1] == 2:
return True
if seq[i] - seq[i-1] == 1 and seq[i] == seq[i+1]:
return True
if seq[i] - seq[i+1] == 1 and seq[i] == seq[i-1]:
return True
return False
def check2(seq, i):
if i == 0 or i == len(seq)-1:
return True
if seq[i] - seq[i - 1] == 1 and seq[i + 1] - seq[i] >= 2:
return True
if seq[i] - seq[i + 1] == 1 and seq[i - 1] - seq[i] >= 2:
return True
if seq[i] - seq[i - 1] == 1 and seq[i] - seq[i + 1] >= 3:
return True
if seq[i] - seq[i + 1] == 1 and seq[i] - seq[i - 1] >= 3:
return True
if seq[i] - seq[i - 1] == 1 and seq[i] - seq[i + 1] == 1:
return True
if seq[i] - seq[i + 1] == 1 and seq[i] - seq[i - 1] == 1:
return True
return False
def check3(seq, i):
if i == 0 or i == len(seq)-1:
return False
if seq[i] - seq[i - 1] == 1 and seq[i + 1] - seq[i] == 1:
return True
if seq[i] - seq[i + 1] == 1 and seq[i - 1] - seq[i] == 1:
return True
return False
def make_move(seq):
global ans
candidates = []
if len(seq) > 1:
# Check first
if seq[0] - seq[1] == 1:
candidates.append(0)
# Check others
for i in range(1, len(seq) - 1):
if seq[i]-seq[i+1] == 1 or seq[i]-seq[i-1] == 1:
candidates.append(i)
# Check last
if seq[-1] - seq[-2] == 1:
candidates.append(len(seq) - 1)
#print(seq, candidates)
if len(candidates) > 0:
# Use priority
priopity1 = list()
priopity2 = list()
priopity3 = list()
for cand in candidates:
if check1(seq, cand):
priopity1.append(cand)
elif check2(seq, cand):
priopity2.append(cand)
elif check3(seq, cand):
priopity3.append(cand)
candidates_sorted = priopity1 + priopity2 + priopity3
to_del_index = candidates_sorted[0]
ans += 1
make_move(seq[0:to_del_index]+seq[to_del_index+1:])
_ = int(input())
seq = [ord(s) - ord('a') for s in input()]
make_move(seq)
print(ans)
```
No
| 10,087 | [
0.2034912109375,
0.1744384765625,
0.1737060546875,
0.361572265625,
-0.4453125,
0.004779815673828125,
-0.4208984375,
-0.0103912353515625,
0.1571044921875,
0.83935546875,
0.763671875,
-0.05419921875,
-0.6025390625,
-1.1572265625,
-0.546875,
-0.0247650146484375,
-0.64306640625,
-0.69677734375,
-0.44482421875,
-0.09136962890625,
0.1368408203125,
-0.108154296875,
-1.2861328125,
-0.084228515625,
-0.0478515625,
0.77783203125,
0.6376953125,
-0.31982421875,
1.04296875,
1.2861328125,
-0.08221435546875,
-0.74072265625,
0.90673828125,
-0.8984375,
-0.34765625,
-0.476806640625,
0.75244140625,
-0.564453125,
-0.10736083984375,
-0.460693359375,
0.212646484375,
-0.49072265625,
0.473876953125,
-0.69921875,
-1.123046875,
-0.005405426025390625,
-0.29541015625,
-0.2325439453125,
-0.49365234375,
-0.489501953125,
0.0211334228515625,
-0.312255859375,
0.64013671875,
-0.09039306640625,
0.0694580078125,
0.359375,
0.14794921875,
-0.325927734375,
-0.47412109375,
0.441162109375,
0.254150390625,
0.10528564453125,
0.00856781005859375,
-0.5830078125,
-0.0770263671875,
0.2939453125,
-0.0032978057861328125,
0.06170654296875,
0.284423828125,
-0.712890625,
-0.1983642578125,
0.13916015625,
-0.448486328125,
-0.5771484375,
-0.22705078125,
0.0894775390625,
0.3662109375,
-0.35009765625,
-0.79345703125,
0.68505859375,
-0.1385498046875,
1.0205078125,
0.42626953125,
0.14111328125,
-0.60400390625,
-0.4345703125,
-0.0184478759765625,
0.1748046875,
-0.08184814453125,
-0.2548828125,
-0.322509765625,
0.8388671875,
-0.642578125,
-0.11236572265625,
0.31787109375,
0.8427734375,
-0.53662109375,
0.401611328125,
0.52197265625,
-0.0478515625,
0.65966796875,
0.67529296875,
-0.435546875,
0.94580078125,
-0.412841796875,
-0.034698486328125,
0.2137451171875,
-0.2178955078125,
-0.0299224853515625,
-0.34521484375,
-0.24560546875,
-0.184814453125,
0.2391357421875,
0.131103515625,
-0.71142578125,
0.9013671875,
-0.02740478515625,
0.498291015625,
-0.75634765625,
0.382080078125,
0.41943359375,
0.1519775390625,
0.7529296875,
-0.229248046875,
-0.1361083984375,
-0.466064453125,
-0.68310546875,
0.81005859375,
-0.76953125,
0.1263427734375,
0.1256103515625,
0.00965118408203125,
-0.62353515625,
0.259521484375,
-0.183349609375,
1.0556640625,
-0.345703125,
0.408935546875,
0.7890625,
-0.451416015625,
0.80078125,
0.016082763671875,
-0.151123046875,
1.458984375,
0.31884765625,
0.012115478515625,
0.77294921875,
0.41162109375,
-0.50341796875,
0.6025390625,
-1.0673828125,
0.66748046875,
0.2236328125,
0.2386474609375,
-0.460693359375,
0.311767578125,
-0.2154541015625,
0.55517578125,
0.1500244140625,
0.2442626953125,
-0.630859375,
0.205322265625,
-0.4248046875,
0.59228515625,
-0.1197509765625,
0.89501953125,
-0.4306640625,
-0.413330078125,
-0.0733642578125,
-0.326171875,
0.1390380859375,
-0.435791015625,
-0.0249176025390625,
0.7109375,
0.53955078125,
1.056640625,
0.81787109375,
-0.1783447265625,
0.497314453125,
0.46533203125,
-0.50537109375,
0.171630859375,
0.3203125,
0.491455078125,
0.5615234375,
0.1629638671875,
-0.0498046875,
-0.07305908203125,
-0.5751953125,
-0.5283203125,
0.040924072265625,
0.75830078125,
-0.322509765625,
0.153076171875,
0.1790771484375,
-0.232666015625,
-0.921875,
-0.1131591796875,
0.09503173828125,
-1.1220703125,
-0.415283203125,
0.376220703125,
0.0186614990234375,
0.6044921875,
-0.76708984375,
-0.65869140625,
0.306884765625,
1.185546875,
-0.465087890625,
0.257080078125,
0.81982421875,
0.15234375,
-0.1766357421875,
0.1805419921875,
0.055694580078125,
-0.166259765625,
-0.50439453125,
0.5322265625,
-0.2286376953125,
0.275390625,
0.08587646484375,
0.59814453125,
-0.1019287109375,
0.8388671875,
-0.2025146484375,
-0.26904296875,
0.257568359375,
1.2861328125,
0.064453125,
0.294189453125,
0.421875,
0.79736328125,
0.55078125,
0.59912109375,
0.74609375,
-0.0213470458984375,
0.798828125,
1.103515625,
-0.34375,
0.247314453125,
0.2470703125,
0.72021484375,
0.71142578125,
0.63818359375,
0.1551513671875,
0.51171875,
0.0308990478515625,
0.166748046875,
-0.357666015625,
0.2103271484375,
-0.3447265625,
0.419677734375,
0.07421875,
0.4697265625,
-0.222412109375,
-0.125244140625,
0.32763671875,
0.6123046875,
-1.12890625,
-0.476318359375,
-0.2171630859375,
0.120849609375,
0.398193359375,
0.28369140625,
0.50537109375,
0.361328125,
0.8046875,
0.302001953125,
-0.1148681640625,
-0.52001953125,
-0.869140625,
-1.03125,
-0.8837890625,
-0.39306640625,
-0.68603515625,
-0.17041015625,
0.23193359375,
-1.056640625,
0.2244873046875,
-0.638671875,
-0.320068359375,
0.1402587890625,
-0.413330078125,
0.66748046875,
-0.3486328125,
0.55029296875,
-0.67724609375,
0.19482421875,
0.2744140625,
1.0263671875,
-0.52001953125,
0.03741455078125,
-0.3349609375,
-0.405029296875,
0.109375,
-0.07647705078125,
0.5712890625,
0.055572509765625,
-0.67529296875,
-0.91259765625,
-0.470703125,
0.067626953125,
-0.51513671875,
0.007038116455078125,
-0.344482421875,
0.61181640625,
0.64990234375,
-0.53173828125,
0.80126953125,
0.95263671875,
-0.81689453125,
0.521484375,
-0.0113067626953125,
0.11224365234375,
-0.76806640625,
1.3525390625,
0.445556640625,
0.401123046875,
-0.7587890625,
-0.86669921875,
-0.366943359375,
0.189697265625,
0.29931640625,
-0.65673828125,
-0.2132568359375,
0.396728515625,
-0.1522216796875,
-0.90966796875,
0.7607421875,
-0.98046875,
-0.30908203125,
-0.44287109375,
-0.33740234375,
0.77099609375,
0.591796875,
0.385986328125,
-0.41943359375,
-0.54833984375,
0.04925537109375,
1.0185546875,
0.732421875,
-0.99951171875,
0.121826171875,
0.791015625,
-0.1331787109375,
0.1949462890625,
0.03985595703125,
-0.407958984375,
-0.321044921875,
0.393310546875,
-0.0174560546875,
0.84228515625,
0.03997802734375,
0.521484375,
0.7783203125,
0.400634765625,
-1.0263671875,
0.3125,
-0.33447265625,
1.013671875,
0.58837890625,
0.3828125,
0.58154296875,
-0.470458984375,
-0.5,
-0.77587890625,
0.39208984375,
0.326904296875,
0.5517578125,
-0.61962890625,
0.6015625,
0.352783203125,
-0.357177734375,
0.48779296875,
-0.955078125,
0.29443359375,
0.95263671875,
-0.286376953125,
1.0615234375,
-0.67919921875,
0.362060546875,
-0.00255584716796875,
0.258544921875,
0.482666015625,
0.59716796875,
0.271484375,
-0.404296875,
-0.2271728515625,
-0.333740234375,
-0.40087890625,
0.1695556640625,
-0.44775390625,
0.30224609375,
-0.10662841796875,
-0.486328125,
-0.830078125,
0.229736328125,
1.037109375,
0.8876953125,
0.1337890625,
0.20849609375,
0.172119140625,
0.1934814453125,
0.82373046875,
-0.2066650390625,
0.07708740234375,
-0.7373046875,
1.03125,
0.245849609375,
-0.25537109375,
-0.1492919921875,
-0.1624755859375,
-0.15234375,
0.38623046875,
0.1614990234375,
-0.07269287109375,
-1.341796875,
0.31982421875,
0.074951171875,
0.57421875,
-0.69580078125,
-0.136962890625,
-0.26708984375,
0.59716796875,
0.271240234375,
-0.845703125,
-0.0206146240234375,
-1.0869140625,
0.693359375,
0.478759765625,
0.12139892578125,
-0.455810546875,
-0.187744140625,
-0.85546875,
-0.71142578125,
0.44384765625,
0.8173828125,
-0.25732421875,
0.12005615234375,
-1.1943359375,
0.7744140625,
0.341796875,
-0.4248046875,
0.130126953125,
-0.260009765625,
0.46240234375,
0.2349853515625,
0.69287109375,
-0.7421875,
-0.7412109375,
0.0086517333984375,
-1.21484375,
0.61767578125,
-0.51416015625,
0.5537109375,
-0.0109710693359375,
-0.198486328125,
0.047210693359375,
0.375244140625,
-0.2939453125,
0.48583984375,
-0.33740234375,
0.0679931640625,
-0.80908203125,
-0.8310546875,
0.57763671875,
-0.315185546875,
-0.43017578125,
0.76513671875,
-0.156005859375,
-0.32421875,
0.181884765625,
0.322265625,
-0.48974609375,
0.362548828125,
-0.53076171875,
0.59130859375,
-0.302734375,
-0.77001953125,
-0.1866455078125,
-0.334716796875,
0.83447265625,
0.07073974609375,
-0.41064453125,
-0.216552734375,
-0.96826171875,
-0.0384521484375,
0.00223541259765625,
-0.6826171875,
0.2802734375,
0.397705078125,
-0.2386474609375,
-0.147705078125,
-0.0670166015625,
-0.2459716796875,
-0.4248046875,
-0.45849609375,
-0.447509765625,
0.3525390625,
0.346435546875,
0.8798828125,
0.1353759765625,
-0.332763671875,
-0.2193603515625,
0.08343505859375,
-0.10009765625,
-0.7880859375,
-0.244384765625,
-0.09991455078125,
-0.2138671875,
-0.53515625,
0.405517578125,
-0.021942138671875,
0.41796875,
0.88671875,
0.11553955078125,
0.4775390625,
0.364990234375,
-0.5087890625,
1.0712890625,
0.2467041015625,
-1.3310546875,
-0.85693359375,
0.469482421875,
0.259521484375,
0.387451171875,
0.171142578125,
-0.9345703125,
-0.59814453125,
-0.9853515625,
0.6630859375,
-0.64697265625,
0.007442474365234375,
-1.2666015625,
-0.6865234375,
-0.351318359375,
0.455078125,
-0.021881103515625,
-0.261474609375,
0.2392578125,
-1.14453125,
0.3212890625,
-0.7890625,
-0.306396484375,
-0.89892578125,
-0.9990234375,
-0.2213134765625,
0.89501953125,
0.60205078125,
0.46240234375,
0.10052490234375,
-0.28759765625,
0.3095703125,
-0.328125,
-0.7666015625,
-0.46630859375,
-0.28173828125,
-0.053802490234375,
-0.385009765625,
-0.13818359375,
-0.75537109375,
0.94970703125,
-0.61669921875,
0.431884765625,
0.0609130859375,
-0.386474609375,
-0.09063720703125,
-0.63232421875,
1.1357421875,
-0.35400390625,
-0.0675048828125,
-0.51416015625,
0.669921875,
0.58056640625,
-0.1759033203125,
-0.33349609375,
-0.45556640625,
-0.472900390625,
-1.103515625,
0.473388671875,
-0.66064453125,
0.22021484375,
-0.89501953125,
-0.0833740234375,
1.048828125,
-0.5234375,
0.28369140625,
1.068359375,
-0.01444244384765625,
0.3076171875,
-0.69580078125,
0.87060546875,
0.41455078125,
-0.69921875,
0.2197265625,
-0.004428863525390625,
-0.794921875,
0.1527099609375,
-0.489990234375,
-0.9130859375,
-0.625,
0.440185546875,
1.310546875,
-0.191650390625,
0.95947265625,
-0.189208984375,
-1.162109375,
-0.7080078125,
0.7939453125,
-0.0011444091796875,
0.443115234375,
0.9619140625,
-0.354248046875,
-0.35693359375,
0.1217041015625,
-0.062408447265625,
-0.399658203125,
-0.1512451171875,
1.1943359375,
-0.6884765625,
-0.705078125,
0.66552734375,
0.71728515625,
-1.05078125,
-0.91748046875,
-0.12078857421875,
-0.1046142578125,
-0.3134765625,
-0.59912109375,
0.47216796875,
0.751953125,
-0.6669921875,
0.1650390625,
0.178466796875,
-0.294677734375,
0.65771484375,
-0.032745361328125,
0.382080078125,
-0.59033203125,
0.355224609375,
0.377685546875,
-0.48876953125,
-0.55322265625,
-1.07421875,
-0.143798828125,
-0.1300048828125,
0.176513671875,
0.72900390625,
-0.201171875,
0.08001708984375,
0.50634765625,
-0.044097900390625,
0.6962890625,
-0.52099609375,
-0.1671142578125,
0.18994140625,
-0.471435546875,
-0.61083984375,
-0.08624267578125,
0.359619140625,
-0.0863037109375,
0.6513671875,
-0.6201171875,
-0.246826171875,
0.56298828125,
0.5009765625,
-0.447021484375,
-0.5703125,
-0.326904296875,
-1.2060546875,
-0.66845703125,
-0.80908203125,
-0.75830078125,
-0.2239990234375,
0.48193359375,
0.34716796875,
-0.75,
0.1578369140625,
0.50927734375,
-0.74462890625,
0.734375,
-0.35693359375,
0.288330078125,
-0.486572265625,
-0.3525390625,
-0.6689453125,
0.291748046875,
-0.64208984375,
-0.1378173828125,
0.0259246826171875,
0.76318359375,
-0.431640625,
0.3828125,
-0.11322021484375,
0.318603515625,
-0.4580078125,
-0.5302734375,
-0.0572509765625,
0.0947265625,
-0.356201171875,
1.15234375,
0.60693359375,
0.4912109375,
0.305419921875,
-0.1923828125,
-0.1268310546875,
-0.339111328125,
0.68505859375,
0.60791015625,
-0.2012939453125,
-0.262939453125,
-0.12249755859375,
0.0760498046875,
-0.88330078125,
0.548828125,
-0.418212890625,
-0.0268707275390625,
0.0273895263671875,
-0.3984375,
0.326904296875,
1.296875,
-0.48291015625,
0.27001953125,
-0.10345458984375,
-0.044830322265625,
0.388427734375,
0.182373046875,
0.1282958984375,
0.464111328125,
-0.1298828125,
-0.0665283203125,
-0.192626953125,
0.45361328125,
0.165771484375,
0.193115234375,
-0.309814453125,
-0.82568359375,
-0.98876953125,
-0.38232421875,
0.0501708984375,
0.140625,
0.27587890625,
-0.54150390625,
-0.09326171875,
0.330322265625,
-0.67431640625,
-0.08856201171875,
-1.2158203125,
-1.251953125,
0.396240234375,
0.01181793212890625,
-0.89697265625,
-0.203857421875,
-0.35302734375,
-0.190185546875,
-0.07073974609375,
0.4052734375,
-0.482421875,
0.417724609375,
0.1422119140625,
0.4580078125,
-0.050750732421875,
-0.2265625,
0.1922607421875,
0.54833984375,
-0.78857421875,
-0.70654296875,
0.1917724609375,
0.83544921875,
0.05419921875,
-0.31005859375,
-0.56982421875,
0.58837890625,
0.19482421875,
0.12432861328125,
-0.205078125,
0.1771240234375,
-0.1146240234375,
0.646484375,
-0.939453125,
-0.09576416015625,
-0.320068359375,
0.190185546875,
0.027557373046875,
-0.267578125,
-0.47021484375,
0.83984375,
0.62890625,
-0.4609375,
0.44482421875,
0.244384765625,
0.293701171875,
-0.1722412109375,
-0.09185791015625,
-0.135498046875,
0.467529296875,
0.68798828125,
0.79736328125,
-0.2998046875,
0.35595703125,
0.49853515625,
0.06292724609375,
-0.403564453125,
0.228515625,
0.1822509765625,
0.1988525390625,
0.038818359375,
-0.3515625,
-0.490234375,
-0.1593017578125,
-0.85546875,
0.218994140625,
-0.67236328125,
0.01346588134765625,
-0.10101318359375,
-0.80029296875,
0.9501953125,
-0.239501953125,
0.1104736328125,
0.19189453125,
-0.72607421875,
0.31884765625,
0.60302734375,
-0.11053466796875,
-0.2337646484375,
0.84326171875,
0.94580078125,
0.822265625,
0.72998046875,
0.30615234375,
0.41650390625,
-0.64599609375,
-0.01241302490234375,
0.338134765625,
0.02947998046875,
-0.477294921875,
-0.5458984375,
-0.8955078125,
0.6064453125,
-0.407470703125,
-0.152587890625,
0.402099609375,
-0.77978515625,
-0.0283660888671875,
0.06781005859375,
1.1015625,
-0.58935546875,
0.46826171875,
0.62744140625,
-0.47314453125,
-0.85595703125,
1.052734375,
-0.282470703125,
0.251220703125,
0.097412109375,
0.775390625,
0.1822509765625,
1.43359375,
0.810546875,
-0.53125,
0.30078125,
0.8779296875,
-0.419921875,
-0.7841796875,
-0.88525390625,
-0.335693359375,
-0.193115234375,
-0.5771484375,
-0.285400390625,
-0.11724853515625,
0.5654296875,
0.1427001953125,
-0.63525390625,
-0.06927490234375,
0.3037109375,
-0.8623046875,
0.357177734375,
0.1585693359375,
0.28955078125,
0.31494140625,
-0.07745361328125,
0.03570556640625,
-0.83984375,
0.10223388671875,
-0.5244140625,
0.434814453125,
-1.0458984375,
-0.2156982421875,
-1.021484375,
-0.7578125,
0.0128021240234375,
-0.442626953125,
-0.461181640625,
-0.8193359375,
0.416259765625,
0.5869140625,
0.397216796875,
0.254638671875,
-0.0802001953125,
0.416748046875,
1.00390625,
0.67431640625,
0.049163818359375,
0.83349609375,
0.42529296875,
0.006145477294921875,
-0.01317596435546875,
-0.2301025390625,
0.56689453125,
-0.1690673828125,
0.365478515625,
-0.296142578125,
0.162109375,
-0.98681640625,
-1.2607421875,
0.1378173828125,
0.479736328125,
0.201171875,
-0.372802734375,
-0.79833984375,
-0.32177734375,
-0.84375,
-0.10382080078125,
-0.921875,
0.74267578125,
-0.52001953125,
0.03448486328125,
-0.1688232421875,
-0.96875,
4.296875,
1.060546875,
1.125,
0.215576171875,
0.26904296875,
0.91015625,
0.06500244140625,
-0.4912109375,
-0.373779296875,
-0.394287109375,
0.806640625,
-0.56298828125,
0.198974609375,
0.8623046875,
0.41943359375,
0.45263671875,
-0.12158203125,
-0.01503753662109375,
0.2119140625,
-0.9794921875,
-0.97021484375,
0.292236328125,
-0.1734619140625,
0.53759765625,
-0.10186767578125,
0.44677734375,
0.5478515625,
-0.75732421875,
-0.35009765625,
-0.82080078125,
0.331787109375,
-0.35302734375,
0.720703125,
-0.07843017578125,
0.0980224609375,
0.64794921875,
0.345703125,
-0.34130859375,
-0.2296142578125,
0.134765625,
-0.208740234375,
-0.004413604736328125,
0.36865234375,
-0.76220703125,
-0.0031871795654296875,
0.3955078125,
-0.80078125,
0.58251953125,
0.233154296875,
-1.25390625,
0.919921875,
-0.227783203125,
0.422607421875,
-0.45654296875,
-0.69091796875,
0.244384765625,
0.216064453125,
-0.0787353515625,
-0.011962890625,
0.47705078125,
0.205810546875,
0.455810546875,
-0.0266265869140625,
0.4970703125,
-1.2470703125,
0.5615234375,
0.140625,
0.38037109375,
-0.693359375,
0.01433563232421875,
-0.1492919921875,
-0.6513671875,
-0.2288818359375,
-0.489990234375,
0.53173828125,
0.376220703125,
-0.2479248046875,
0.41552734375,
0.043670654296875,
-0.41845703125,
0.08331298828125,
-0.2861328125,
-0.1529541015625,
-0.69189453125,
0.7021484375,
1.294921875,
-0.55126953125,
-0.407958984375,
-0.2080078125,
0.4189453125,
0.60791015625,
0.449951171875,
0.22607421875,
-0.6640625,
-0.1810302734375
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
You are given a string s consisting of lowercase Latin letters. Let the length of s be |s|. You may perform several operations on this string.
In one operation, you can choose some index i and remove the i-th character of s (s_i) if at least one of its adjacent characters is the previous letter in the Latin alphabet for s_i. For example, the previous letter for b is a, the previous letter for s is r, the letter a has no previous letters. Note that after each removal the length of the string decreases by one. So, the index i should satisfy the condition 1 ≤ i ≤ |s| during each operation.
For the character s_i adjacent characters are s_{i-1} and s_{i+1}. The first and the last characters of s both have only one adjacent character (unless |s| = 1).
Consider the following example. Let s= bacabcab.
1. During the first move, you can remove the first character s_1= b because s_2= a. Then the string becomes s= acabcab.
2. During the second move, you can remove the fifth character s_5= c because s_4= b. Then the string becomes s= acabab.
3. During the third move, you can remove the sixth character s_6='b' because s_5= a. Then the string becomes s= acaba.
4. During the fourth move, the only character you can remove is s_4= b, because s_3= a (or s_5= a). The string becomes s= acaa and you cannot do anything with it.
Your task is to find the maximum possible number of characters you can remove if you choose the sequence of operations optimally.
Input
The first line of the input contains one integer |s| (1 ≤ |s| ≤ 100) — the length of s.
The second line of the input contains one string s consisting of |s| lowercase Latin letters.
Output
Print one integer — the maximum possible number of characters you can remove if you choose the sequence of moves optimally.
Examples
Input
8
bacabcab
Output
4
Input
4
bcda
Output
3
Input
6
abbbbb
Output
5
Note
The first example is described in the problem statement. Note that the sequence of moves provided in the statement is not the only, but it can be shown that the maximum possible answer to this test is 4.
In the second example, you can remove all but one character of s. The only possible answer follows.
1. During the first move, remove the third character s_3= d, s becomes bca.
2. During the second move, remove the second character s_2= c, s becomes ba.
3. And during the third move, remove the first character s_1= b, s becomes a.
Submitted Solution:
```
n = int(input())
s = input()
s_nums = [ord(s[i]) for i in range(n)]
# print(s_nums)
# letter_count = {}
# for letter in range(ord('a'), ord('z') + 1):
# letter_count[letter] = 0
# for i in range(n):
# letter_count[s_nums[i]] += 1
ans = 0
for biggest_number in range(ord('z'), ord('a')-1, -1):
biggest_number = ord('z')
while biggest_number >= ord('a'):
# print("biggest_number:", biggest_number)
can_delete = True
while can_delete:
can_delete = False
j = 0
while len(s_nums) > 1 and j < len(s_nums):
# print("21", "s_nums: ", s_nums)
can_delete = False
if s_nums[j] == biggest_number:
if len(s_nums) == 1:
pass
elif j == 0:
if s_nums[j+1] == biggest_number - 1:
can_delete = True
elif j == len(s_nums) - 1:
if s_nums[j-1] == biggest_number - 1:
can_delete = True
else:
if s_nums[j-1] == biggest_number - 1 or s_nums[j+1] == biggest_number - 1:
can_delete = True
if can_delete:
# print("deleting ", j, "from ", s_nums)
s_nums = s_nums[:j] + s_nums[j+1:]
# print("got ", s_nums)
can_delete = False
# letter_count[biggest_number] -= 1
ans += 1
j += 1
biggest_number -= 1
print(ans)
# print("ans: ", ans)
# print("s_nums: ", s_nums)
```
No
| 10,088 | [
0.2034912109375,
0.1744384765625,
0.1737060546875,
0.361572265625,
-0.4453125,
0.004779815673828125,
-0.4208984375,
-0.0103912353515625,
0.1571044921875,
0.83935546875,
0.763671875,
-0.05419921875,
-0.6025390625,
-1.1572265625,
-0.546875,
-0.0247650146484375,
-0.64306640625,
-0.69677734375,
-0.44482421875,
-0.09136962890625,
0.1368408203125,
-0.108154296875,
-1.2861328125,
-0.084228515625,
-0.0478515625,
0.77783203125,
0.6376953125,
-0.31982421875,
1.04296875,
1.2861328125,
-0.08221435546875,
-0.74072265625,
0.90673828125,
-0.8984375,
-0.34765625,
-0.476806640625,
0.75244140625,
-0.564453125,
-0.10736083984375,
-0.460693359375,
0.212646484375,
-0.49072265625,
0.473876953125,
-0.69921875,
-1.123046875,
-0.005405426025390625,
-0.29541015625,
-0.2325439453125,
-0.49365234375,
-0.489501953125,
0.0211334228515625,
-0.312255859375,
0.64013671875,
-0.09039306640625,
0.0694580078125,
0.359375,
0.14794921875,
-0.325927734375,
-0.47412109375,
0.441162109375,
0.254150390625,
0.10528564453125,
0.00856781005859375,
-0.5830078125,
-0.0770263671875,
0.2939453125,
-0.0032978057861328125,
0.06170654296875,
0.284423828125,
-0.712890625,
-0.1983642578125,
0.13916015625,
-0.448486328125,
-0.5771484375,
-0.22705078125,
0.0894775390625,
0.3662109375,
-0.35009765625,
-0.79345703125,
0.68505859375,
-0.1385498046875,
1.0205078125,
0.42626953125,
0.14111328125,
-0.60400390625,
-0.4345703125,
-0.0184478759765625,
0.1748046875,
-0.08184814453125,
-0.2548828125,
-0.322509765625,
0.8388671875,
-0.642578125,
-0.11236572265625,
0.31787109375,
0.8427734375,
-0.53662109375,
0.401611328125,
0.52197265625,
-0.0478515625,
0.65966796875,
0.67529296875,
-0.435546875,
0.94580078125,
-0.412841796875,
-0.034698486328125,
0.2137451171875,
-0.2178955078125,
-0.0299224853515625,
-0.34521484375,
-0.24560546875,
-0.184814453125,
0.2391357421875,
0.131103515625,
-0.71142578125,
0.9013671875,
-0.02740478515625,
0.498291015625,
-0.75634765625,
0.382080078125,
0.41943359375,
0.1519775390625,
0.7529296875,
-0.229248046875,
-0.1361083984375,
-0.466064453125,
-0.68310546875,
0.81005859375,
-0.76953125,
0.1263427734375,
0.1256103515625,
0.00965118408203125,
-0.62353515625,
0.259521484375,
-0.183349609375,
1.0556640625,
-0.345703125,
0.408935546875,
0.7890625,
-0.451416015625,
0.80078125,
0.016082763671875,
-0.151123046875,
1.458984375,
0.31884765625,
0.012115478515625,
0.77294921875,
0.41162109375,
-0.50341796875,
0.6025390625,
-1.0673828125,
0.66748046875,
0.2236328125,
0.2386474609375,
-0.460693359375,
0.311767578125,
-0.2154541015625,
0.55517578125,
0.1500244140625,
0.2442626953125,
-0.630859375,
0.205322265625,
-0.4248046875,
0.59228515625,
-0.1197509765625,
0.89501953125,
-0.4306640625,
-0.413330078125,
-0.0733642578125,
-0.326171875,
0.1390380859375,
-0.435791015625,
-0.0249176025390625,
0.7109375,
0.53955078125,
1.056640625,
0.81787109375,
-0.1783447265625,
0.497314453125,
0.46533203125,
-0.50537109375,
0.171630859375,
0.3203125,
0.491455078125,
0.5615234375,
0.1629638671875,
-0.0498046875,
-0.07305908203125,
-0.5751953125,
-0.5283203125,
0.040924072265625,
0.75830078125,
-0.322509765625,
0.153076171875,
0.1790771484375,
-0.232666015625,
-0.921875,
-0.1131591796875,
0.09503173828125,
-1.1220703125,
-0.415283203125,
0.376220703125,
0.0186614990234375,
0.6044921875,
-0.76708984375,
-0.65869140625,
0.306884765625,
1.185546875,
-0.465087890625,
0.257080078125,
0.81982421875,
0.15234375,
-0.1766357421875,
0.1805419921875,
0.055694580078125,
-0.166259765625,
-0.50439453125,
0.5322265625,
-0.2286376953125,
0.275390625,
0.08587646484375,
0.59814453125,
-0.1019287109375,
0.8388671875,
-0.2025146484375,
-0.26904296875,
0.257568359375,
1.2861328125,
0.064453125,
0.294189453125,
0.421875,
0.79736328125,
0.55078125,
0.59912109375,
0.74609375,
-0.0213470458984375,
0.798828125,
1.103515625,
-0.34375,
0.247314453125,
0.2470703125,
0.72021484375,
0.71142578125,
0.63818359375,
0.1551513671875,
0.51171875,
0.0308990478515625,
0.166748046875,
-0.357666015625,
0.2103271484375,
-0.3447265625,
0.419677734375,
0.07421875,
0.4697265625,
-0.222412109375,
-0.125244140625,
0.32763671875,
0.6123046875,
-1.12890625,
-0.476318359375,
-0.2171630859375,
0.120849609375,
0.398193359375,
0.28369140625,
0.50537109375,
0.361328125,
0.8046875,
0.302001953125,
-0.1148681640625,
-0.52001953125,
-0.869140625,
-1.03125,
-0.8837890625,
-0.39306640625,
-0.68603515625,
-0.17041015625,
0.23193359375,
-1.056640625,
0.2244873046875,
-0.638671875,
-0.320068359375,
0.1402587890625,
-0.413330078125,
0.66748046875,
-0.3486328125,
0.55029296875,
-0.67724609375,
0.19482421875,
0.2744140625,
1.0263671875,
-0.52001953125,
0.03741455078125,
-0.3349609375,
-0.405029296875,
0.109375,
-0.07647705078125,
0.5712890625,
0.055572509765625,
-0.67529296875,
-0.91259765625,
-0.470703125,
0.067626953125,
-0.51513671875,
0.007038116455078125,
-0.344482421875,
0.61181640625,
0.64990234375,
-0.53173828125,
0.80126953125,
0.95263671875,
-0.81689453125,
0.521484375,
-0.0113067626953125,
0.11224365234375,
-0.76806640625,
1.3525390625,
0.445556640625,
0.401123046875,
-0.7587890625,
-0.86669921875,
-0.366943359375,
0.189697265625,
0.29931640625,
-0.65673828125,
-0.2132568359375,
0.396728515625,
-0.1522216796875,
-0.90966796875,
0.7607421875,
-0.98046875,
-0.30908203125,
-0.44287109375,
-0.33740234375,
0.77099609375,
0.591796875,
0.385986328125,
-0.41943359375,
-0.54833984375,
0.04925537109375,
1.0185546875,
0.732421875,
-0.99951171875,
0.121826171875,
0.791015625,
-0.1331787109375,
0.1949462890625,
0.03985595703125,
-0.407958984375,
-0.321044921875,
0.393310546875,
-0.0174560546875,
0.84228515625,
0.03997802734375,
0.521484375,
0.7783203125,
0.400634765625,
-1.0263671875,
0.3125,
-0.33447265625,
1.013671875,
0.58837890625,
0.3828125,
0.58154296875,
-0.470458984375,
-0.5,
-0.77587890625,
0.39208984375,
0.326904296875,
0.5517578125,
-0.61962890625,
0.6015625,
0.352783203125,
-0.357177734375,
0.48779296875,
-0.955078125,
0.29443359375,
0.95263671875,
-0.286376953125,
1.0615234375,
-0.67919921875,
0.362060546875,
-0.00255584716796875,
0.258544921875,
0.482666015625,
0.59716796875,
0.271484375,
-0.404296875,
-0.2271728515625,
-0.333740234375,
-0.40087890625,
0.1695556640625,
-0.44775390625,
0.30224609375,
-0.10662841796875,
-0.486328125,
-0.830078125,
0.229736328125,
1.037109375,
0.8876953125,
0.1337890625,
0.20849609375,
0.172119140625,
0.1934814453125,
0.82373046875,
-0.2066650390625,
0.07708740234375,
-0.7373046875,
1.03125,
0.245849609375,
-0.25537109375,
-0.1492919921875,
-0.1624755859375,
-0.15234375,
0.38623046875,
0.1614990234375,
-0.07269287109375,
-1.341796875,
0.31982421875,
0.074951171875,
0.57421875,
-0.69580078125,
-0.136962890625,
-0.26708984375,
0.59716796875,
0.271240234375,
-0.845703125,
-0.0206146240234375,
-1.0869140625,
0.693359375,
0.478759765625,
0.12139892578125,
-0.455810546875,
-0.187744140625,
-0.85546875,
-0.71142578125,
0.44384765625,
0.8173828125,
-0.25732421875,
0.12005615234375,
-1.1943359375,
0.7744140625,
0.341796875,
-0.4248046875,
0.130126953125,
-0.260009765625,
0.46240234375,
0.2349853515625,
0.69287109375,
-0.7421875,
-0.7412109375,
0.0086517333984375,
-1.21484375,
0.61767578125,
-0.51416015625,
0.5537109375,
-0.0109710693359375,
-0.198486328125,
0.047210693359375,
0.375244140625,
-0.2939453125,
0.48583984375,
-0.33740234375,
0.0679931640625,
-0.80908203125,
-0.8310546875,
0.57763671875,
-0.315185546875,
-0.43017578125,
0.76513671875,
-0.156005859375,
-0.32421875,
0.181884765625,
0.322265625,
-0.48974609375,
0.362548828125,
-0.53076171875,
0.59130859375,
-0.302734375,
-0.77001953125,
-0.1866455078125,
-0.334716796875,
0.83447265625,
0.07073974609375,
-0.41064453125,
-0.216552734375,
-0.96826171875,
-0.0384521484375,
0.00223541259765625,
-0.6826171875,
0.2802734375,
0.397705078125,
-0.2386474609375,
-0.147705078125,
-0.0670166015625,
-0.2459716796875,
-0.4248046875,
-0.45849609375,
-0.447509765625,
0.3525390625,
0.346435546875,
0.8798828125,
0.1353759765625,
-0.332763671875,
-0.2193603515625,
0.08343505859375,
-0.10009765625,
-0.7880859375,
-0.244384765625,
-0.09991455078125,
-0.2138671875,
-0.53515625,
0.405517578125,
-0.021942138671875,
0.41796875,
0.88671875,
0.11553955078125,
0.4775390625,
0.364990234375,
-0.5087890625,
1.0712890625,
0.2467041015625,
-1.3310546875,
-0.85693359375,
0.469482421875,
0.259521484375,
0.387451171875,
0.171142578125,
-0.9345703125,
-0.59814453125,
-0.9853515625,
0.6630859375,
-0.64697265625,
0.007442474365234375,
-1.2666015625,
-0.6865234375,
-0.351318359375,
0.455078125,
-0.021881103515625,
-0.261474609375,
0.2392578125,
-1.14453125,
0.3212890625,
-0.7890625,
-0.306396484375,
-0.89892578125,
-0.9990234375,
-0.2213134765625,
0.89501953125,
0.60205078125,
0.46240234375,
0.10052490234375,
-0.28759765625,
0.3095703125,
-0.328125,
-0.7666015625,
-0.46630859375,
-0.28173828125,
-0.053802490234375,
-0.385009765625,
-0.13818359375,
-0.75537109375,
0.94970703125,
-0.61669921875,
0.431884765625,
0.0609130859375,
-0.386474609375,
-0.09063720703125,
-0.63232421875,
1.1357421875,
-0.35400390625,
-0.0675048828125,
-0.51416015625,
0.669921875,
0.58056640625,
-0.1759033203125,
-0.33349609375,
-0.45556640625,
-0.472900390625,
-1.103515625,
0.473388671875,
-0.66064453125,
0.22021484375,
-0.89501953125,
-0.0833740234375,
1.048828125,
-0.5234375,
0.28369140625,
1.068359375,
-0.01444244384765625,
0.3076171875,
-0.69580078125,
0.87060546875,
0.41455078125,
-0.69921875,
0.2197265625,
-0.004428863525390625,
-0.794921875,
0.1527099609375,
-0.489990234375,
-0.9130859375,
-0.625,
0.440185546875,
1.310546875,
-0.191650390625,
0.95947265625,
-0.189208984375,
-1.162109375,
-0.7080078125,
0.7939453125,
-0.0011444091796875,
0.443115234375,
0.9619140625,
-0.354248046875,
-0.35693359375,
0.1217041015625,
-0.062408447265625,
-0.399658203125,
-0.1512451171875,
1.1943359375,
-0.6884765625,
-0.705078125,
0.66552734375,
0.71728515625,
-1.05078125,
-0.91748046875,
-0.12078857421875,
-0.1046142578125,
-0.3134765625,
-0.59912109375,
0.47216796875,
0.751953125,
-0.6669921875,
0.1650390625,
0.178466796875,
-0.294677734375,
0.65771484375,
-0.032745361328125,
0.382080078125,
-0.59033203125,
0.355224609375,
0.377685546875,
-0.48876953125,
-0.55322265625,
-1.07421875,
-0.143798828125,
-0.1300048828125,
0.176513671875,
0.72900390625,
-0.201171875,
0.08001708984375,
0.50634765625,
-0.044097900390625,
0.6962890625,
-0.52099609375,
-0.1671142578125,
0.18994140625,
-0.471435546875,
-0.61083984375,
-0.08624267578125,
0.359619140625,
-0.0863037109375,
0.6513671875,
-0.6201171875,
-0.246826171875,
0.56298828125,
0.5009765625,
-0.447021484375,
-0.5703125,
-0.326904296875,
-1.2060546875,
-0.66845703125,
-0.80908203125,
-0.75830078125,
-0.2239990234375,
0.48193359375,
0.34716796875,
-0.75,
0.1578369140625,
0.50927734375,
-0.74462890625,
0.734375,
-0.35693359375,
0.288330078125,
-0.486572265625,
-0.3525390625,
-0.6689453125,
0.291748046875,
-0.64208984375,
-0.1378173828125,
0.0259246826171875,
0.76318359375,
-0.431640625,
0.3828125,
-0.11322021484375,
0.318603515625,
-0.4580078125,
-0.5302734375,
-0.0572509765625,
0.0947265625,
-0.356201171875,
1.15234375,
0.60693359375,
0.4912109375,
0.305419921875,
-0.1923828125,
-0.1268310546875,
-0.339111328125,
0.68505859375,
0.60791015625,
-0.2012939453125,
-0.262939453125,
-0.12249755859375,
0.0760498046875,
-0.88330078125,
0.548828125,
-0.418212890625,
-0.0268707275390625,
0.0273895263671875,
-0.3984375,
0.326904296875,
1.296875,
-0.48291015625,
0.27001953125,
-0.10345458984375,
-0.044830322265625,
0.388427734375,
0.182373046875,
0.1282958984375,
0.464111328125,
-0.1298828125,
-0.0665283203125,
-0.192626953125,
0.45361328125,
0.165771484375,
0.193115234375,
-0.309814453125,
-0.82568359375,
-0.98876953125,
-0.38232421875,
0.0501708984375,
0.140625,
0.27587890625,
-0.54150390625,
-0.09326171875,
0.330322265625,
-0.67431640625,
-0.08856201171875,
-1.2158203125,
-1.251953125,
0.396240234375,
0.01181793212890625,
-0.89697265625,
-0.203857421875,
-0.35302734375,
-0.190185546875,
-0.07073974609375,
0.4052734375,
-0.482421875,
0.417724609375,
0.1422119140625,
0.4580078125,
-0.050750732421875,
-0.2265625,
0.1922607421875,
0.54833984375,
-0.78857421875,
-0.70654296875,
0.1917724609375,
0.83544921875,
0.05419921875,
-0.31005859375,
-0.56982421875,
0.58837890625,
0.19482421875,
0.12432861328125,
-0.205078125,
0.1771240234375,
-0.1146240234375,
0.646484375,
-0.939453125,
-0.09576416015625,
-0.320068359375,
0.190185546875,
0.027557373046875,
-0.267578125,
-0.47021484375,
0.83984375,
0.62890625,
-0.4609375,
0.44482421875,
0.244384765625,
0.293701171875,
-0.1722412109375,
-0.09185791015625,
-0.135498046875,
0.467529296875,
0.68798828125,
0.79736328125,
-0.2998046875,
0.35595703125,
0.49853515625,
0.06292724609375,
-0.403564453125,
0.228515625,
0.1822509765625,
0.1988525390625,
0.038818359375,
-0.3515625,
-0.490234375,
-0.1593017578125,
-0.85546875,
0.218994140625,
-0.67236328125,
0.01346588134765625,
-0.10101318359375,
-0.80029296875,
0.9501953125,
-0.239501953125,
0.1104736328125,
0.19189453125,
-0.72607421875,
0.31884765625,
0.60302734375,
-0.11053466796875,
-0.2337646484375,
0.84326171875,
0.94580078125,
0.822265625,
0.72998046875,
0.30615234375,
0.41650390625,
-0.64599609375,
-0.01241302490234375,
0.338134765625,
0.02947998046875,
-0.477294921875,
-0.5458984375,
-0.8955078125,
0.6064453125,
-0.407470703125,
-0.152587890625,
0.402099609375,
-0.77978515625,
-0.0283660888671875,
0.06781005859375,
1.1015625,
-0.58935546875,
0.46826171875,
0.62744140625,
-0.47314453125,
-0.85595703125,
1.052734375,
-0.282470703125,
0.251220703125,
0.097412109375,
0.775390625,
0.1822509765625,
1.43359375,
0.810546875,
-0.53125,
0.30078125,
0.8779296875,
-0.419921875,
-0.7841796875,
-0.88525390625,
-0.335693359375,
-0.193115234375,
-0.5771484375,
-0.285400390625,
-0.11724853515625,
0.5654296875,
0.1427001953125,
-0.63525390625,
-0.06927490234375,
0.3037109375,
-0.8623046875,
0.357177734375,
0.1585693359375,
0.28955078125,
0.31494140625,
-0.07745361328125,
0.03570556640625,
-0.83984375,
0.10223388671875,
-0.5244140625,
0.434814453125,
-1.0458984375,
-0.2156982421875,
-1.021484375,
-0.7578125,
0.0128021240234375,
-0.442626953125,
-0.461181640625,
-0.8193359375,
0.416259765625,
0.5869140625,
0.397216796875,
0.254638671875,
-0.0802001953125,
0.416748046875,
1.00390625,
0.67431640625,
0.049163818359375,
0.83349609375,
0.42529296875,
0.006145477294921875,
-0.01317596435546875,
-0.2301025390625,
0.56689453125,
-0.1690673828125,
0.365478515625,
-0.296142578125,
0.162109375,
-0.98681640625,
-1.2607421875,
0.1378173828125,
0.479736328125,
0.201171875,
-0.372802734375,
-0.79833984375,
-0.32177734375,
-0.84375,
-0.10382080078125,
-0.921875,
0.74267578125,
-0.52001953125,
0.03448486328125,
-0.1688232421875,
-0.96875,
4.296875,
1.060546875,
1.125,
0.215576171875,
0.26904296875,
0.91015625,
0.06500244140625,
-0.4912109375,
-0.373779296875,
-0.394287109375,
0.806640625,
-0.56298828125,
0.198974609375,
0.8623046875,
0.41943359375,
0.45263671875,
-0.12158203125,
-0.01503753662109375,
0.2119140625,
-0.9794921875,
-0.97021484375,
0.292236328125,
-0.1734619140625,
0.53759765625,
-0.10186767578125,
0.44677734375,
0.5478515625,
-0.75732421875,
-0.35009765625,
-0.82080078125,
0.331787109375,
-0.35302734375,
0.720703125,
-0.07843017578125,
0.0980224609375,
0.64794921875,
0.345703125,
-0.34130859375,
-0.2296142578125,
0.134765625,
-0.208740234375,
-0.004413604736328125,
0.36865234375,
-0.76220703125,
-0.0031871795654296875,
0.3955078125,
-0.80078125,
0.58251953125,
0.233154296875,
-1.25390625,
0.919921875,
-0.227783203125,
0.422607421875,
-0.45654296875,
-0.69091796875,
0.244384765625,
0.216064453125,
-0.0787353515625,
-0.011962890625,
0.47705078125,
0.205810546875,
0.455810546875,
-0.0266265869140625,
0.4970703125,
-1.2470703125,
0.5615234375,
0.140625,
0.38037109375,
-0.693359375,
0.01433563232421875,
-0.1492919921875,
-0.6513671875,
-0.2288818359375,
-0.489990234375,
0.53173828125,
0.376220703125,
-0.2479248046875,
0.41552734375,
0.043670654296875,
-0.41845703125,
0.08331298828125,
-0.2861328125,
-0.1529541015625,
-0.69189453125,
0.7021484375,
1.294921875,
-0.55126953125,
-0.407958984375,
-0.2080078125,
0.4189453125,
0.60791015625,
0.449951171875,
0.22607421875,
-0.6640625,
-0.1810302734375
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
You are given a string s consisting of lowercase Latin letters. Let the length of s be |s|. You may perform several operations on this string.
In one operation, you can choose some index i and remove the i-th character of s (s_i) if at least one of its adjacent characters is the previous letter in the Latin alphabet for s_i. For example, the previous letter for b is a, the previous letter for s is r, the letter a has no previous letters. Note that after each removal the length of the string decreases by one. So, the index i should satisfy the condition 1 ≤ i ≤ |s| during each operation.
For the character s_i adjacent characters are s_{i-1} and s_{i+1}. The first and the last characters of s both have only one adjacent character (unless |s| = 1).
Consider the following example. Let s= bacabcab.
1. During the first move, you can remove the first character s_1= b because s_2= a. Then the string becomes s= acabcab.
2. During the second move, you can remove the fifth character s_5= c because s_4= b. Then the string becomes s= acabab.
3. During the third move, you can remove the sixth character s_6='b' because s_5= a. Then the string becomes s= acaba.
4. During the fourth move, the only character you can remove is s_4= b, because s_3= a (or s_5= a). The string becomes s= acaa and you cannot do anything with it.
Your task is to find the maximum possible number of characters you can remove if you choose the sequence of operations optimally.
Input
The first line of the input contains one integer |s| (1 ≤ |s| ≤ 100) — the length of s.
The second line of the input contains one string s consisting of |s| lowercase Latin letters.
Output
Print one integer — the maximum possible number of characters you can remove if you choose the sequence of moves optimally.
Examples
Input
8
bacabcab
Output
4
Input
4
bcda
Output
3
Input
6
abbbbb
Output
5
Note
The first example is described in the problem statement. Note that the sequence of moves provided in the statement is not the only, but it can be shown that the maximum possible answer to this test is 4.
In the second example, you can remove all but one character of s. The only possible answer follows.
1. During the first move, remove the third character s_3= d, s becomes bca.
2. During the second move, remove the second character s_2= c, s becomes ba.
3. And during the third move, remove the first character s_1= b, s becomes a.
Submitted Solution:
```
def calc(i):
if i!=0 and ord(s[i-1])==ord(s[i])-1:
return True
if i!=len(s)-1 and ord(s[i+1])==ord(s[i])-1:
return True
return False
n = int(input())
s = list(input())
ans = 0
for i in range(122,96,-1):
j = 0
while j<len(s):
if ord(s[j])==i and calc(j):
ans += 1
s.pop(j)
else:
j += 1
print (ans)
```
No
| 10,089 | [
0.2034912109375,
0.1744384765625,
0.1737060546875,
0.361572265625,
-0.4453125,
0.004779815673828125,
-0.4208984375,
-0.0103912353515625,
0.1571044921875,
0.83935546875,
0.763671875,
-0.05419921875,
-0.6025390625,
-1.1572265625,
-0.546875,
-0.0247650146484375,
-0.64306640625,
-0.69677734375,
-0.44482421875,
-0.09136962890625,
0.1368408203125,
-0.108154296875,
-1.2861328125,
-0.084228515625,
-0.0478515625,
0.77783203125,
0.6376953125,
-0.31982421875,
1.04296875,
1.2861328125,
-0.08221435546875,
-0.74072265625,
0.90673828125,
-0.8984375,
-0.34765625,
-0.476806640625,
0.75244140625,
-0.564453125,
-0.10736083984375,
-0.460693359375,
0.212646484375,
-0.49072265625,
0.473876953125,
-0.69921875,
-1.123046875,
-0.005405426025390625,
-0.29541015625,
-0.2325439453125,
-0.49365234375,
-0.489501953125,
0.0211334228515625,
-0.312255859375,
0.64013671875,
-0.09039306640625,
0.0694580078125,
0.359375,
0.14794921875,
-0.325927734375,
-0.47412109375,
0.441162109375,
0.254150390625,
0.10528564453125,
0.00856781005859375,
-0.5830078125,
-0.0770263671875,
0.2939453125,
-0.0032978057861328125,
0.06170654296875,
0.284423828125,
-0.712890625,
-0.1983642578125,
0.13916015625,
-0.448486328125,
-0.5771484375,
-0.22705078125,
0.0894775390625,
0.3662109375,
-0.35009765625,
-0.79345703125,
0.68505859375,
-0.1385498046875,
1.0205078125,
0.42626953125,
0.14111328125,
-0.60400390625,
-0.4345703125,
-0.0184478759765625,
0.1748046875,
-0.08184814453125,
-0.2548828125,
-0.322509765625,
0.8388671875,
-0.642578125,
-0.11236572265625,
0.31787109375,
0.8427734375,
-0.53662109375,
0.401611328125,
0.52197265625,
-0.0478515625,
0.65966796875,
0.67529296875,
-0.435546875,
0.94580078125,
-0.412841796875,
-0.034698486328125,
0.2137451171875,
-0.2178955078125,
-0.0299224853515625,
-0.34521484375,
-0.24560546875,
-0.184814453125,
0.2391357421875,
0.131103515625,
-0.71142578125,
0.9013671875,
-0.02740478515625,
0.498291015625,
-0.75634765625,
0.382080078125,
0.41943359375,
0.1519775390625,
0.7529296875,
-0.229248046875,
-0.1361083984375,
-0.466064453125,
-0.68310546875,
0.81005859375,
-0.76953125,
0.1263427734375,
0.1256103515625,
0.00965118408203125,
-0.62353515625,
0.259521484375,
-0.183349609375,
1.0556640625,
-0.345703125,
0.408935546875,
0.7890625,
-0.451416015625,
0.80078125,
0.016082763671875,
-0.151123046875,
1.458984375,
0.31884765625,
0.012115478515625,
0.77294921875,
0.41162109375,
-0.50341796875,
0.6025390625,
-1.0673828125,
0.66748046875,
0.2236328125,
0.2386474609375,
-0.460693359375,
0.311767578125,
-0.2154541015625,
0.55517578125,
0.1500244140625,
0.2442626953125,
-0.630859375,
0.205322265625,
-0.4248046875,
0.59228515625,
-0.1197509765625,
0.89501953125,
-0.4306640625,
-0.413330078125,
-0.0733642578125,
-0.326171875,
0.1390380859375,
-0.435791015625,
-0.0249176025390625,
0.7109375,
0.53955078125,
1.056640625,
0.81787109375,
-0.1783447265625,
0.497314453125,
0.46533203125,
-0.50537109375,
0.171630859375,
0.3203125,
0.491455078125,
0.5615234375,
0.1629638671875,
-0.0498046875,
-0.07305908203125,
-0.5751953125,
-0.5283203125,
0.040924072265625,
0.75830078125,
-0.322509765625,
0.153076171875,
0.1790771484375,
-0.232666015625,
-0.921875,
-0.1131591796875,
0.09503173828125,
-1.1220703125,
-0.415283203125,
0.376220703125,
0.0186614990234375,
0.6044921875,
-0.76708984375,
-0.65869140625,
0.306884765625,
1.185546875,
-0.465087890625,
0.257080078125,
0.81982421875,
0.15234375,
-0.1766357421875,
0.1805419921875,
0.055694580078125,
-0.166259765625,
-0.50439453125,
0.5322265625,
-0.2286376953125,
0.275390625,
0.08587646484375,
0.59814453125,
-0.1019287109375,
0.8388671875,
-0.2025146484375,
-0.26904296875,
0.257568359375,
1.2861328125,
0.064453125,
0.294189453125,
0.421875,
0.79736328125,
0.55078125,
0.59912109375,
0.74609375,
-0.0213470458984375,
0.798828125,
1.103515625,
-0.34375,
0.247314453125,
0.2470703125,
0.72021484375,
0.71142578125,
0.63818359375,
0.1551513671875,
0.51171875,
0.0308990478515625,
0.166748046875,
-0.357666015625,
0.2103271484375,
-0.3447265625,
0.419677734375,
0.07421875,
0.4697265625,
-0.222412109375,
-0.125244140625,
0.32763671875,
0.6123046875,
-1.12890625,
-0.476318359375,
-0.2171630859375,
0.120849609375,
0.398193359375,
0.28369140625,
0.50537109375,
0.361328125,
0.8046875,
0.302001953125,
-0.1148681640625,
-0.52001953125,
-0.869140625,
-1.03125,
-0.8837890625,
-0.39306640625,
-0.68603515625,
-0.17041015625,
0.23193359375,
-1.056640625,
0.2244873046875,
-0.638671875,
-0.320068359375,
0.1402587890625,
-0.413330078125,
0.66748046875,
-0.3486328125,
0.55029296875,
-0.67724609375,
0.19482421875,
0.2744140625,
1.0263671875,
-0.52001953125,
0.03741455078125,
-0.3349609375,
-0.405029296875,
0.109375,
-0.07647705078125,
0.5712890625,
0.055572509765625,
-0.67529296875,
-0.91259765625,
-0.470703125,
0.067626953125,
-0.51513671875,
0.007038116455078125,
-0.344482421875,
0.61181640625,
0.64990234375,
-0.53173828125,
0.80126953125,
0.95263671875,
-0.81689453125,
0.521484375,
-0.0113067626953125,
0.11224365234375,
-0.76806640625,
1.3525390625,
0.445556640625,
0.401123046875,
-0.7587890625,
-0.86669921875,
-0.366943359375,
0.189697265625,
0.29931640625,
-0.65673828125,
-0.2132568359375,
0.396728515625,
-0.1522216796875,
-0.90966796875,
0.7607421875,
-0.98046875,
-0.30908203125,
-0.44287109375,
-0.33740234375,
0.77099609375,
0.591796875,
0.385986328125,
-0.41943359375,
-0.54833984375,
0.04925537109375,
1.0185546875,
0.732421875,
-0.99951171875,
0.121826171875,
0.791015625,
-0.1331787109375,
0.1949462890625,
0.03985595703125,
-0.407958984375,
-0.321044921875,
0.393310546875,
-0.0174560546875,
0.84228515625,
0.03997802734375,
0.521484375,
0.7783203125,
0.400634765625,
-1.0263671875,
0.3125,
-0.33447265625,
1.013671875,
0.58837890625,
0.3828125,
0.58154296875,
-0.470458984375,
-0.5,
-0.77587890625,
0.39208984375,
0.326904296875,
0.5517578125,
-0.61962890625,
0.6015625,
0.352783203125,
-0.357177734375,
0.48779296875,
-0.955078125,
0.29443359375,
0.95263671875,
-0.286376953125,
1.0615234375,
-0.67919921875,
0.362060546875,
-0.00255584716796875,
0.258544921875,
0.482666015625,
0.59716796875,
0.271484375,
-0.404296875,
-0.2271728515625,
-0.333740234375,
-0.40087890625,
0.1695556640625,
-0.44775390625,
0.30224609375,
-0.10662841796875,
-0.486328125,
-0.830078125,
0.229736328125,
1.037109375,
0.8876953125,
0.1337890625,
0.20849609375,
0.172119140625,
0.1934814453125,
0.82373046875,
-0.2066650390625,
0.07708740234375,
-0.7373046875,
1.03125,
0.245849609375,
-0.25537109375,
-0.1492919921875,
-0.1624755859375,
-0.15234375,
0.38623046875,
0.1614990234375,
-0.07269287109375,
-1.341796875,
0.31982421875,
0.074951171875,
0.57421875,
-0.69580078125,
-0.136962890625,
-0.26708984375,
0.59716796875,
0.271240234375,
-0.845703125,
-0.0206146240234375,
-1.0869140625,
0.693359375,
0.478759765625,
0.12139892578125,
-0.455810546875,
-0.187744140625,
-0.85546875,
-0.71142578125,
0.44384765625,
0.8173828125,
-0.25732421875,
0.12005615234375,
-1.1943359375,
0.7744140625,
0.341796875,
-0.4248046875,
0.130126953125,
-0.260009765625,
0.46240234375,
0.2349853515625,
0.69287109375,
-0.7421875,
-0.7412109375,
0.0086517333984375,
-1.21484375,
0.61767578125,
-0.51416015625,
0.5537109375,
-0.0109710693359375,
-0.198486328125,
0.047210693359375,
0.375244140625,
-0.2939453125,
0.48583984375,
-0.33740234375,
0.0679931640625,
-0.80908203125,
-0.8310546875,
0.57763671875,
-0.315185546875,
-0.43017578125,
0.76513671875,
-0.156005859375,
-0.32421875,
0.181884765625,
0.322265625,
-0.48974609375,
0.362548828125,
-0.53076171875,
0.59130859375,
-0.302734375,
-0.77001953125,
-0.1866455078125,
-0.334716796875,
0.83447265625,
0.07073974609375,
-0.41064453125,
-0.216552734375,
-0.96826171875,
-0.0384521484375,
0.00223541259765625,
-0.6826171875,
0.2802734375,
0.397705078125,
-0.2386474609375,
-0.147705078125,
-0.0670166015625,
-0.2459716796875,
-0.4248046875,
-0.45849609375,
-0.447509765625,
0.3525390625,
0.346435546875,
0.8798828125,
0.1353759765625,
-0.332763671875,
-0.2193603515625,
0.08343505859375,
-0.10009765625,
-0.7880859375,
-0.244384765625,
-0.09991455078125,
-0.2138671875,
-0.53515625,
0.405517578125,
-0.021942138671875,
0.41796875,
0.88671875,
0.11553955078125,
0.4775390625,
0.364990234375,
-0.5087890625,
1.0712890625,
0.2467041015625,
-1.3310546875,
-0.85693359375,
0.469482421875,
0.259521484375,
0.387451171875,
0.171142578125,
-0.9345703125,
-0.59814453125,
-0.9853515625,
0.6630859375,
-0.64697265625,
0.007442474365234375,
-1.2666015625,
-0.6865234375,
-0.351318359375,
0.455078125,
-0.021881103515625,
-0.261474609375,
0.2392578125,
-1.14453125,
0.3212890625,
-0.7890625,
-0.306396484375,
-0.89892578125,
-0.9990234375,
-0.2213134765625,
0.89501953125,
0.60205078125,
0.46240234375,
0.10052490234375,
-0.28759765625,
0.3095703125,
-0.328125,
-0.7666015625,
-0.46630859375,
-0.28173828125,
-0.053802490234375,
-0.385009765625,
-0.13818359375,
-0.75537109375,
0.94970703125,
-0.61669921875,
0.431884765625,
0.0609130859375,
-0.386474609375,
-0.09063720703125,
-0.63232421875,
1.1357421875,
-0.35400390625,
-0.0675048828125,
-0.51416015625,
0.669921875,
0.58056640625,
-0.1759033203125,
-0.33349609375,
-0.45556640625,
-0.472900390625,
-1.103515625,
0.473388671875,
-0.66064453125,
0.22021484375,
-0.89501953125,
-0.0833740234375,
1.048828125,
-0.5234375,
0.28369140625,
1.068359375,
-0.01444244384765625,
0.3076171875,
-0.69580078125,
0.87060546875,
0.41455078125,
-0.69921875,
0.2197265625,
-0.004428863525390625,
-0.794921875,
0.1527099609375,
-0.489990234375,
-0.9130859375,
-0.625,
0.440185546875,
1.310546875,
-0.191650390625,
0.95947265625,
-0.189208984375,
-1.162109375,
-0.7080078125,
0.7939453125,
-0.0011444091796875,
0.443115234375,
0.9619140625,
-0.354248046875,
-0.35693359375,
0.1217041015625,
-0.062408447265625,
-0.399658203125,
-0.1512451171875,
1.1943359375,
-0.6884765625,
-0.705078125,
0.66552734375,
0.71728515625,
-1.05078125,
-0.91748046875,
-0.12078857421875,
-0.1046142578125,
-0.3134765625,
-0.59912109375,
0.47216796875,
0.751953125,
-0.6669921875,
0.1650390625,
0.178466796875,
-0.294677734375,
0.65771484375,
-0.032745361328125,
0.382080078125,
-0.59033203125,
0.355224609375,
0.377685546875,
-0.48876953125,
-0.55322265625,
-1.07421875,
-0.143798828125,
-0.1300048828125,
0.176513671875,
0.72900390625,
-0.201171875,
0.08001708984375,
0.50634765625,
-0.044097900390625,
0.6962890625,
-0.52099609375,
-0.1671142578125,
0.18994140625,
-0.471435546875,
-0.61083984375,
-0.08624267578125,
0.359619140625,
-0.0863037109375,
0.6513671875,
-0.6201171875,
-0.246826171875,
0.56298828125,
0.5009765625,
-0.447021484375,
-0.5703125,
-0.326904296875,
-1.2060546875,
-0.66845703125,
-0.80908203125,
-0.75830078125,
-0.2239990234375,
0.48193359375,
0.34716796875,
-0.75,
0.1578369140625,
0.50927734375,
-0.74462890625,
0.734375,
-0.35693359375,
0.288330078125,
-0.486572265625,
-0.3525390625,
-0.6689453125,
0.291748046875,
-0.64208984375,
-0.1378173828125,
0.0259246826171875,
0.76318359375,
-0.431640625,
0.3828125,
-0.11322021484375,
0.318603515625,
-0.4580078125,
-0.5302734375,
-0.0572509765625,
0.0947265625,
-0.356201171875,
1.15234375,
0.60693359375,
0.4912109375,
0.305419921875,
-0.1923828125,
-0.1268310546875,
-0.339111328125,
0.68505859375,
0.60791015625,
-0.2012939453125,
-0.262939453125,
-0.12249755859375,
0.0760498046875,
-0.88330078125,
0.548828125,
-0.418212890625,
-0.0268707275390625,
0.0273895263671875,
-0.3984375,
0.326904296875,
1.296875,
-0.48291015625,
0.27001953125,
-0.10345458984375,
-0.044830322265625,
0.388427734375,
0.182373046875,
0.1282958984375,
0.464111328125,
-0.1298828125,
-0.0665283203125,
-0.192626953125,
0.45361328125,
0.165771484375,
0.193115234375,
-0.309814453125,
-0.82568359375,
-0.98876953125,
-0.38232421875,
0.0501708984375,
0.140625,
0.27587890625,
-0.54150390625,
-0.09326171875,
0.330322265625,
-0.67431640625,
-0.08856201171875,
-1.2158203125,
-1.251953125,
0.396240234375,
0.01181793212890625,
-0.89697265625,
-0.203857421875,
-0.35302734375,
-0.190185546875,
-0.07073974609375,
0.4052734375,
-0.482421875,
0.417724609375,
0.1422119140625,
0.4580078125,
-0.050750732421875,
-0.2265625,
0.1922607421875,
0.54833984375,
-0.78857421875,
-0.70654296875,
0.1917724609375,
0.83544921875,
0.05419921875,
-0.31005859375,
-0.56982421875,
0.58837890625,
0.19482421875,
0.12432861328125,
-0.205078125,
0.1771240234375,
-0.1146240234375,
0.646484375,
-0.939453125,
-0.09576416015625,
-0.320068359375,
0.190185546875,
0.027557373046875,
-0.267578125,
-0.47021484375,
0.83984375,
0.62890625,
-0.4609375,
0.44482421875,
0.244384765625,
0.293701171875,
-0.1722412109375,
-0.09185791015625,
-0.135498046875,
0.467529296875,
0.68798828125,
0.79736328125,
-0.2998046875,
0.35595703125,
0.49853515625,
0.06292724609375,
-0.403564453125,
0.228515625,
0.1822509765625,
0.1988525390625,
0.038818359375,
-0.3515625,
-0.490234375,
-0.1593017578125,
-0.85546875,
0.218994140625,
-0.67236328125,
0.01346588134765625,
-0.10101318359375,
-0.80029296875,
0.9501953125,
-0.239501953125,
0.1104736328125,
0.19189453125,
-0.72607421875,
0.31884765625,
0.60302734375,
-0.11053466796875,
-0.2337646484375,
0.84326171875,
0.94580078125,
0.822265625,
0.72998046875,
0.30615234375,
0.41650390625,
-0.64599609375,
-0.01241302490234375,
0.338134765625,
0.02947998046875,
-0.477294921875,
-0.5458984375,
-0.8955078125,
0.6064453125,
-0.407470703125,
-0.152587890625,
0.402099609375,
-0.77978515625,
-0.0283660888671875,
0.06781005859375,
1.1015625,
-0.58935546875,
0.46826171875,
0.62744140625,
-0.47314453125,
-0.85595703125,
1.052734375,
-0.282470703125,
0.251220703125,
0.097412109375,
0.775390625,
0.1822509765625,
1.43359375,
0.810546875,
-0.53125,
0.30078125,
0.8779296875,
-0.419921875,
-0.7841796875,
-0.88525390625,
-0.335693359375,
-0.193115234375,
-0.5771484375,
-0.285400390625,
-0.11724853515625,
0.5654296875,
0.1427001953125,
-0.63525390625,
-0.06927490234375,
0.3037109375,
-0.8623046875,
0.357177734375,
0.1585693359375,
0.28955078125,
0.31494140625,
-0.07745361328125,
0.03570556640625,
-0.83984375,
0.10223388671875,
-0.5244140625,
0.434814453125,
-1.0458984375,
-0.2156982421875,
-1.021484375,
-0.7578125,
0.0128021240234375,
-0.442626953125,
-0.461181640625,
-0.8193359375,
0.416259765625,
0.5869140625,
0.397216796875,
0.254638671875,
-0.0802001953125,
0.416748046875,
1.00390625,
0.67431640625,
0.049163818359375,
0.83349609375,
0.42529296875,
0.006145477294921875,
-0.01317596435546875,
-0.2301025390625,
0.56689453125,
-0.1690673828125,
0.365478515625,
-0.296142578125,
0.162109375,
-0.98681640625,
-1.2607421875,
0.1378173828125,
0.479736328125,
0.201171875,
-0.372802734375,
-0.79833984375,
-0.32177734375,
-0.84375,
-0.10382080078125,
-0.921875,
0.74267578125,
-0.52001953125,
0.03448486328125,
-0.1688232421875,
-0.96875,
4.296875,
1.060546875,
1.125,
0.215576171875,
0.26904296875,
0.91015625,
0.06500244140625,
-0.4912109375,
-0.373779296875,
-0.394287109375,
0.806640625,
-0.56298828125,
0.198974609375,
0.8623046875,
0.41943359375,
0.45263671875,
-0.12158203125,
-0.01503753662109375,
0.2119140625,
-0.9794921875,
-0.97021484375,
0.292236328125,
-0.1734619140625,
0.53759765625,
-0.10186767578125,
0.44677734375,
0.5478515625,
-0.75732421875,
-0.35009765625,
-0.82080078125,
0.331787109375,
-0.35302734375,
0.720703125,
-0.07843017578125,
0.0980224609375,
0.64794921875,
0.345703125,
-0.34130859375,
-0.2296142578125,
0.134765625,
-0.208740234375,
-0.004413604736328125,
0.36865234375,
-0.76220703125,
-0.0031871795654296875,
0.3955078125,
-0.80078125,
0.58251953125,
0.233154296875,
-1.25390625,
0.919921875,
-0.227783203125,
0.422607421875,
-0.45654296875,
-0.69091796875,
0.244384765625,
0.216064453125,
-0.0787353515625,
-0.011962890625,
0.47705078125,
0.205810546875,
0.455810546875,
-0.0266265869140625,
0.4970703125,
-1.2470703125,
0.5615234375,
0.140625,
0.38037109375,
-0.693359375,
0.01433563232421875,
-0.1492919921875,
-0.6513671875,
-0.2288818359375,
-0.489990234375,
0.53173828125,
0.376220703125,
-0.2479248046875,
0.41552734375,
0.043670654296875,
-0.41845703125,
0.08331298828125,
-0.2861328125,
-0.1529541015625,
-0.69189453125,
0.7021484375,
1.294921875,
-0.55126953125,
-0.407958984375,
-0.2080078125,
0.4189453125,
0.60791015625,
0.449951171875,
0.22607421875,
-0.6640625,
-0.1810302734375
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
You are given a string s consisting of lowercase Latin letters. Let the length of s be |s|. You may perform several operations on this string.
In one operation, you can choose some index i and remove the i-th character of s (s_i) if at least one of its adjacent characters is the previous letter in the Latin alphabet for s_i. For example, the previous letter for b is a, the previous letter for s is r, the letter a has no previous letters. Note that after each removal the length of the string decreases by one. So, the index i should satisfy the condition 1 ≤ i ≤ |s| during each operation.
For the character s_i adjacent characters are s_{i-1} and s_{i+1}. The first and the last characters of s both have only one adjacent character (unless |s| = 1).
Consider the following example. Let s= bacabcab.
1. During the first move, you can remove the first character s_1= b because s_2= a. Then the string becomes s= acabcab.
2. During the second move, you can remove the fifth character s_5= c because s_4= b. Then the string becomes s= acabab.
3. During the third move, you can remove the sixth character s_6='b' because s_5= a. Then the string becomes s= acaba.
4. During the fourth move, the only character you can remove is s_4= b, because s_3= a (or s_5= a). The string becomes s= acaa and you cannot do anything with it.
Your task is to find the maximum possible number of characters you can remove if you choose the sequence of operations optimally.
Input
The first line of the input contains one integer |s| (1 ≤ |s| ≤ 100) — the length of s.
The second line of the input contains one string s consisting of |s| lowercase Latin letters.
Output
Print one integer — the maximum possible number of characters you can remove if you choose the sequence of moves optimally.
Examples
Input
8
bacabcab
Output
4
Input
4
bcda
Output
3
Input
6
abbbbb
Output
5
Note
The first example is described in the problem statement. Note that the sequence of moves provided in the statement is not the only, but it can be shown that the maximum possible answer to this test is 4.
In the second example, you can remove all but one character of s. The only possible answer follows.
1. During the first move, remove the third character s_3= d, s becomes bca.
2. During the second move, remove the second character s_2= c, s becomes ba.
3. And during the third move, remove the first character s_1= b, s becomes a.
Submitted Solution:
```
N = int(input())
S = list(input())
res = 0
i = len(S) - 1
while i >= 0 and len(S) > 1:
#print(i)
if (i + 1 < len(S) and ord(S[i]) - ord(S[i + 1]) == 1) or (i - 1 >= 0 and ord(S[i]) - ord(S[i - 1]) == 1):
S.pop(i)
res += 1
else:
i -= 1
if i >= len(S):
i = len(S) - 1
print(res)
```
No
| 10,090 | [
0.2034912109375,
0.1744384765625,
0.1737060546875,
0.361572265625,
-0.4453125,
0.004779815673828125,
-0.4208984375,
-0.0103912353515625,
0.1571044921875,
0.83935546875,
0.763671875,
-0.05419921875,
-0.6025390625,
-1.1572265625,
-0.546875,
-0.0247650146484375,
-0.64306640625,
-0.69677734375,
-0.44482421875,
-0.09136962890625,
0.1368408203125,
-0.108154296875,
-1.2861328125,
-0.084228515625,
-0.0478515625,
0.77783203125,
0.6376953125,
-0.31982421875,
1.04296875,
1.2861328125,
-0.08221435546875,
-0.74072265625,
0.90673828125,
-0.8984375,
-0.34765625,
-0.476806640625,
0.75244140625,
-0.564453125,
-0.10736083984375,
-0.460693359375,
0.212646484375,
-0.49072265625,
0.473876953125,
-0.69921875,
-1.123046875,
-0.005405426025390625,
-0.29541015625,
-0.2325439453125,
-0.49365234375,
-0.489501953125,
0.0211334228515625,
-0.312255859375,
0.64013671875,
-0.09039306640625,
0.0694580078125,
0.359375,
0.14794921875,
-0.325927734375,
-0.47412109375,
0.441162109375,
0.254150390625,
0.10528564453125,
0.00856781005859375,
-0.5830078125,
-0.0770263671875,
0.2939453125,
-0.0032978057861328125,
0.06170654296875,
0.284423828125,
-0.712890625,
-0.1983642578125,
0.13916015625,
-0.448486328125,
-0.5771484375,
-0.22705078125,
0.0894775390625,
0.3662109375,
-0.35009765625,
-0.79345703125,
0.68505859375,
-0.1385498046875,
1.0205078125,
0.42626953125,
0.14111328125,
-0.60400390625,
-0.4345703125,
-0.0184478759765625,
0.1748046875,
-0.08184814453125,
-0.2548828125,
-0.322509765625,
0.8388671875,
-0.642578125,
-0.11236572265625,
0.31787109375,
0.8427734375,
-0.53662109375,
0.401611328125,
0.52197265625,
-0.0478515625,
0.65966796875,
0.67529296875,
-0.435546875,
0.94580078125,
-0.412841796875,
-0.034698486328125,
0.2137451171875,
-0.2178955078125,
-0.0299224853515625,
-0.34521484375,
-0.24560546875,
-0.184814453125,
0.2391357421875,
0.131103515625,
-0.71142578125,
0.9013671875,
-0.02740478515625,
0.498291015625,
-0.75634765625,
0.382080078125,
0.41943359375,
0.1519775390625,
0.7529296875,
-0.229248046875,
-0.1361083984375,
-0.466064453125,
-0.68310546875,
0.81005859375,
-0.76953125,
0.1263427734375,
0.1256103515625,
0.00965118408203125,
-0.62353515625,
0.259521484375,
-0.183349609375,
1.0556640625,
-0.345703125,
0.408935546875,
0.7890625,
-0.451416015625,
0.80078125,
0.016082763671875,
-0.151123046875,
1.458984375,
0.31884765625,
0.012115478515625,
0.77294921875,
0.41162109375,
-0.50341796875,
0.6025390625,
-1.0673828125,
0.66748046875,
0.2236328125,
0.2386474609375,
-0.460693359375,
0.311767578125,
-0.2154541015625,
0.55517578125,
0.1500244140625,
0.2442626953125,
-0.630859375,
0.205322265625,
-0.4248046875,
0.59228515625,
-0.1197509765625,
0.89501953125,
-0.4306640625,
-0.413330078125,
-0.0733642578125,
-0.326171875,
0.1390380859375,
-0.435791015625,
-0.0249176025390625,
0.7109375,
0.53955078125,
1.056640625,
0.81787109375,
-0.1783447265625,
0.497314453125,
0.46533203125,
-0.50537109375,
0.171630859375,
0.3203125,
0.491455078125,
0.5615234375,
0.1629638671875,
-0.0498046875,
-0.07305908203125,
-0.5751953125,
-0.5283203125,
0.040924072265625,
0.75830078125,
-0.322509765625,
0.153076171875,
0.1790771484375,
-0.232666015625,
-0.921875,
-0.1131591796875,
0.09503173828125,
-1.1220703125,
-0.415283203125,
0.376220703125,
0.0186614990234375,
0.6044921875,
-0.76708984375,
-0.65869140625,
0.306884765625,
1.185546875,
-0.465087890625,
0.257080078125,
0.81982421875,
0.15234375,
-0.1766357421875,
0.1805419921875,
0.055694580078125,
-0.166259765625,
-0.50439453125,
0.5322265625,
-0.2286376953125,
0.275390625,
0.08587646484375,
0.59814453125,
-0.1019287109375,
0.8388671875,
-0.2025146484375,
-0.26904296875,
0.257568359375,
1.2861328125,
0.064453125,
0.294189453125,
0.421875,
0.79736328125,
0.55078125,
0.59912109375,
0.74609375,
-0.0213470458984375,
0.798828125,
1.103515625,
-0.34375,
0.247314453125,
0.2470703125,
0.72021484375,
0.71142578125,
0.63818359375,
0.1551513671875,
0.51171875,
0.0308990478515625,
0.166748046875,
-0.357666015625,
0.2103271484375,
-0.3447265625,
0.419677734375,
0.07421875,
0.4697265625,
-0.222412109375,
-0.125244140625,
0.32763671875,
0.6123046875,
-1.12890625,
-0.476318359375,
-0.2171630859375,
0.120849609375,
0.398193359375,
0.28369140625,
0.50537109375,
0.361328125,
0.8046875,
0.302001953125,
-0.1148681640625,
-0.52001953125,
-0.869140625,
-1.03125,
-0.8837890625,
-0.39306640625,
-0.68603515625,
-0.17041015625,
0.23193359375,
-1.056640625,
0.2244873046875,
-0.638671875,
-0.320068359375,
0.1402587890625,
-0.413330078125,
0.66748046875,
-0.3486328125,
0.55029296875,
-0.67724609375,
0.19482421875,
0.2744140625,
1.0263671875,
-0.52001953125,
0.03741455078125,
-0.3349609375,
-0.405029296875,
0.109375,
-0.07647705078125,
0.5712890625,
0.055572509765625,
-0.67529296875,
-0.91259765625,
-0.470703125,
0.067626953125,
-0.51513671875,
0.007038116455078125,
-0.344482421875,
0.61181640625,
0.64990234375,
-0.53173828125,
0.80126953125,
0.95263671875,
-0.81689453125,
0.521484375,
-0.0113067626953125,
0.11224365234375,
-0.76806640625,
1.3525390625,
0.445556640625,
0.401123046875,
-0.7587890625,
-0.86669921875,
-0.366943359375,
0.189697265625,
0.29931640625,
-0.65673828125,
-0.2132568359375,
0.396728515625,
-0.1522216796875,
-0.90966796875,
0.7607421875,
-0.98046875,
-0.30908203125,
-0.44287109375,
-0.33740234375,
0.77099609375,
0.591796875,
0.385986328125,
-0.41943359375,
-0.54833984375,
0.04925537109375,
1.0185546875,
0.732421875,
-0.99951171875,
0.121826171875,
0.791015625,
-0.1331787109375,
0.1949462890625,
0.03985595703125,
-0.407958984375,
-0.321044921875,
0.393310546875,
-0.0174560546875,
0.84228515625,
0.03997802734375,
0.521484375,
0.7783203125,
0.400634765625,
-1.0263671875,
0.3125,
-0.33447265625,
1.013671875,
0.58837890625,
0.3828125,
0.58154296875,
-0.470458984375,
-0.5,
-0.77587890625,
0.39208984375,
0.326904296875,
0.5517578125,
-0.61962890625,
0.6015625,
0.352783203125,
-0.357177734375,
0.48779296875,
-0.955078125,
0.29443359375,
0.95263671875,
-0.286376953125,
1.0615234375,
-0.67919921875,
0.362060546875,
-0.00255584716796875,
0.258544921875,
0.482666015625,
0.59716796875,
0.271484375,
-0.404296875,
-0.2271728515625,
-0.333740234375,
-0.40087890625,
0.1695556640625,
-0.44775390625,
0.30224609375,
-0.10662841796875,
-0.486328125,
-0.830078125,
0.229736328125,
1.037109375,
0.8876953125,
0.1337890625,
0.20849609375,
0.172119140625,
0.1934814453125,
0.82373046875,
-0.2066650390625,
0.07708740234375,
-0.7373046875,
1.03125,
0.245849609375,
-0.25537109375,
-0.1492919921875,
-0.1624755859375,
-0.15234375,
0.38623046875,
0.1614990234375,
-0.07269287109375,
-1.341796875,
0.31982421875,
0.074951171875,
0.57421875,
-0.69580078125,
-0.136962890625,
-0.26708984375,
0.59716796875,
0.271240234375,
-0.845703125,
-0.0206146240234375,
-1.0869140625,
0.693359375,
0.478759765625,
0.12139892578125,
-0.455810546875,
-0.187744140625,
-0.85546875,
-0.71142578125,
0.44384765625,
0.8173828125,
-0.25732421875,
0.12005615234375,
-1.1943359375,
0.7744140625,
0.341796875,
-0.4248046875,
0.130126953125,
-0.260009765625,
0.46240234375,
0.2349853515625,
0.69287109375,
-0.7421875,
-0.7412109375,
0.0086517333984375,
-1.21484375,
0.61767578125,
-0.51416015625,
0.5537109375,
-0.0109710693359375,
-0.198486328125,
0.047210693359375,
0.375244140625,
-0.2939453125,
0.48583984375,
-0.33740234375,
0.0679931640625,
-0.80908203125,
-0.8310546875,
0.57763671875,
-0.315185546875,
-0.43017578125,
0.76513671875,
-0.156005859375,
-0.32421875,
0.181884765625,
0.322265625,
-0.48974609375,
0.362548828125,
-0.53076171875,
0.59130859375,
-0.302734375,
-0.77001953125,
-0.1866455078125,
-0.334716796875,
0.83447265625,
0.07073974609375,
-0.41064453125,
-0.216552734375,
-0.96826171875,
-0.0384521484375,
0.00223541259765625,
-0.6826171875,
0.2802734375,
0.397705078125,
-0.2386474609375,
-0.147705078125,
-0.0670166015625,
-0.2459716796875,
-0.4248046875,
-0.45849609375,
-0.447509765625,
0.3525390625,
0.346435546875,
0.8798828125,
0.1353759765625,
-0.332763671875,
-0.2193603515625,
0.08343505859375,
-0.10009765625,
-0.7880859375,
-0.244384765625,
-0.09991455078125,
-0.2138671875,
-0.53515625,
0.405517578125,
-0.021942138671875,
0.41796875,
0.88671875,
0.11553955078125,
0.4775390625,
0.364990234375,
-0.5087890625,
1.0712890625,
0.2467041015625,
-1.3310546875,
-0.85693359375,
0.469482421875,
0.259521484375,
0.387451171875,
0.171142578125,
-0.9345703125,
-0.59814453125,
-0.9853515625,
0.6630859375,
-0.64697265625,
0.007442474365234375,
-1.2666015625,
-0.6865234375,
-0.351318359375,
0.455078125,
-0.021881103515625,
-0.261474609375,
0.2392578125,
-1.14453125,
0.3212890625,
-0.7890625,
-0.306396484375,
-0.89892578125,
-0.9990234375,
-0.2213134765625,
0.89501953125,
0.60205078125,
0.46240234375,
0.10052490234375,
-0.28759765625,
0.3095703125,
-0.328125,
-0.7666015625,
-0.46630859375,
-0.28173828125,
-0.053802490234375,
-0.385009765625,
-0.13818359375,
-0.75537109375,
0.94970703125,
-0.61669921875,
0.431884765625,
0.0609130859375,
-0.386474609375,
-0.09063720703125,
-0.63232421875,
1.1357421875,
-0.35400390625,
-0.0675048828125,
-0.51416015625,
0.669921875,
0.58056640625,
-0.1759033203125,
-0.33349609375,
-0.45556640625,
-0.472900390625,
-1.103515625,
0.473388671875,
-0.66064453125,
0.22021484375,
-0.89501953125,
-0.0833740234375,
1.048828125,
-0.5234375,
0.28369140625,
1.068359375,
-0.01444244384765625,
0.3076171875,
-0.69580078125,
0.87060546875,
0.41455078125,
-0.69921875,
0.2197265625,
-0.004428863525390625,
-0.794921875,
0.1527099609375,
-0.489990234375,
-0.9130859375,
-0.625,
0.440185546875,
1.310546875,
-0.191650390625,
0.95947265625,
-0.189208984375,
-1.162109375,
-0.7080078125,
0.7939453125,
-0.0011444091796875,
0.443115234375,
0.9619140625,
-0.354248046875,
-0.35693359375,
0.1217041015625,
-0.062408447265625,
-0.399658203125,
-0.1512451171875,
1.1943359375,
-0.6884765625,
-0.705078125,
0.66552734375,
0.71728515625,
-1.05078125,
-0.91748046875,
-0.12078857421875,
-0.1046142578125,
-0.3134765625,
-0.59912109375,
0.47216796875,
0.751953125,
-0.6669921875,
0.1650390625,
0.178466796875,
-0.294677734375,
0.65771484375,
-0.032745361328125,
0.382080078125,
-0.59033203125,
0.355224609375,
0.377685546875,
-0.48876953125,
-0.55322265625,
-1.07421875,
-0.143798828125,
-0.1300048828125,
0.176513671875,
0.72900390625,
-0.201171875,
0.08001708984375,
0.50634765625,
-0.044097900390625,
0.6962890625,
-0.52099609375,
-0.1671142578125,
0.18994140625,
-0.471435546875,
-0.61083984375,
-0.08624267578125,
0.359619140625,
-0.0863037109375,
0.6513671875,
-0.6201171875,
-0.246826171875,
0.56298828125,
0.5009765625,
-0.447021484375,
-0.5703125,
-0.326904296875,
-1.2060546875,
-0.66845703125,
-0.80908203125,
-0.75830078125,
-0.2239990234375,
0.48193359375,
0.34716796875,
-0.75,
0.1578369140625,
0.50927734375,
-0.74462890625,
0.734375,
-0.35693359375,
0.288330078125,
-0.486572265625,
-0.3525390625,
-0.6689453125,
0.291748046875,
-0.64208984375,
-0.1378173828125,
0.0259246826171875,
0.76318359375,
-0.431640625,
0.3828125,
-0.11322021484375,
0.318603515625,
-0.4580078125,
-0.5302734375,
-0.0572509765625,
0.0947265625,
-0.356201171875,
1.15234375,
0.60693359375,
0.4912109375,
0.305419921875,
-0.1923828125,
-0.1268310546875,
-0.339111328125,
0.68505859375,
0.60791015625,
-0.2012939453125,
-0.262939453125,
-0.12249755859375,
0.0760498046875,
-0.88330078125,
0.548828125,
-0.418212890625,
-0.0268707275390625,
0.0273895263671875,
-0.3984375,
0.326904296875,
1.296875,
-0.48291015625,
0.27001953125,
-0.10345458984375,
-0.044830322265625,
0.388427734375,
0.182373046875,
0.1282958984375,
0.464111328125,
-0.1298828125,
-0.0665283203125,
-0.192626953125,
0.45361328125,
0.165771484375,
0.193115234375,
-0.309814453125,
-0.82568359375,
-0.98876953125,
-0.38232421875,
0.0501708984375,
0.140625,
0.27587890625,
-0.54150390625,
-0.09326171875,
0.330322265625,
-0.67431640625,
-0.08856201171875,
-1.2158203125,
-1.251953125,
0.396240234375,
0.01181793212890625,
-0.89697265625,
-0.203857421875,
-0.35302734375,
-0.190185546875,
-0.07073974609375,
0.4052734375,
-0.482421875,
0.417724609375,
0.1422119140625,
0.4580078125,
-0.050750732421875,
-0.2265625,
0.1922607421875,
0.54833984375,
-0.78857421875,
-0.70654296875,
0.1917724609375,
0.83544921875,
0.05419921875,
-0.31005859375,
-0.56982421875,
0.58837890625,
0.19482421875,
0.12432861328125,
-0.205078125,
0.1771240234375,
-0.1146240234375,
0.646484375,
-0.939453125,
-0.09576416015625,
-0.320068359375,
0.190185546875,
0.027557373046875,
-0.267578125,
-0.47021484375,
0.83984375,
0.62890625,
-0.4609375,
0.44482421875,
0.244384765625,
0.293701171875,
-0.1722412109375,
-0.09185791015625,
-0.135498046875,
0.467529296875,
0.68798828125,
0.79736328125,
-0.2998046875,
0.35595703125,
0.49853515625,
0.06292724609375,
-0.403564453125,
0.228515625,
0.1822509765625,
0.1988525390625,
0.038818359375,
-0.3515625,
-0.490234375,
-0.1593017578125,
-0.85546875,
0.218994140625,
-0.67236328125,
0.01346588134765625,
-0.10101318359375,
-0.80029296875,
0.9501953125,
-0.239501953125,
0.1104736328125,
0.19189453125,
-0.72607421875,
0.31884765625,
0.60302734375,
-0.11053466796875,
-0.2337646484375,
0.84326171875,
0.94580078125,
0.822265625,
0.72998046875,
0.30615234375,
0.41650390625,
-0.64599609375,
-0.01241302490234375,
0.338134765625,
0.02947998046875,
-0.477294921875,
-0.5458984375,
-0.8955078125,
0.6064453125,
-0.407470703125,
-0.152587890625,
0.402099609375,
-0.77978515625,
-0.0283660888671875,
0.06781005859375,
1.1015625,
-0.58935546875,
0.46826171875,
0.62744140625,
-0.47314453125,
-0.85595703125,
1.052734375,
-0.282470703125,
0.251220703125,
0.097412109375,
0.775390625,
0.1822509765625,
1.43359375,
0.810546875,
-0.53125,
0.30078125,
0.8779296875,
-0.419921875,
-0.7841796875,
-0.88525390625,
-0.335693359375,
-0.193115234375,
-0.5771484375,
-0.285400390625,
-0.11724853515625,
0.5654296875,
0.1427001953125,
-0.63525390625,
-0.06927490234375,
0.3037109375,
-0.8623046875,
0.357177734375,
0.1585693359375,
0.28955078125,
0.31494140625,
-0.07745361328125,
0.03570556640625,
-0.83984375,
0.10223388671875,
-0.5244140625,
0.434814453125,
-1.0458984375,
-0.2156982421875,
-1.021484375,
-0.7578125,
0.0128021240234375,
-0.442626953125,
-0.461181640625,
-0.8193359375,
0.416259765625,
0.5869140625,
0.397216796875,
0.254638671875,
-0.0802001953125,
0.416748046875,
1.00390625,
0.67431640625,
0.049163818359375,
0.83349609375,
0.42529296875,
0.006145477294921875,
-0.01317596435546875,
-0.2301025390625,
0.56689453125,
-0.1690673828125,
0.365478515625,
-0.296142578125,
0.162109375,
-0.98681640625,
-1.2607421875,
0.1378173828125,
0.479736328125,
0.201171875,
-0.372802734375,
-0.79833984375,
-0.32177734375,
-0.84375,
-0.10382080078125,
-0.921875,
0.74267578125,
-0.52001953125,
0.03448486328125,
-0.1688232421875,
-0.96875,
4.296875,
1.060546875,
1.125,
0.215576171875,
0.26904296875,
0.91015625,
0.06500244140625,
-0.4912109375,
-0.373779296875,
-0.394287109375,
0.806640625,
-0.56298828125,
0.198974609375,
0.8623046875,
0.41943359375,
0.45263671875,
-0.12158203125,
-0.01503753662109375,
0.2119140625,
-0.9794921875,
-0.97021484375,
0.292236328125,
-0.1734619140625,
0.53759765625,
-0.10186767578125,
0.44677734375,
0.5478515625,
-0.75732421875,
-0.35009765625,
-0.82080078125,
0.331787109375,
-0.35302734375,
0.720703125,
-0.07843017578125,
0.0980224609375,
0.64794921875,
0.345703125,
-0.34130859375,
-0.2296142578125,
0.134765625,
-0.208740234375,
-0.004413604736328125,
0.36865234375,
-0.76220703125,
-0.0031871795654296875,
0.3955078125,
-0.80078125,
0.58251953125,
0.233154296875,
-1.25390625,
0.919921875,
-0.227783203125,
0.422607421875,
-0.45654296875,
-0.69091796875,
0.244384765625,
0.216064453125,
-0.0787353515625,
-0.011962890625,
0.47705078125,
0.205810546875,
0.455810546875,
-0.0266265869140625,
0.4970703125,
-1.2470703125,
0.5615234375,
0.140625,
0.38037109375,
-0.693359375,
0.01433563232421875,
-0.1492919921875,
-0.6513671875,
-0.2288818359375,
-0.489990234375,
0.53173828125,
0.376220703125,
-0.2479248046875,
0.41552734375,
0.043670654296875,
-0.41845703125,
0.08331298828125,
-0.2861328125,
-0.1529541015625,
-0.69189453125,
0.7021484375,
1.294921875,
-0.55126953125,
-0.407958984375,
-0.2080078125,
0.4189453125,
0.60791015625,
0.449951171875,
0.22607421875,
-0.6640625,
-0.1810302734375
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
This is the hard version of the problem. The difference between the versions is the constraint on n and the required number of operations. You can make hacks only if all versions of the problem are solved.
There are two binary strings a and b of length n (a binary string is a string consisting of symbols 0 and 1). In an operation, you select a prefix of a, and simultaneously invert the bits in the prefix (0 changes to 1 and 1 changes to 0) and reverse the order of the bits in the prefix.
For example, if a=001011 and you select the prefix of length 3, it becomes 011011. Then if you select the entire string, it becomes 001001.
Your task is to transform the string a into b in at most 2n operations. It can be proved that it is always possible.
Input
The first line contains a single integer t (1≤ t≤ 1000) — the number of test cases. Next 3t lines contain descriptions of test cases.
The first line of each test case contains a single integer n (1≤ n≤ 10^5) — the length of the binary strings.
The next two lines contain two binary strings a and b of length n.
It is guaranteed that the sum of n across all test cases does not exceed 10^5.
Output
For each test case, output an integer k (0≤ k≤ 2n), followed by k integers p_1,…,p_k (1≤ p_i≤ n). Here k is the number of operations you use and p_i is the length of the prefix you flip in the i-th operation.
Example
Input
5
2
01
10
5
01011
11100
2
01
01
10
0110011011
1000110100
1
0
1
Output
3 1 2 1
6 5 2 5 3 1 2
0
9 4 1 2 10 4 1 2 1 5
1 1
Note
In the first test case, we have 01→ 11→ 00→ 10.
In the second test case, we have 01011→ 00101→ 11101→ 01000→ 10100→ 00100→ 11100.
In the third test case, the strings are already the same. Another solution is to flip the prefix of length 2, which will leave a unchanged.
Tags: constructive algorithms, data structures, implementation, strings, two pointers
Correct Solution:
```
from sys import stdin
input=stdin.readline
def answer():
ans = []
i , j = 0 , n - 1
ind = n - 1
while(i <= j):
if(a[i] == b[ind]):
ans.append(1)
ans.append(ind + 1)
else:
ans.append(ind + 1)
if(i == j):break
ind -= 1
if(a[j] ^ 1 == b[ind]):
ans.append(1)
ans.append(ind + 1)
else:
ans.append(ind + 1)
ind -= 1
i , j = i + 1 , j - 1
print(len(ans) , *ans)
for T in range(int(input())):
n=int(input())
a = [int(i) for i in input().strip()]
b = [int(i) for i in input().strip()]
answer()
```
| 10,124 | [
0.153564453125,
-0.4228515625,
-0.0277252197265625,
0.0732421875,
-0.385986328125,
-0.77392578125,
-0.007328033447265625,
-0.20361328125,
0.1865234375,
1.0166015625,
0.775390625,
-0.290771484375,
0.332275390625,
-0.8994140625,
-0.55126953125,
0.326171875,
-0.359375,
-0.5791015625,
-0.3115234375,
-0.548828125,
-0.02301025390625,
-0.1217041015625,
-1.357421875,
-0.0821533203125,
-0.60302734375,
0.8154296875,
0.31884765625,
-0.1417236328125,
1.0341796875,
1.056640625,
-0.40771484375,
-0.452392578125,
0.744140625,
-0.98388671875,
-0.4345703125,
-0.496826171875,
0.59814453125,
-0.82470703125,
-0.1358642578125,
-0.279541015625,
0.5732421875,
-0.25390625,
0.234130859375,
-0.91357421875,
-1.3173828125,
0.189208984375,
-0.3544921875,
-0.303955078125,
-0.1495361328125,
-0.459716796875,
0.02960205078125,
-0.230712890625,
0.60595703125,
-0.11480712890625,
0.06622314453125,
0.1519775390625,
0.2271728515625,
-0.55517578125,
-0.4560546875,
0.1612548828125,
0.08197021484375,
0.131591796875,
0.1962890625,
-0.74169921875,
0.11822509765625,
0.1927490234375,
-0.258056640625,
-0.431640625,
-0.406005859375,
-0.9931640625,
-0.310791015625,
-0.0506591796875,
-0.72021484375,
-0.331787109375,
-0.1009521484375,
0.254638671875,
0.2509765625,
-0.1640625,
-0.86376953125,
0.7666015625,
-0.2890625,
0.923828125,
0.089599609375,
0.2066650390625,
-0.478271484375,
-0.5361328125,
-0.04327392578125,
0.191162109375,
0.1610107421875,
-0.1287841796875,
-0.383056640625,
0.572265625,
-0.470703125,
0.0885009765625,
0.394775390625,
0.69580078125,
-0.3154296875,
0.259033203125,
0.4404296875,
-0.03192138671875,
0.7900390625,
1.232421875,
-0.192138671875,
1.1826171875,
-0.61376953125,
-0.214111328125,
-0.021820068359375,
0.135986328125,
-0.04559326171875,
-0.03448486328125,
0.01007843017578125,
-0.164794921875,
0.67529296875,
0.3759765625,
-0.415771484375,
0.78515625,
-0.0286712646484375,
0.41650390625,
-0.99755859375,
0.472412109375,
0.65478515625,
-0.06817626953125,
0.732421875,
-0.26708984375,
-0.164794921875,
-0.236572265625,
-0.32470703125,
1.138671875,
-0.41650390625,
-0.428955078125,
0.27099609375,
0.004726409912109375,
-0.281005859375,
0.342041015625,
-0.042236328125,
0.7216796875,
-0.2364501953125,
0.41064453125,
0.72705078125,
-0.47900390625,
0.78564453125,
-0.1802978515625,
-0.162353515625,
1.703125,
0.5,
0.1302490234375,
1.0205078125,
0.42724609375,
-0.31103515625,
0.4912109375,
-0.9091796875,
0.5810546875,
0.257568359375,
0.33154296875,
-0.12432861328125,
-0.10906982421875,
-0.269775390625,
0.5380859375,
0.1080322265625,
0.1788330078125,
-0.051910400390625,
0.27880859375,
0.049285888671875,
0.9287109375,
-0.120849609375,
1.076171875,
-0.387939453125,
-0.358642578125,
-0.260986328125,
-0.6513671875,
0.52490234375,
-0.2244873046875,
-0.4287109375,
0.59814453125,
0.55224609375,
1.1435546875,
1.3544921875,
-0.46875,
0.2366943359375,
0.332275390625,
-0.75244140625,
0.017913818359375,
0.69970703125,
0.95361328125,
-0.140869140625,
0.2431640625,
-0.07366943359375,
-0.404052734375,
-0.499267578125,
-0.73828125,
-0.11859130859375,
0.68798828125,
-0.7470703125,
0.188720703125,
0.32666015625,
0.2890625,
-0.89697265625,
-0.10906982421875,
-0.2626953125,
-0.685546875,
-0.295166015625,
0.494140625,
-0.43994140625,
0.51904296875,
-0.76806640625,
-0.48486328125,
0.6005859375,
1.06640625,
-0.2327880859375,
0.372314453125,
0.412109375,
0.1552734375,
-0.242431640625,
0.347900390625,
0.306884765625,
-0.218017578125,
-0.4453125,
1.1083984375,
0.308349609375,
-0.072998046875,
0.08050537109375,
0.69873046875,
0.619140625,
0.393798828125,
-0.2171630859375,
0.040557861328125,
0.3359375,
1.1708984375,
0.138427734375,
0.81884765625,
0.026214599609375,
0.7587890625,
0.66943359375,
0.65478515625,
0.5322265625,
0.08660888671875,
0.63330078125,
0.86474609375,
0.1585693359375,
0.408447265625,
0.41064453125,
0.46435546875,
0.305419921875,
0.49267578125,
0.260986328125,
0.1895751953125,
0.260498046875,
0.044036865234375,
-0.44384765625,
0.17529296875,
-0.417724609375,
0.85888671875,
-0.11126708984375,
0.14794921875,
-0.352783203125,
-0.464599609375,
0.1483154296875,
0.8896484375,
-0.7587890625,
-0.1837158203125,
0.142578125,
0.049560546875,
0.1229248046875,
-0.2666015625,
0.333251953125,
0.369873046875,
0.41845703125,
0.501953125,
-0.3955078125,
-0.2188720703125,
-1.169921875,
-0.84375,
-0.84130859375,
-0.5087890625,
-0.85205078125,
0.06341552734375,
0.1259765625,
-0.7001953125,
0.3251953125,
-0.5498046875,
-0.2587890625,
0.233154296875,
-0.67236328125,
0.6357421875,
-0.171875,
0.279541015625,
-1.390625,
0.8125,
0.297607421875,
1.1630859375,
-0.75146484375,
0.09808349609375,
0.1253662109375,
-0.8076171875,
0.041015625,
0.090576171875,
0.225341796875,
-0.0308685302734375,
-0.7197265625,
-0.66357421875,
-0.7421875,
-0.260986328125,
-0.301513671875,
0.359130859375,
-0.52490234375,
0.8994140625,
0.751953125,
-0.5791015625,
0.75927734375,
0.87841796875,
-0.619140625,
0.362548828125,
0.4228515625,
0.1287841796875,
-0.80224609375,
1.607421875,
0.49072265625,
0.368896484375,
-0.431640625,
-0.436279296875,
-0.2095947265625,
-0.1341552734375,
0.1812744140625,
-0.66162109375,
-0.52880859375,
0.5498046875,
-0.11688232421875,
-0.96923828125,
0.1566162109375,
-0.9111328125,
-0.5888671875,
-0.220458984375,
-0.72509765625,
1.349609375,
0.97119140625,
-0.07037353515625,
-0.053375244140625,
-0.1163330078125,
-0.10382080078125,
0.57568359375,
0.47021484375,
-0.07666015625,
-0.031646728515625,
0.82763671875,
0.310302734375,
0.0384521484375,
0.190673828125,
-0.56494140625,
0.0178680419921875,
-0.07940673828125,
0.36474609375,
0.447021484375,
0.1539306640625,
0.412109375,
0.2734375,
0.48583984375,
-1.2216796875,
-0.21337890625,
-0.2479248046875,
0.51416015625,
0.537109375,
0.359130859375,
-0.0033664703369140625,
-0.513671875,
-0.8193359375,
-1.072265625,
0.1605224609375,
0.09124755859375,
0.76611328125,
-0.818359375,
0.76220703125,
0.138916015625,
-0.358154296875,
0.53662109375,
-0.6455078125,
-0.015625,
0.92236328125,
-0.57861328125,
0.904296875,
-0.9794921875,
0.311279296875,
0.039764404296875,
0.01508331298828125,
0.35595703125,
0.450927734375,
0.45361328125,
-0.463623046875,
-0.4287109375,
-0.6640625,
0.0606689453125,
-0.004039764404296875,
-0.353271484375,
0.1009521484375,
-0.299560546875,
-0.3447265625,
-0.8564453125,
0.338623046875,
0.8837890625,
0.86474609375,
-0.03741455078125,
0.4951171875,
0.410400390625,
0.454345703125,
0.662109375,
-0.1036376953125,
0.24755859375,
-0.92919921875,
0.6689453125,
0.2093505859375,
-0.316650390625,
-0.7099609375,
-0.1651611328125,
-0.1632080078125,
0.0051116943359375,
-0.218017578125,
-0.30224609375,
-0.875,
0.34228515625,
-0.2071533203125,
0.775390625,
-0.430419921875,
-0.2425537109375,
-0.74658203125,
0.43701171875,
0.529296875,
-0.77294921875,
0.49755859375,
-0.95166015625,
0.63525390625,
0.47802734375,
-0.313720703125,
-0.3115234375,
-0.7490234375,
-0.7392578125,
-0.5126953125,
0.311279296875,
1.04296875,
-0.1683349609375,
0.513671875,
-1.326171875,
0.331787109375,
0.1507568359375,
-0.7333984375,
-0.072021484375,
-0.062286376953125,
0.51171875,
0.178955078125,
0.74462890625,
-0.1180419921875,
-0.29345703125,
0.050994873046875,
-1.298828125,
0.57080078125,
-0.5869140625,
0.51708984375,
0.1212158203125,
-0.25341796875,
0.048431396484375,
0.362548828125,
-0.135498046875,
0.0850830078125,
-0.2919921875,
0.268310546875,
-0.97314453125,
-0.59521484375,
0.58544921875,
-0.2119140625,
-0.294921875,
1.017578125,
0.08837890625,
-0.0760498046875,
0.240966796875,
0.544921875,
-0.465576171875,
0.43359375,
-0.271240234375,
0.8828125,
-0.509765625,
-0.64111328125,
-0.472900390625,
-0.322265625,
0.74462890625,
-0.09832763671875,
-0.44921875,
-0.2215576171875,
-1.1396484375,
-0.1114501953125,
0.181640625,
-0.40673828125,
0.2423095703125,
0.11669921875,
0.1790771484375,
-0.255859375,
-0.018646240234375,
-0.45361328125,
-0.174560546875,
-0.5126953125,
-0.59521484375,
0.56298828125,
0.3779296875,
0.54736328125,
0.0970458984375,
-0.57666015625,
-0.15283203125,
0.4140625,
-0.1458740234375,
-0.58984375,
-0.212646484375,
-0.392578125,
-0.16015625,
-0.485107421875,
0.06134033203125,
-0.1087646484375,
0.35888671875,
0.96240234375,
-0.010528564453125,
0.356689453125,
0.3642578125,
-0.783203125,
0.90771484375,
0.34521484375,
-0.70751953125,
-0.359619140625,
0.253173828125,
-0.08489990234375,
0.66455078125,
0.5576171875,
-0.8046875,
-0.57470703125,
-0.79150390625,
0.26513671875,
-0.81298828125,
-0.1859130859375,
-0.9306640625,
-0.59912109375,
-0.391357421875,
0.59912109375,
-0.0938720703125,
-0.67822265625,
0.034637451171875,
-0.85498046875,
-0.06524658203125,
-0.84619140625,
-0.2174072265625,
-0.77294921875,
-0.69189453125,
-0.2388916015625,
0.89892578125,
0.081298828125,
-0.016021728515625,
0.260009765625,
-0.09814453125,
0.126708984375,
0.3046875,
-0.734375,
-0.169677734375,
-0.00811767578125,
0.0838623046875,
-0.184326171875,
0.0212860107421875,
-0.83154296875,
0.58251953125,
-0.869140625,
0.2335205078125,
-0.2244873046875,
0.00637054443359375,
-0.32763671875,
-0.1766357421875,
0.96142578125,
-0.353759765625,
0.357421875,
-0.297119140625,
0.356689453125,
0.76611328125,
-0.66943359375,
-0.415771484375,
-0.9892578125,
-0.82958984375,
-1.4033203125,
0.68603515625,
-0.4541015625,
0.1513671875,
-0.7275390625,
-0.5478515625,
0.939453125,
-0.70263671875,
0.35205078125,
1.16015625,
0.01342010498046875,
0.403564453125,
-0.2822265625,
0.64404296875,
0.2178955078125,
-0.6259765625,
0.228271484375,
0.419189453125,
-0.6337890625,
-0.12396240234375,
-0.406982421875,
-1.0146484375,
-0.4580078125,
0.4091796875,
1.1259765625,
-0.00203704833984375,
0.287109375,
-0.4267578125,
-1.052734375,
-0.5078125,
0.7041015625,
0.2666015625,
0.417236328125,
0.998046875,
0.15966796875,
-0.09326171875,
0.09979248046875,
-0.525390625,
-0.286376953125,
-0.376953125,
1.1611328125,
-0.198974609375,
-0.5966796875,
0.8232421875,
0.86181640625,
-0.9638671875,
-1.0361328125,
-0.0867919921875,
-0.1292724609375,
-0.06390380859375,
-0.7646484375,
-0.0457763671875,
0.54736328125,
-0.421142578125,
-0.00473785400390625,
0.2359619140625,
-0.1265869140625,
0.2388916015625,
0.18798828125,
0.2802734375,
-0.08709716796875,
0.377197265625,
0.974609375,
-0.294921875,
-0.5751953125,
-0.935546875,
-0.55859375,
-0.442626953125,
0.1466064453125,
0.66162109375,
-0.358642578125,
0.1763916015625,
0.402587890625,
0.0164642333984375,
1.03515625,
-0.288818359375,
-0.430908203125,
0.3642578125,
-0.82763671875,
-0.630859375,
0.1646728515625,
0.06671142578125,
-0.48291015625,
0.685546875,
-0.63623046875,
0.01343536376953125,
0.20751953125,
0.052215576171875,
-0.382568359375,
-1.0400390625,
-0.193115234375,
-1.2958984375,
-0.372802734375,
-0.51123046875,
-0.93603515625,
-0.18212890625,
0.037017822265625,
0.1937255859375,
-0.7509765625,
0.046844482421875,
0.43359375,
-0.2275390625,
0.8935546875,
-0.65625,
0.10986328125,
-0.4677734375,
-0.4814453125,
-0.591796875,
0.0282745361328125,
-0.43310546875,
-0.052520751953125,
-0.87109375,
0.1126708984375,
-0.02264404296875,
0.471923828125,
-0.2177734375,
0.60009765625,
-0.5537109375,
-1.1455078125,
0.195556640625,
-0.045623779296875,
0.01007080078125,
0.76611328125,
0.400390625,
-0.0755615234375,
0.5107421875,
-0.0306396484375,
-0.2685546875,
-0.397216796875,
0.54443359375,
0.54443359375,
-0.25341796875,
-0.21337890625,
-0.1796875,
0.2509765625,
-1.2109375,
0.537109375,
-0.58837890625,
0.2130126953125,
0.301513671875,
-0.53271484375,
0.451904296875,
1.115234375,
-0.49267578125,
0.2366943359375,
-0.07012939453125,
0.1336669921875,
0.1427001953125,
0.30615234375,
-0.1434326171875,
0.78466796875,
-0.2154541015625,
-0.52978515625,
0.0127716064453125,
0.29443359375,
-0.2113037109375,
0.440185546875,
-0.1485595703125,
-1.0419921875,
-0.8994140625,
-0.1329345703125,
0.0193634033203125,
0.2376708984375,
0.06378173828125,
-0.2227783203125,
-0.040069580078125,
0.1317138671875,
-0.85693359375,
0.24365234375,
-0.9248046875,
-0.87109375,
0.52783203125,
-0.2271728515625,
-0.257080078125,
0.09906005859375,
-0.3046875,
-0.34716796875,
0.1546630859375,
0.52880859375,
-0.65625,
0.4921875,
-0.2032470703125,
0.619140625,
-0.44189453125,
-0.220947265625,
0.1182861328125,
0.6357421875,
-0.76318359375,
-0.541015625,
-0.322021484375,
0.9150390625,
0.205322265625,
-0.397705078125,
-0.64794921875,
0.0908203125,
0.2105712890625,
0.296875,
-0.607421875,
0.2083740234375,
-0.23779296875,
0.6787109375,
-1.2451171875,
0.050048828125,
0.031524658203125,
0.200927734375,
0.130859375,
-0.3251953125,
-0.6953125,
1.130859375,
0.372802734375,
-0.029266357421875,
0.59814453125,
0.021484375,
0.37744140625,
0.01117706298828125,
0.0013151168823242188,
-0.06304931640625,
0.71923828125,
0.640625,
0.59033203125,
-0.1829833984375,
0.2020263671875,
0.77001953125,
0.1893310546875,
-0.3642578125,
0.29248046875,
0.019378662109375,
-0.1009521484375,
0.380615234375,
-0.2242431640625,
-0.28369140625,
-0.1602783203125,
-0.348876953125,
0.64306640625,
-0.5126953125,
-0.0202178955078125,
-0.2371826171875,
-0.869140625,
0.69140625,
-0.295654296875,
-0.369140625,
0.4169921875,
-0.1456298828125,
0.1993408203125,
0.54150390625,
-0.402587890625,
-0.310791015625,
1.1142578125,
0.74951171875,
0.404541015625,
0.724609375,
0.366943359375,
0.5517578125,
-0.5673828125,
0.341796875,
0.046722412109375,
-0.073486328125,
-0.08123779296875,
-0.71875,
-0.9990234375,
0.57080078125,
-0.296142578125,
-0.23095703125,
0.5478515625,
-0.56005859375,
0.341796875,
-0.5146484375,
0.99560546875,
-0.373046875,
0.294677734375,
0.351806640625,
-0.50927734375,
-0.6474609375,
0.6689453125,
-0.2998046875,
0.319091796875,
0.10882568359375,
0.9072265625,
0.008056640625,
1.7177734375,
0.5634765625,
-0.11566162109375,
0.02099609375,
0.458984375,
-0.2890625,
-0.307861328125,
-0.6923828125,
-0.312255859375,
0.156982421875,
-0.221435546875,
-0.85986328125,
-0.03179931640625,
0.77197265625,
0.1302490234375,
-0.8447265625,
-0.259765625,
0.334716796875,
-1.138671875,
0.400390625,
0.36474609375,
0.28857421875,
0.1513671875,
-0.211181640625,
-0.1636962890625,
-0.61083984375,
0.447265625,
-0.76953125,
0.33642578125,
-0.48291015625,
-0.373291015625,
-0.63720703125,
-0.66650390625,
-0.400634765625,
-0.08428955078125,
-0.515625,
-0.73828125,
0.58544921875,
0.294921875,
0.71240234375,
0.5400390625,
-0.279052734375,
0.26220703125,
0.70361328125,
0.96630859375,
-0.1907958984375,
1.1064453125,
0.305908203125,
-0.083251953125,
0.2230224609375,
-0.336669921875,
0.311279296875,
-0.06787109375,
0.341552734375,
-0.51171875,
-0.251220703125,
-0.796875,
-1.1220703125,
0.427490234375,
0.432861328125,
0.339599609375,
-0.740234375,
-1.109375,
-0.089599609375,
-1.2255859375,
-0.4326171875,
-0.70654296875,
0.755859375,
-0.7255859375,
-0.0259552001953125,
0.0755615234375,
-1.1142578125,
4.32421875,
0.93359375,
0.63671875,
0.433837890625,
0.1318359375,
0.79833984375,
0.46630859375,
-0.31640625,
-0.382568359375,
-0.315185546875,
0.60498046875,
-0.51611328125,
-0.051666259765625,
0.97802734375,
0.515625,
0.308349609375,
-0.2783203125,
0.0418701171875,
0.2271728515625,
-0.84814453125,
-0.69580078125,
0.3193359375,
0.08123779296875,
0.56298828125,
0.29931640625,
0.305908203125,
0.80859375,
-0.67822265625,
-0.178466796875,
-0.79833984375,
0.0863037109375,
-0.375244140625,
0.93994140625,
0.26708984375,
-0.08837890625,
0.7294921875,
-0.08184814453125,
-0.454345703125,
0.034423828125,
0.112060546875,
-0.0443115234375,
0.17333984375,
0.5400390625,
-0.70458984375,
-0.288330078125,
0.53955078125,
-0.56103515625,
0.61474609375,
0.385009765625,
-1.03515625,
1.04296875,
-0.1470947265625,
0.46875,
-0.876953125,
-0.6025390625,
0.2176513671875,
0.0880126953125,
0.0828857421875,
-0.3662109375,
0.607421875,
0.61474609375,
0.61962890625,
0.023956298828125,
0.50830078125,
-0.88623046875,
0.53857421875,
-0.2322998046875,
0.59423828125,
-0.4375,
0.00145721435546875,
-0.20654296875,
-0.287353515625,
-0.309814453125,
-0.55126953125,
0.513671875,
0.0648193359375,
-0.2471923828125,
0.85009765625,
0.33203125,
-0.7470703125,
0.0806884765625,
-0.27099609375,
-0.08355712890625,
-0.311767578125,
0.77099609375,
1.1904296875,
-0.427978515625,
0.178955078125,
-0.242919921875,
0.50439453125,
0.54345703125,
0.75,
-0.18115234375,
-0.53173828125,
-0.326171875
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
This is the hard version of the problem. The difference between the versions is the constraint on n and the required number of operations. You can make hacks only if all versions of the problem are solved.
There are two binary strings a and b of length n (a binary string is a string consisting of symbols 0 and 1). In an operation, you select a prefix of a, and simultaneously invert the bits in the prefix (0 changes to 1 and 1 changes to 0) and reverse the order of the bits in the prefix.
For example, if a=001011 and you select the prefix of length 3, it becomes 011011. Then if you select the entire string, it becomes 001001.
Your task is to transform the string a into b in at most 2n operations. It can be proved that it is always possible.
Input
The first line contains a single integer t (1≤ t≤ 1000) — the number of test cases. Next 3t lines contain descriptions of test cases.
The first line of each test case contains a single integer n (1≤ n≤ 10^5) — the length of the binary strings.
The next two lines contain two binary strings a and b of length n.
It is guaranteed that the sum of n across all test cases does not exceed 10^5.
Output
For each test case, output an integer k (0≤ k≤ 2n), followed by k integers p_1,…,p_k (1≤ p_i≤ n). Here k is the number of operations you use and p_i is the length of the prefix you flip in the i-th operation.
Example
Input
5
2
01
10
5
01011
11100
2
01
01
10
0110011011
1000110100
1
0
1
Output
3 1 2 1
6 5 2 5 3 1 2
0
9 4 1 2 10 4 1 2 1 5
1 1
Note
In the first test case, we have 01→ 11→ 00→ 10.
In the second test case, we have 01011→ 00101→ 11101→ 01000→ 10100→ 00100→ 11100.
In the third test case, the strings are already the same. Another solution is to flip the prefix of length 2, which will leave a unchanged.
Tags: constructive algorithms, data structures, implementation, strings, two pointers
Correct Solution:
```
import sys,os,io
# input = io.BytesIO(os.read(0, os.fstat(0).st_size)).readline
input = sys.stdin.readline
for _ in range (int(input())):
n = int(input())
a = input().strip()
b = input().strip()
curr = a[0]
ans = []
for i in range (n):
if a[i]!=curr:
ans.append(i)
curr = a[i]
for i in range (n-1,-1,-1):
if curr != b[i]:
ans.append(i+1)
curr = b[i]
print(len(ans),*ans)
```
| 10,125 | [
0.1650390625,
-0.40576171875,
-0.00907135009765625,
0.10333251953125,
-0.414306640625,
-0.76171875,
-0.032867431640625,
-0.2060546875,
0.182373046875,
1.0146484375,
0.76318359375,
-0.2958984375,
0.331298828125,
-0.876953125,
-0.58447265625,
0.325439453125,
-0.339111328125,
-0.5927734375,
-0.334228515625,
-0.5634765625,
0.0123443603515625,
-0.12274169921875,
-1.3798828125,
-0.07073974609375,
-0.626953125,
0.8251953125,
0.2890625,
-0.12335205078125,
1.005859375,
1.0615234375,
-0.421142578125,
-0.458740234375,
0.73779296875,
-1.0078125,
-0.43505859375,
-0.495849609375,
0.5986328125,
-0.83740234375,
-0.13720703125,
-0.27783203125,
0.56201171875,
-0.2349853515625,
0.2457275390625,
-0.9326171875,
-1.291015625,
0.1566162109375,
-0.345703125,
-0.31689453125,
-0.1507568359375,
-0.440185546875,
0.064208984375,
-0.208984375,
0.60302734375,
-0.134521484375,
0.04736328125,
0.16943359375,
0.2293701171875,
-0.541015625,
-0.4609375,
0.147216796875,
0.076171875,
0.16259765625,
0.2020263671875,
-0.716796875,
0.12298583984375,
0.1956787109375,
-0.253662109375,
-0.4423828125,
-0.4111328125,
-0.97998046875,
-0.318115234375,
-0.0443115234375,
-0.68408203125,
-0.331787109375,
-0.0859375,
0.26171875,
0.248779296875,
-0.1610107421875,
-0.85546875,
0.7392578125,
-0.286865234375,
0.94482421875,
0.10675048828125,
0.210693359375,
-0.473388671875,
-0.52197265625,
-0.02349853515625,
0.1890869140625,
0.1556396484375,
-0.117919921875,
-0.351806640625,
0.580078125,
-0.46728515625,
0.081787109375,
0.404296875,
0.70849609375,
-0.314453125,
0.2509765625,
0.434326171875,
-0.0185089111328125,
0.77490234375,
1.2197265625,
-0.1986083984375,
1.2041015625,
-0.619140625,
-0.1988525390625,
-0.005939483642578125,
0.126708984375,
-0.04364013671875,
-0.00514984130859375,
0.006931304931640625,
-0.1614990234375,
0.69091796875,
0.397216796875,
-0.418701171875,
0.81005859375,
-0.03375244140625,
0.442138671875,
-1.005859375,
0.486083984375,
0.63427734375,
-0.042694091796875,
0.7197265625,
-0.2490234375,
-0.1949462890625,
-0.25732421875,
-0.314453125,
1.1474609375,
-0.415283203125,
-0.439697265625,
0.27294921875,
-0.0028057098388671875,
-0.29052734375,
0.349853515625,
-0.040283203125,
0.72216796875,
-0.2279052734375,
0.404052734375,
0.73486328125,
-0.482177734375,
0.77587890625,
-0.1947021484375,
-0.135986328125,
1.7255859375,
0.50830078125,
0.1109619140625,
1.0498046875,
0.45361328125,
-0.3095703125,
0.478759765625,
-0.92041015625,
0.59423828125,
0.258056640625,
0.3427734375,
-0.11566162109375,
-0.1202392578125,
-0.25341796875,
0.5302734375,
0.07080078125,
0.211669921875,
-0.07049560546875,
0.265869140625,
0.0615234375,
0.94482421875,
-0.119873046875,
1.078125,
-0.3740234375,
-0.361083984375,
-0.24267578125,
-0.6240234375,
0.54150390625,
-0.2261962890625,
-0.445556640625,
0.57958984375,
0.51318359375,
1.1455078125,
1.365234375,
-0.46728515625,
0.2376708984375,
0.35400390625,
-0.80224609375,
0.0139312744140625,
0.72705078125,
0.947265625,
-0.08734130859375,
0.2408447265625,
-0.06646728515625,
-0.40869140625,
-0.5185546875,
-0.7568359375,
-0.0860595703125,
0.71484375,
-0.720703125,
0.193359375,
0.314453125,
0.29736328125,
-0.90673828125,
-0.1307373046875,
-0.2357177734375,
-0.69091796875,
-0.301025390625,
0.488037109375,
-0.436279296875,
0.50732421875,
-0.77294921875,
-0.455078125,
0.5908203125,
1.083984375,
-0.215576171875,
0.38427734375,
0.418212890625,
0.13037109375,
-0.286865234375,
0.34423828125,
0.28466796875,
-0.206298828125,
-0.465087890625,
1.099609375,
0.3115234375,
-0.0811767578125,
0.08453369140625,
0.68994140625,
0.595703125,
0.374267578125,
-0.2154541015625,
0.0487060546875,
0.3193359375,
1.177734375,
0.1622314453125,
0.8046875,
0.041900634765625,
0.767578125,
0.6513671875,
0.67236328125,
0.515625,
0.091552734375,
0.6484375,
0.86572265625,
0.11334228515625,
0.434326171875,
0.389892578125,
0.4521484375,
0.309814453125,
0.50732421875,
0.248046875,
0.2054443359375,
0.2724609375,
0.052093505859375,
-0.468505859375,
0.12939453125,
-0.41748046875,
0.83837890625,
-0.128662109375,
0.1632080078125,
-0.37353515625,
-0.475341796875,
0.1483154296875,
0.89990234375,
-0.76513671875,
-0.1885986328125,
0.1129150390625,
0.0799560546875,
0.139404296875,
-0.26171875,
0.31298828125,
0.339599609375,
0.39794921875,
0.47509765625,
-0.395751953125,
-0.175048828125,
-1.1689453125,
-0.841796875,
-0.85302734375,
-0.5068359375,
-0.8349609375,
0.05615234375,
0.1416015625,
-0.705078125,
0.3427734375,
-0.57861328125,
-0.24560546875,
0.213134765625,
-0.65087890625,
0.64453125,
-0.1734619140625,
0.264404296875,
-1.3828125,
0.8154296875,
0.3134765625,
1.19140625,
-0.7578125,
0.07513427734375,
0.1500244140625,
-0.82177734375,
0.03887939453125,
0.07452392578125,
0.224365234375,
-0.03424072265625,
-0.71923828125,
-0.67724609375,
-0.73876953125,
-0.2420654296875,
-0.31201171875,
0.362548828125,
-0.54296875,
0.88037109375,
0.7587890625,
-0.59716796875,
0.75634765625,
0.8974609375,
-0.62890625,
0.37451171875,
0.423828125,
0.1053466796875,
-0.80322265625,
1.6201171875,
0.46533203125,
0.363525390625,
-0.442138671875,
-0.448974609375,
-0.2288818359375,
-0.123046875,
0.2025146484375,
-0.66455078125,
-0.52392578125,
0.55126953125,
-0.09613037109375,
-0.96728515625,
0.1634521484375,
-0.9228515625,
-0.54931640625,
-0.2142333984375,
-0.72412109375,
1.3515625,
0.96484375,
-0.045135498046875,
-0.041961669921875,
-0.1436767578125,
-0.1256103515625,
0.59375,
0.492431640625,
-0.067138671875,
-0.035247802734375,
0.845703125,
0.3232421875,
0.0657958984375,
0.2099609375,
-0.5703125,
0.004459381103515625,
-0.08349609375,
0.3505859375,
0.437255859375,
0.1666259765625,
0.41455078125,
0.305908203125,
0.49755859375,
-1.224609375,
-0.2279052734375,
-0.261962890625,
0.5,
0.54052734375,
0.338134765625,
0.01398468017578125,
-0.492431640625,
-0.79345703125,
-1.060546875,
0.1385498046875,
0.08489990234375,
0.79736328125,
-0.8125,
0.748046875,
0.12371826171875,
-0.369873046875,
0.54296875,
-0.6494140625,
-0.0187530517578125,
0.92578125,
-0.60302734375,
0.8955078125,
-0.982421875,
0.292724609375,
0.0462646484375,
0.027984619140625,
0.34912109375,
0.438232421875,
0.491943359375,
-0.4560546875,
-0.421875,
-0.693359375,
0.0267486572265625,
0.00791168212890625,
-0.378662109375,
0.10968017578125,
-0.270751953125,
-0.36962890625,
-0.87060546875,
0.31494140625,
0.884765625,
0.8896484375,
-0.045196533203125,
0.5009765625,
0.372314453125,
0.4765625,
0.70263671875,
-0.07684326171875,
0.250244140625,
-0.93994140625,
0.66357421875,
0.209716796875,
-0.29052734375,
-0.71875,
-0.1793212890625,
-0.1295166015625,
0.03802490234375,
-0.2081298828125,
-0.321533203125,
-0.87109375,
0.323486328125,
-0.216064453125,
0.76220703125,
-0.430908203125,
-0.26220703125,
-0.7724609375,
0.416259765625,
0.53857421875,
-0.771484375,
0.474365234375,
-0.9384765625,
0.62890625,
0.494384765625,
-0.322998046875,
-0.315185546875,
-0.7802734375,
-0.71630859375,
-0.5244140625,
0.306884765625,
1.0400390625,
-0.154052734375,
0.52392578125,
-1.3388671875,
0.339111328125,
0.1651611328125,
-0.7109375,
-0.08758544921875,
-0.0562744140625,
0.50927734375,
0.1912841796875,
0.72216796875,
-0.11480712890625,
-0.31591796875,
0.055938720703125,
-1.3037109375,
0.59423828125,
-0.61572265625,
0.51904296875,
0.118408203125,
-0.248291015625,
0.041046142578125,
0.37548828125,
-0.1279296875,
0.07769775390625,
-0.29150390625,
0.272705078125,
-1.015625,
-0.60791015625,
0.634765625,
-0.20947265625,
-0.29052734375,
1.044921875,
0.0965576171875,
-0.09539794921875,
0.260009765625,
0.52734375,
-0.470703125,
0.430908203125,
-0.318115234375,
0.87353515625,
-0.5068359375,
-0.6591796875,
-0.49609375,
-0.315185546875,
0.76904296875,
-0.0982666015625,
-0.46484375,
-0.2249755859375,
-1.146484375,
-0.12261962890625,
0.178466796875,
-0.376220703125,
0.2335205078125,
0.11181640625,
0.16943359375,
-0.25927734375,
-0.014068603515625,
-0.427490234375,
-0.166015625,
-0.53271484375,
-0.56591796875,
0.55615234375,
0.37353515625,
0.544921875,
0.095458984375,
-0.60400390625,
-0.1624755859375,
0.42138671875,
-0.15380859375,
-0.5859375,
-0.23095703125,
-0.375732421875,
-0.143310546875,
-0.50830078125,
0.07073974609375,
-0.1004638671875,
0.37353515625,
0.970703125,
0.0096282958984375,
0.353759765625,
0.369384765625,
-0.77734375,
0.912109375,
0.36669921875,
-0.70654296875,
-0.33984375,
0.2354736328125,
-0.09417724609375,
0.65673828125,
0.552734375,
-0.80078125,
-0.5712890625,
-0.7958984375,
0.250732421875,
-0.80810546875,
-0.168212890625,
-0.92919921875,
-0.58642578125,
-0.42431640625,
0.60546875,
-0.05902099609375,
-0.66650390625,
0.00238037109375,
-0.88623046875,
-0.08331298828125,
-0.86572265625,
-0.2117919921875,
-0.7880859375,
-0.7119140625,
-0.2279052734375,
0.89892578125,
0.07965087890625,
-0.002307891845703125,
0.271484375,
-0.09967041015625,
0.1275634765625,
0.309814453125,
-0.71728515625,
-0.1988525390625,
0.01209259033203125,
0.0828857421875,
-0.162353515625,
0.024444580078125,
-0.830078125,
0.55419921875,
-0.8603515625,
0.2135009765625,
-0.237060546875,
0.0098114013671875,
-0.30029296875,
-0.1778564453125,
0.96923828125,
-0.3564453125,
0.3427734375,
-0.2919921875,
0.3681640625,
0.78369140625,
-0.63818359375,
-0.42919921875,
-0.958984375,
-0.81396484375,
-1.3994140625,
0.6474609375,
-0.459716796875,
0.1531982421875,
-0.69091796875,
-0.53466796875,
0.9609375,
-0.71484375,
0.34423828125,
1.1728515625,
0.011474609375,
0.37939453125,
-0.3095703125,
0.63720703125,
0.2216796875,
-0.6552734375,
0.2279052734375,
0.446044921875,
-0.66015625,
-0.150390625,
-0.421875,
-1.0263671875,
-0.44580078125,
0.376953125,
1.1376953125,
0.01192474365234375,
0.294921875,
-0.445068359375,
-1.0458984375,
-0.488037109375,
0.732421875,
0.28076171875,
0.433837890625,
0.99267578125,
0.151611328125,
-0.1043701171875,
0.07135009765625,
-0.50244140625,
-0.28955078125,
-0.378662109375,
1.1904296875,
-0.193603515625,
-0.6005859375,
0.822265625,
0.8857421875,
-0.94873046875,
-1.0498046875,
-0.0938720703125,
-0.12213134765625,
-0.03143310546875,
-0.78564453125,
-0.01082611083984375,
0.51806640625,
-0.4228515625,
-0.0190582275390625,
0.2216796875,
-0.12939453125,
0.239501953125,
0.1949462890625,
0.251953125,
-0.1326904296875,
0.38916015625,
0.97119140625,
-0.29638671875,
-0.5703125,
-0.9443359375,
-0.54931640625,
-0.483642578125,
0.12353515625,
0.66455078125,
-0.341796875,
0.190185546875,
0.4052734375,
0.049285888671875,
1.0703125,
-0.274658203125,
-0.42236328125,
0.374755859375,
-0.8369140625,
-0.638671875,
0.143310546875,
0.058380126953125,
-0.5087890625,
0.68017578125,
-0.6513671875,
0.0138092041015625,
0.218994140625,
0.0474853515625,
-0.411376953125,
-1.0380859375,
-0.1890869140625,
-1.2958984375,
-0.361083984375,
-0.52294921875,
-0.93115234375,
-0.1988525390625,
0.047210693359375,
0.199462890625,
-0.72802734375,
0.046478271484375,
0.45849609375,
-0.214111328125,
0.8857421875,
-0.66259765625,
0.08062744140625,
-0.457275390625,
-0.455322265625,
-0.61376953125,
0.046142578125,
-0.455078125,
-0.05584716796875,
-0.865234375,
0.08758544921875,
-0.041259765625,
0.480712890625,
-0.18408203125,
0.58251953125,
-0.5712890625,
-1.1474609375,
0.2022705078125,
-0.0258941650390625,
-0.026641845703125,
0.7861328125,
0.4033203125,
-0.08477783203125,
0.50244140625,
-0.062408447265625,
-0.25732421875,
-0.408447265625,
0.51953125,
0.568359375,
-0.2392578125,
-0.222900390625,
-0.1884765625,
0.226806640625,
-1.1982421875,
0.5166015625,
-0.5849609375,
0.20458984375,
0.322265625,
-0.546875,
0.477783203125,
1.0908203125,
-0.48046875,
0.2415771484375,
-0.06292724609375,
0.1295166015625,
0.124267578125,
0.2939453125,
-0.1573486328125,
0.796875,
-0.2357177734375,
-0.5244140625,
0.033782958984375,
0.3232421875,
-0.2115478515625,
0.4384765625,
-0.1527099609375,
-1.04296875,
-0.890625,
-0.1190185546875,
0.04534912109375,
0.23291015625,
0.05645751953125,
-0.24072265625,
-0.043212890625,
0.12103271484375,
-0.8671875,
0.264404296875,
-0.9140625,
-0.8935546875,
0.49462890625,
-0.2064208984375,
-0.278076171875,
0.11761474609375,
-0.3017578125,
-0.3212890625,
0.1343994140625,
0.5185546875,
-0.64794921875,
0.47314453125,
-0.19189453125,
0.59814453125,
-0.4404296875,
-0.2340087890625,
0.11981201171875,
0.62353515625,
-0.75537109375,
-0.5439453125,
-0.31787109375,
0.90869140625,
0.1680908203125,
-0.430908203125,
-0.6572265625,
0.11187744140625,
0.2169189453125,
0.296142578125,
-0.63134765625,
0.215576171875,
-0.2442626953125,
0.66162109375,
-1.25390625,
0.04632568359375,
0.043731689453125,
0.2081298828125,
0.12225341796875,
-0.35107421875,
-0.7216796875,
1.1201171875,
0.405517578125,
-0.041107177734375,
0.61572265625,
0.016754150390625,
0.384765625,
0.028717041015625,
-0.0234375,
-0.08624267578125,
0.72021484375,
0.6318359375,
0.59423828125,
-0.21240234375,
0.198486328125,
0.7666015625,
0.1868896484375,
-0.375732421875,
0.296875,
0.034027099609375,
-0.10357666015625,
0.37744140625,
-0.2335205078125,
-0.28564453125,
-0.1663818359375,
-0.337158203125,
0.6533203125,
-0.529296875,
-0.043853759765625,
-0.2298583984375,
-0.8603515625,
0.673828125,
-0.30078125,
-0.374755859375,
0.446533203125,
-0.1287841796875,
0.2115478515625,
0.55712890625,
-0.400146484375,
-0.299072265625,
1.115234375,
0.7470703125,
0.415283203125,
0.6982421875,
0.3779296875,
0.57763671875,
-0.5810546875,
0.33349609375,
0.0523681640625,
-0.06451416015625,
-0.09564208984375,
-0.69580078125,
-1.013671875,
0.59228515625,
-0.31494140625,
-0.2388916015625,
0.53369140625,
-0.5849609375,
0.358154296875,
-0.486083984375,
1.0185546875,
-0.363037109375,
0.291015625,
0.35791015625,
-0.49169921875,
-0.65234375,
0.65771484375,
-0.27734375,
0.320556640625,
0.108642578125,
0.916015625,
0.0167236328125,
1.724609375,
0.5810546875,
-0.1060791015625,
0.006458282470703125,
0.453857421875,
-0.288818359375,
-0.313232421875,
-0.70068359375,
-0.29052734375,
0.156982421875,
-0.2222900390625,
-0.83642578125,
0.006320953369140625,
0.7802734375,
0.1304931640625,
-0.8203125,
-0.2490234375,
0.334228515625,
-1.1337890625,
0.40771484375,
0.35791015625,
0.3212890625,
0.1455078125,
-0.197998046875,
-0.1805419921875,
-0.611328125,
0.475341796875,
-0.767578125,
0.340087890625,
-0.47265625,
-0.3759765625,
-0.638671875,
-0.64697265625,
-0.42822265625,
-0.08453369140625,
-0.498291015625,
-0.73876953125,
0.576171875,
0.274169921875,
0.7080078125,
0.578125,
-0.26953125,
0.2705078125,
0.728515625,
0.958984375,
-0.2025146484375,
1.109375,
0.271484375,
-0.12646484375,
0.223876953125,
-0.306396484375,
0.300537109375,
-0.0784912109375,
0.32861328125,
-0.50341796875,
-0.26220703125,
-0.791015625,
-1.1201171875,
0.427490234375,
0.415283203125,
0.332275390625,
-0.73193359375,
-1.1025390625,
-0.10626220703125,
-1.248046875,
-0.431640625,
-0.72802734375,
0.76806640625,
-0.72509765625,
-0.02008056640625,
0.0721435546875,
-1.10546875,
4.30859375,
0.93994140625,
0.6650390625,
0.40283203125,
0.1175537109375,
0.80712890625,
0.45849609375,
-0.293701171875,
-0.366455078125,
-0.328857421875,
0.6005859375,
-0.498046875,
-0.07183837890625,
0.986328125,
0.5185546875,
0.290283203125,
-0.283447265625,
0.0386962890625,
0.23828125,
-0.85693359375,
-0.71044921875,
0.32080078125,
0.04815673828125,
0.56005859375,
0.312255859375,
0.32177734375,
0.830078125,
-0.68310546875,
-0.179931640625,
-0.7861328125,
0.0986328125,
-0.369873046875,
0.9345703125,
0.258544921875,
-0.07958984375,
0.73095703125,
-0.0802001953125,
-0.458740234375,
0.0172271728515625,
0.0887451171875,
-0.048187255859375,
0.1810302734375,
0.56005859375,
-0.7177734375,
-0.2939453125,
0.55419921875,
-0.53173828125,
0.6171875,
0.386474609375,
-1.0361328125,
1.091796875,
-0.14501953125,
0.447265625,
-0.890625,
-0.59423828125,
0.2266845703125,
0.10107421875,
0.0767822265625,
-0.362060546875,
0.619140625,
0.611328125,
0.63671875,
0.012298583984375,
0.5146484375,
-0.87744140625,
0.51318359375,
-0.2373046875,
0.5830078125,
-0.473388671875,
-0.016815185546875,
-0.1845703125,
-0.29345703125,
-0.32373046875,
-0.55322265625,
0.54296875,
0.0350341796875,
-0.251953125,
0.8466796875,
0.360595703125,
-0.74755859375,
0.07269287109375,
-0.2587890625,
-0.102294921875,
-0.3134765625,
0.7958984375,
1.1982421875,
-0.426025390625,
0.139892578125,
-0.23828125,
0.475341796875,
0.53173828125,
0.73681640625,
-0.16015625,
-0.5078125,
-0.33056640625
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
This is the hard version of the problem. The difference between the versions is the constraint on n and the required number of operations. You can make hacks only if all versions of the problem are solved.
There are two binary strings a and b of length n (a binary string is a string consisting of symbols 0 and 1). In an operation, you select a prefix of a, and simultaneously invert the bits in the prefix (0 changes to 1 and 1 changes to 0) and reverse the order of the bits in the prefix.
For example, if a=001011 and you select the prefix of length 3, it becomes 011011. Then if you select the entire string, it becomes 001001.
Your task is to transform the string a into b in at most 2n operations. It can be proved that it is always possible.
Input
The first line contains a single integer t (1≤ t≤ 1000) — the number of test cases. Next 3t lines contain descriptions of test cases.
The first line of each test case contains a single integer n (1≤ n≤ 10^5) — the length of the binary strings.
The next two lines contain two binary strings a and b of length n.
It is guaranteed that the sum of n across all test cases does not exceed 10^5.
Output
For each test case, output an integer k (0≤ k≤ 2n), followed by k integers p_1,…,p_k (1≤ p_i≤ n). Here k is the number of operations you use and p_i is the length of the prefix you flip in the i-th operation.
Example
Input
5
2
01
10
5
01011
11100
2
01
01
10
0110011011
1000110100
1
0
1
Output
3 1 2 1
6 5 2 5 3 1 2
0
9 4 1 2 10 4 1 2 1 5
1 1
Note
In the first test case, we have 01→ 11→ 00→ 10.
In the second test case, we have 01011→ 00101→ 11101→ 01000→ 10100→ 00100→ 11100.
In the third test case, the strings are already the same. Another solution is to flip the prefix of length 2, which will leave a unchanged.
Tags: constructive algorithms, data structures, implementation, strings, two pointers
Correct Solution:
```
str1="First"
str2="Second"
def rev(c,cnt):
if(cnt%2==0):
return c
if(c=='0'):
c='1'
else:
c='0'
return c
def solve():
n=int(input())
a=input()
b=input()
ans=list()
l,r=0,n-1
for i in range(n):
if(i%2==0):
if(rev(a[l],i)==b[n-i-1]):
ans.append(1)
l+=1
else:
if (rev(a[r], i) == b[n - i - 1]):
ans.append(1)
r -= 1
ans.append(n-i)
print(len(ans),sep=' ',end=' ')
for num in ans:
print(num,sep=' ',end=' ')
print()
def main():
t=int(input())
for i in range(t):
solve()
main()
```
| 10,126 | [
0.1307373046875,
-0.40234375,
-0.049407958984375,
0.0570068359375,
-0.379638671875,
-0.80224609375,
-0.0259552001953125,
-0.232666015625,
0.1893310546875,
1.00390625,
0.78173828125,
-0.284912109375,
0.324951171875,
-0.87353515625,
-0.5224609375,
0.333251953125,
-0.40380859375,
-0.595703125,
-0.305419921875,
-0.5595703125,
-0.060638427734375,
-0.134521484375,
-1.3623046875,
-0.0772705078125,
-0.591796875,
0.81787109375,
0.33251953125,
-0.146484375,
1.0361328125,
1.0751953125,
-0.405517578125,
-0.4345703125,
0.75537109375,
-1.00390625,
-0.424560546875,
-0.488525390625,
0.58251953125,
-0.826171875,
-0.1292724609375,
-0.267822265625,
0.56103515625,
-0.248291015625,
0.2418212890625,
-0.9296875,
-1.3349609375,
0.208740234375,
-0.347412109375,
-0.290771484375,
-0.16796875,
-0.450439453125,
0.01038360595703125,
-0.234130859375,
0.63134765625,
-0.092041015625,
0.08026123046875,
0.1324462890625,
0.2049560546875,
-0.5625,
-0.4541015625,
0.1903076171875,
0.0858154296875,
0.1361083984375,
0.1873779296875,
-0.7646484375,
0.09967041015625,
0.1893310546875,
-0.2364501953125,
-0.429931640625,
-0.411376953125,
-1.01953125,
-0.31640625,
-0.03302001953125,
-0.744140625,
-0.3447265625,
-0.111328125,
0.263427734375,
0.2493896484375,
-0.197021484375,
-0.86083984375,
0.7646484375,
-0.300537109375,
0.94287109375,
0.09228515625,
0.2181396484375,
-0.482421875,
-0.5224609375,
-0.07196044921875,
0.21142578125,
0.1573486328125,
-0.1390380859375,
-0.383544921875,
0.59619140625,
-0.473876953125,
0.0889892578125,
0.399658203125,
0.69384765625,
-0.271728515625,
0.26513671875,
0.4443359375,
-0.043731689453125,
0.796875,
1.2333984375,
-0.1978759765625,
1.1572265625,
-0.62255859375,
-0.209228515625,
-0.06689453125,
0.136474609375,
-0.033843994140625,
-0.038299560546875,
0.006877899169921875,
-0.1888427734375,
0.69287109375,
0.334716796875,
-0.420654296875,
0.806640625,
-0.0223846435546875,
0.390625,
-0.98046875,
0.4814453125,
0.6533203125,
-0.060699462890625,
0.73828125,
-0.269287109375,
-0.1380615234375,
-0.1943359375,
-0.312744140625,
1.1240234375,
-0.407470703125,
-0.3828125,
0.287841796875,
-0.0088958740234375,
-0.2236328125,
0.348388671875,
-0.015350341796875,
0.740234375,
-0.25146484375,
0.43115234375,
0.7177734375,
-0.485595703125,
0.78955078125,
-0.168212890625,
-0.18603515625,
1.7001953125,
0.494384765625,
0.1214599609375,
1.0224609375,
0.408935546875,
-0.297607421875,
0.456298828125,
-0.91552734375,
0.6044921875,
0.269287109375,
0.332763671875,
-0.1270751953125,
-0.0909423828125,
-0.29736328125,
0.521484375,
0.08868408203125,
0.17529296875,
-0.041046142578125,
0.270751953125,
0.0259246826171875,
0.93115234375,
-0.1329345703125,
1.0712890625,
-0.39599609375,
-0.348876953125,
-0.271728515625,
-0.68017578125,
0.513671875,
-0.2059326171875,
-0.410888671875,
0.62451171875,
0.53955078125,
1.1552734375,
1.390625,
-0.46826171875,
0.2310791015625,
0.311767578125,
-0.7314453125,
0.0263671875,
0.69189453125,
0.96435546875,
-0.1688232421875,
0.2252197265625,
-0.099609375,
-0.37841796875,
-0.50244140625,
-0.72998046875,
-0.1416015625,
0.69287109375,
-0.72705078125,
0.1617431640625,
0.331787109375,
0.283447265625,
-0.88232421875,
-0.104736328125,
-0.291259765625,
-0.6962890625,
-0.2841796875,
0.513671875,
-0.433837890625,
0.5537109375,
-0.74609375,
-0.47314453125,
0.61328125,
1.0615234375,
-0.239013671875,
0.366943359375,
0.374267578125,
0.1844482421875,
-0.235107421875,
0.3701171875,
0.309326171875,
-0.2330322265625,
-0.44189453125,
1.1337890625,
0.30615234375,
-0.0716552734375,
0.040374755859375,
0.68359375,
0.62939453125,
0.395263671875,
-0.20703125,
0.029632568359375,
0.35986328125,
1.1865234375,
0.1448974609375,
0.8232421875,
0.027801513671875,
0.7470703125,
0.71826171875,
0.6689453125,
0.52734375,
0.10791015625,
0.60888671875,
0.85498046875,
0.2078857421875,
0.3916015625,
0.4296875,
0.455322265625,
0.345703125,
0.4599609375,
0.25146484375,
0.187744140625,
0.270263671875,
0.046478271484375,
-0.4296875,
0.163818359375,
-0.42041015625,
0.86083984375,
-0.08380126953125,
0.1597900390625,
-0.348388671875,
-0.485107421875,
0.1658935546875,
0.8857421875,
-0.76318359375,
-0.1759033203125,
0.1756591796875,
0.0445556640625,
0.1298828125,
-0.276123046875,
0.3759765625,
0.357666015625,
0.434326171875,
0.53564453125,
-0.405517578125,
-0.2496337890625,
-1.1748046875,
-0.85693359375,
-0.8369140625,
-0.51171875,
-0.85693359375,
0.072021484375,
0.1297607421875,
-0.72900390625,
0.332763671875,
-0.494140625,
-0.2734375,
0.249267578125,
-0.68115234375,
0.65380859375,
-0.1549072265625,
0.294189453125,
-1.361328125,
0.8056640625,
0.300537109375,
1.15625,
-0.74169921875,
0.0872802734375,
0.111572265625,
-0.80810546875,
-0.0034027099609375,
0.09124755859375,
0.2281494140625,
-0.03790283203125,
-0.701171875,
-0.65576171875,
-0.73779296875,
-0.226318359375,
-0.325927734375,
0.3896484375,
-0.52734375,
0.89697265625,
0.7353515625,
-0.552734375,
0.7412109375,
0.88671875,
-0.60107421875,
0.393798828125,
0.4248046875,
0.1318359375,
-0.79150390625,
1.5615234375,
0.51611328125,
0.3681640625,
-0.4375,
-0.442626953125,
-0.22802734375,
-0.1517333984375,
0.155517578125,
-0.6708984375,
-0.50341796875,
0.55517578125,
-0.1197509765625,
-0.978515625,
0.11883544921875,
-0.91650390625,
-0.61474609375,
-0.2261962890625,
-0.70556640625,
1.34375,
0.97509765625,
-0.09442138671875,
-0.0472412109375,
-0.08709716796875,
-0.0863037109375,
0.57958984375,
0.46630859375,
-0.07537841796875,
-0.039459228515625,
0.83203125,
0.290283203125,
0.039825439453125,
0.169189453125,
-0.546875,
0.00644683837890625,
-0.0570068359375,
0.350341796875,
0.4482421875,
0.1644287109375,
0.413818359375,
0.263427734375,
0.494384765625,
-1.2177734375,
-0.19775390625,
-0.22607421875,
0.53955078125,
0.5234375,
0.352783203125,
-0.0048675537109375,
-0.55419921875,
-0.8369140625,
-1.064453125,
0.176025390625,
0.10650634765625,
0.75439453125,
-0.814453125,
0.77099609375,
0.1507568359375,
-0.354736328125,
0.54052734375,
-0.6591796875,
-0.041015625,
0.96142578125,
-0.5771484375,
0.904296875,
-0.98583984375,
0.342529296875,
0.02490234375,
0.0245361328125,
0.365234375,
0.4677734375,
0.452880859375,
-0.482666015625,
-0.4462890625,
-0.63623046875,
0.084228515625,
-0.00521087646484375,
-0.3740234375,
0.11761474609375,
-0.302490234375,
-0.336669921875,
-0.84765625,
0.3701171875,
0.87451171875,
0.85595703125,
-0.051177978515625,
0.49365234375,
0.40234375,
0.471923828125,
0.634765625,
-0.1240234375,
0.25830078125,
-0.9267578125,
0.63671875,
0.18212890625,
-0.322021484375,
-0.70751953125,
-0.169189453125,
-0.2076416015625,
-0.007686614990234375,
-0.173583984375,
-0.318359375,
-0.875,
0.350830078125,
-0.20947265625,
0.77978515625,
-0.421630859375,
-0.21728515625,
-0.7109375,
0.449951171875,
0.486083984375,
-0.77392578125,
0.52685546875,
-0.9677734375,
0.65869140625,
0.4736328125,
-0.305419921875,
-0.28955078125,
-0.74951171875,
-0.7138671875,
-0.49755859375,
0.273193359375,
1.03515625,
-0.1429443359375,
0.51220703125,
-1.3447265625,
0.310791015625,
0.1435546875,
-0.74169921875,
-0.054107666015625,
-0.067626953125,
0.492919921875,
0.167236328125,
0.7626953125,
-0.141845703125,
-0.32177734375,
0.045440673828125,
-1.3173828125,
0.576171875,
-0.5751953125,
0.51220703125,
0.11260986328125,
-0.2425537109375,
0.07159423828125,
0.323486328125,
-0.11053466796875,
0.07330322265625,
-0.291259765625,
0.2484130859375,
-0.91064453125,
-0.62939453125,
0.56787109375,
-0.225341796875,
-0.3076171875,
1.0029296875,
0.0780029296875,
-0.07464599609375,
0.2242431640625,
0.57421875,
-0.43994140625,
0.417236328125,
-0.267333984375,
0.88330078125,
-0.5390625,
-0.66259765625,
-0.446044921875,
-0.319091796875,
0.71630859375,
-0.09344482421875,
-0.462158203125,
-0.2110595703125,
-1.115234375,
-0.09844970703125,
0.2066650390625,
-0.388916015625,
0.25390625,
0.11004638671875,
0.1995849609375,
-0.262451171875,
-0.0240020751953125,
-0.434814453125,
-0.201416015625,
-0.5556640625,
-0.58203125,
0.5615234375,
0.38037109375,
0.5654296875,
0.0986328125,
-0.5703125,
-0.15234375,
0.42724609375,
-0.11761474609375,
-0.58447265625,
-0.2109375,
-0.39013671875,
-0.1739501953125,
-0.473388671875,
0.0791015625,
-0.08966064453125,
0.3564453125,
0.99609375,
-0.01544952392578125,
0.3359375,
0.359375,
-0.7763671875,
0.8818359375,
0.328857421875,
-0.69091796875,
-0.3740234375,
0.254638671875,
-0.0653076171875,
0.65380859375,
0.5673828125,
-0.7900390625,
-0.5673828125,
-0.7978515625,
0.263916015625,
-0.79931640625,
-0.178466796875,
-0.9599609375,
-0.5927734375,
-0.390869140625,
0.57373046875,
-0.115234375,
-0.68310546875,
0.038238525390625,
-0.86669921875,
-0.056121826171875,
-0.84375,
-0.222900390625,
-0.75048828125,
-0.677734375,
-0.227783203125,
0.88671875,
0.0750732421875,
-0.003070831298828125,
0.247802734375,
-0.12322998046875,
0.1778564453125,
0.2744140625,
-0.73828125,
-0.1409912109375,
-0.025482177734375,
0.0731201171875,
-0.179931640625,
0.0062255859375,
-0.8193359375,
0.60498046875,
-0.86767578125,
0.2291259765625,
-0.2122802734375,
-0.03485107421875,
-0.351318359375,
-0.1844482421875,
0.97119140625,
-0.343505859375,
0.353759765625,
-0.297119140625,
0.360595703125,
0.787109375,
-0.68896484375,
-0.427978515625,
-1.0205078125,
-0.83349609375,
-1.384765625,
0.6875,
-0.441162109375,
0.1273193359375,
-0.720703125,
-0.576171875,
0.943359375,
-0.71240234375,
0.318359375,
1.1494140625,
0.0117950439453125,
0.426513671875,
-0.25146484375,
0.677734375,
0.21435546875,
-0.6064453125,
0.219482421875,
0.415771484375,
-0.62451171875,
-0.130126953125,
-0.38916015625,
-1.0048828125,
-0.474853515625,
0.423095703125,
1.1416015625,
-0.006282806396484375,
0.290283203125,
-0.3974609375,
-1.0556640625,
-0.52880859375,
0.68017578125,
0.30859375,
0.407958984375,
1.009765625,
0.1693115234375,
-0.0762939453125,
0.1109619140625,
-0.51318359375,
-0.27001953125,
-0.372314453125,
1.169921875,
-0.17236328125,
-0.59912109375,
0.8125,
0.859375,
-0.99658203125,
-1.029296875,
-0.0892333984375,
-0.1925048828125,
-0.093505859375,
-0.74462890625,
-0.05584716796875,
0.5712890625,
-0.4248046875,
0.01050567626953125,
0.26025390625,
-0.1302490234375,
0.263671875,
0.1778564453125,
0.2900390625,
-0.07196044921875,
0.382080078125,
0.9619140625,
-0.288818359375,
-0.55859375,
-0.91748046875,
-0.5439453125,
-0.439697265625,
0.1595458984375,
0.654296875,
-0.353515625,
0.157958984375,
0.398681640625,
0.0239410400390625,
1.0009765625,
-0.271728515625,
-0.450439453125,
0.379638671875,
-0.82666015625,
-0.65673828125,
0.1893310546875,
0.053466796875,
-0.4716796875,
0.69873046875,
-0.63623046875,
0.020294189453125,
0.1759033203125,
0.065185546875,
-0.3779296875,
-1.033203125,
-0.185546875,
-1.287109375,
-0.365234375,
-0.509765625,
-0.93359375,
-0.1771240234375,
0.0416259765625,
0.1826171875,
-0.75634765625,
0.04315185546875,
0.42724609375,
-0.2333984375,
0.9208984375,
-0.6103515625,
0.1351318359375,
-0.462646484375,
-0.492919921875,
-0.556640625,
0.0264892578125,
-0.44921875,
-0.03955078125,
-0.89990234375,
0.14453125,
-0.0284576416015625,
0.484619140625,
-0.256103515625,
0.6123046875,
-0.54736328125,
-1.162109375,
0.2054443359375,
-0.05877685546875,
0.043182373046875,
0.7587890625,
0.408447265625,
-0.08270263671875,
0.49169921875,
-0.0207672119140625,
-0.275634765625,
-0.400390625,
0.5634765625,
0.5380859375,
-0.252685546875,
-0.1708984375,
-0.188720703125,
0.2646484375,
-1.2060546875,
0.55029296875,
-0.5966796875,
0.201171875,
0.3046875,
-0.51416015625,
0.443359375,
1.1328125,
-0.491943359375,
0.22607421875,
-0.1109619140625,
0.1348876953125,
0.14111328125,
0.280029296875,
-0.138916015625,
0.7724609375,
-0.198486328125,
-0.53759765625,
0.00010442733764648438,
0.29736328125,
-0.204345703125,
0.41552734375,
-0.1558837890625,
-1.0498046875,
-0.8701171875,
-0.1522216796875,
0.01104736328125,
0.210205078125,
0.048309326171875,
-0.221435546875,
-0.0418701171875,
0.1343994140625,
-0.861328125,
0.2169189453125,
-0.9208984375,
-0.8681640625,
0.525390625,
-0.1953125,
-0.228271484375,
0.052581787109375,
-0.325927734375,
-0.371337890625,
0.16455078125,
0.54296875,
-0.67529296875,
0.50927734375,
-0.1875,
0.62890625,
-0.427001953125,
-0.236328125,
0.09515380859375,
0.6494140625,
-0.77294921875,
-0.53369140625,
-0.271240234375,
0.88623046875,
0.2271728515625,
-0.3984375,
-0.638671875,
0.095703125,
0.206298828125,
0.3056640625,
-0.59765625,
0.21826171875,
-0.2210693359375,
0.673828125,
-1.2392578125,
0.0758056640625,
0.05712890625,
0.2308349609375,
0.12744140625,
-0.345703125,
-0.68798828125,
1.1240234375,
0.322509765625,
-0.05450439453125,
0.58056640625,
0.01128387451171875,
0.34521484375,
-0.0113677978515625,
-0.026611328125,
-0.06451416015625,
0.72216796875,
0.63916015625,
0.59619140625,
-0.1827392578125,
0.1707763671875,
0.7578125,
0.20361328125,
-0.3603515625,
0.27685546875,
0.006900787353515625,
-0.078369140625,
0.341796875,
-0.218994140625,
-0.275390625,
-0.156982421875,
-0.375732421875,
0.63134765625,
-0.51318359375,
-0.0066070556640625,
-0.2177734375,
-0.8662109375,
0.71337890625,
-0.255126953125,
-0.385986328125,
0.419189453125,
-0.1650390625,
0.1519775390625,
0.57470703125,
-0.43359375,
-0.337646484375,
1.1162109375,
0.771484375,
0.406982421875,
0.73779296875,
0.356689453125,
0.56787109375,
-0.52099609375,
0.363037109375,
0.06939697265625,
-0.07440185546875,
-0.1077880859375,
-0.7333984375,
-1.0029296875,
0.56689453125,
-0.298583984375,
-0.254638671875,
0.58056640625,
-0.53076171875,
0.334716796875,
-0.533203125,
0.9404296875,
-0.353271484375,
0.302001953125,
0.351318359375,
-0.50146484375,
-0.65087890625,
0.6787109375,
-0.306884765625,
0.341552734375,
0.08233642578125,
0.9443359375,
-0.02923583984375,
1.6669921875,
0.5546875,
-0.11956787109375,
0.014129638671875,
0.47509765625,
-0.29736328125,
-0.332275390625,
-0.6962890625,
-0.326416015625,
0.132568359375,
-0.241943359375,
-0.849609375,
-0.07025146484375,
0.77392578125,
0.1429443359375,
-0.884765625,
-0.283447265625,
0.332275390625,
-1.1689453125,
0.403564453125,
0.360595703125,
0.258056640625,
0.1319580078125,
-0.216064453125,
-0.136962890625,
-0.5869140625,
0.437255859375,
-0.77490234375,
0.30859375,
-0.5068359375,
-0.3916015625,
-0.6142578125,
-0.67724609375,
-0.4072265625,
-0.0938720703125,
-0.498779296875,
-0.7294921875,
0.57373046875,
0.2939453125,
0.7216796875,
0.5146484375,
-0.2822265625,
0.2454833984375,
0.69873046875,
0.9736328125,
-0.1937255859375,
1.107421875,
0.323974609375,
-0.09564208984375,
0.2174072265625,
-0.360107421875,
0.30322265625,
-0.050750732421875,
0.345947265625,
-0.5126953125,
-0.24462890625,
-0.8046875,
-1.123046875,
0.448974609375,
0.443115234375,
0.35595703125,
-0.70263671875,
-1.111328125,
-0.0560302734375,
-1.2177734375,
-0.42041015625,
-0.6689453125,
0.7421875,
-0.73583984375,
-0.034515380859375,
0.0833740234375,
-1.134765625,
4.3203125,
0.9462890625,
0.634765625,
0.46923828125,
0.10260009765625,
0.79833984375,
0.464599609375,
-0.307373046875,
-0.402099609375,
-0.2744140625,
0.60546875,
-0.54638671875,
-0.06268310546875,
0.93505859375,
0.498291015625,
0.29345703125,
-0.260009765625,
0.07000732421875,
0.1907958984375,
-0.8251953125,
-0.67529296875,
0.3466796875,
0.102294921875,
0.5673828125,
0.285400390625,
0.274658203125,
0.76416015625,
-0.669921875,
-0.1802978515625,
-0.80810546875,
0.09649658203125,
-0.38623046875,
0.9619140625,
0.271484375,
-0.09808349609375,
0.69775390625,
-0.07281494140625,
-0.448974609375,
0.031341552734375,
0.10791015625,
-0.06536865234375,
0.163330078125,
0.5322265625,
-0.71630859375,
-0.274169921875,
0.5126953125,
-0.56787109375,
0.6142578125,
0.372314453125,
-1.037109375,
1.0302734375,
-0.162353515625,
0.45166015625,
-0.88427734375,
-0.60009765625,
0.19287109375,
0.091796875,
0.0908203125,
-0.376953125,
0.59228515625,
0.60205078125,
0.61767578125,
0.055206298828125,
0.4853515625,
-0.93701171875,
0.57666015625,
-0.228271484375,
0.6220703125,
-0.40625,
-0.0191497802734375,
-0.236328125,
-0.290283203125,
-0.2890625,
-0.58056640625,
0.52587890625,
0.06793212890625,
-0.270751953125,
0.890625,
0.30712890625,
-0.7529296875,
0.0721435546875,
-0.269775390625,
-0.0596923828125,
-0.303466796875,
0.787109375,
1.205078125,
-0.430908203125,
0.1907958984375,
-0.2469482421875,
0.5283203125,
0.560546875,
0.767578125,
-0.17822265625,
-0.54296875,
-0.306884765625
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
This is the hard version of the problem. The difference between the versions is the constraint on n and the required number of operations. You can make hacks only if all versions of the problem are solved.
There are two binary strings a and b of length n (a binary string is a string consisting of symbols 0 and 1). In an operation, you select a prefix of a, and simultaneously invert the bits in the prefix (0 changes to 1 and 1 changes to 0) and reverse the order of the bits in the prefix.
For example, if a=001011 and you select the prefix of length 3, it becomes 011011. Then if you select the entire string, it becomes 001001.
Your task is to transform the string a into b in at most 2n operations. It can be proved that it is always possible.
Input
The first line contains a single integer t (1≤ t≤ 1000) — the number of test cases. Next 3t lines contain descriptions of test cases.
The first line of each test case contains a single integer n (1≤ n≤ 10^5) — the length of the binary strings.
The next two lines contain two binary strings a and b of length n.
It is guaranteed that the sum of n across all test cases does not exceed 10^5.
Output
For each test case, output an integer k (0≤ k≤ 2n), followed by k integers p_1,…,p_k (1≤ p_i≤ n). Here k is the number of operations you use and p_i is the length of the prefix you flip in the i-th operation.
Example
Input
5
2
01
10
5
01011
11100
2
01
01
10
0110011011
1000110100
1
0
1
Output
3 1 2 1
6 5 2 5 3 1 2
0
9 4 1 2 10 4 1 2 1 5
1 1
Note
In the first test case, we have 01→ 11→ 00→ 10.
In the second test case, we have 01011→ 00101→ 11101→ 01000→ 10100→ 00100→ 11100.
In the third test case, the strings are already the same. Another solution is to flip the prefix of length 2, which will leave a unchanged.
Tags: constructive algorithms, data structures, implementation, strings, two pointers
Correct Solution:
```
#------------------------------warmup----------------------------
# *******************************
# * AUTHOR: RAJDEEP GHOSH *
# * NICK : Rajdeep2k *
# * INSTITUTION: IIEST, SHIBPUR *
# *******************************
import os
import sys
from io import BytesIO, IOBase
import math
BUFSIZE = 8192
class FastIO(IOBase):
newlines = 0
def __init__(self, file):
self._fd = file.fileno()
self.buffer = BytesIO()
self.writable = "x" in file.mode or "r" not in file.mode
self.write = self.buffer.write if self.writable else None
def read(self):
while True:
b = os.read(self._fd, max(os.fstat(self._fd).st_size, BUFSIZE))
if not b:
break
ptr = self.buffer.tell()
self.buffer.seek(0, 2), self.buffer.write(b), self.buffer.seek(ptr)
self.newlines = 0
return self.buffer.read()
def readline(self):
while self.newlines == 0:
b = os.read(self._fd, max(os.fstat(self._fd).st_size, BUFSIZE))
self.newlines = b.count(b"\n") + (not b)
ptr = self.buffer.tell()
self.buffer.seek(0, 2), self.buffer.write(b), self.buffer.seek(ptr)
self.newlines -= 1
return self.buffer.readline()
def flush(self):
if self.writable:
os.write(self._fd, self.buffer.getvalue())
self.buffer.truncate(0), self.buffer.seek(0)
class IOWrapper(IOBase):
def __init__(self, file):
self.buffer = FastIO(file)
self.flush = self.buffer.flush
self.writable = self.buffer.writable
self.write = lambda s: self.buffer.write(s.encode("ascii"))
self.read = lambda: self.buffer.read().decode("ascii")
self.readline = lambda: self.buffer.readline().decode("ascii")
sys.stdin, sys.stdout = IOWrapper(sys.stdin), IOWrapper(sys.stdout)
input = lambda: sys.stdin.readline().rstrip("\r\n")
#-------------------game starts now---------------------------------------------------
for _ in range(int(input())):
n = int(input())
s1 = input()
s2 = input()
if(s1 == s2):
print('0')
else:
s1 = list(s1)
s2 = list(s2)
ans=[]
end=n-1
rev=0
fc=s1[0]
while(end>=0):
if rev&1:
fc=chr(1 - (ord(s1[n-(rev//2)-1]) - 48) + 48)
else:
fc=s1[rev//2]
if fc==s2[end]:
ans.append(1)
ans.append(end+1)
rev+=1
end-=1
else:
ans.append(end+1)
rev+=1
end-=1
print(len(ans),end=' ')
print(*ans)
```
| 10,127 | [
0.1578369140625,
-0.424560546875,
-0.0615234375,
0.07354736328125,
-0.379638671875,
-0.791015625,
0.002689361572265625,
-0.19775390625,
0.18505859375,
1.01953125,
0.7890625,
-0.259521484375,
0.33154296875,
-0.9013671875,
-0.54052734375,
0.3212890625,
-0.3837890625,
-0.59375,
-0.296630859375,
-0.541015625,
-0.064208984375,
-0.11358642578125,
-1.3525390625,
-0.07293701171875,
-0.58740234375,
0.82373046875,
0.3271484375,
-0.153564453125,
1.0341796875,
1.0634765625,
-0.422607421875,
-0.4482421875,
0.75830078125,
-0.9794921875,
-0.440673828125,
-0.48779296875,
0.59521484375,
-0.8134765625,
-0.1390380859375,
-0.2880859375,
0.5693359375,
-0.261474609375,
0.2467041015625,
-0.919921875,
-1.3154296875,
0.2010498046875,
-0.3564453125,
-0.31298828125,
-0.1546630859375,
-0.469970703125,
0.0140380859375,
-0.25,
0.6201171875,
-0.09954833984375,
0.0819091796875,
0.1527099609375,
0.2271728515625,
-0.5458984375,
-0.460205078125,
0.1866455078125,
0.0853271484375,
0.126708984375,
0.1839599609375,
-0.77490234375,
0.11004638671875,
0.189453125,
-0.253662109375,
-0.435302734375,
-0.404296875,
-1.01171875,
-0.325439453125,
-0.061187744140625,
-0.736328125,
-0.330810546875,
-0.1092529296875,
0.250732421875,
0.24365234375,
-0.170166015625,
-0.87255859375,
0.77978515625,
-0.2939453125,
0.92236328125,
0.07794189453125,
0.2169189453125,
-0.4716796875,
-0.5302734375,
-0.03521728515625,
0.2274169921875,
0.1861572265625,
-0.1314697265625,
-0.386962890625,
0.57958984375,
-0.4775390625,
0.07781982421875,
0.4013671875,
0.70751953125,
-0.312255859375,
0.261962890625,
0.4453125,
-0.044219970703125,
0.8037109375,
1.2294921875,
-0.204833984375,
1.1669921875,
-0.6279296875,
-0.2197265625,
-0.0494384765625,
0.13232421875,
-0.037078857421875,
-0.053955078125,
-0.0020751953125,
-0.184326171875,
0.67431640625,
0.354248046875,
-0.407958984375,
0.771484375,
-0.031951904296875,
0.406982421875,
-0.99267578125,
0.4697265625,
0.66064453125,
-0.07611083984375,
0.73828125,
-0.255859375,
-0.1343994140625,
-0.226318359375,
-0.321044921875,
1.1416015625,
-0.42578125,
-0.399169921875,
0.27734375,
-0.0103912353515625,
-0.245361328125,
0.334228515625,
-0.039093017578125,
0.72802734375,
-0.2298583984375,
0.431884765625,
0.7275390625,
-0.488037109375,
0.78271484375,
-0.181640625,
-0.1630859375,
1.70703125,
0.4990234375,
0.1312255859375,
1.0126953125,
0.412841796875,
-0.31591796875,
0.475830078125,
-0.91064453125,
0.5830078125,
0.261962890625,
0.335205078125,
-0.1458740234375,
-0.1025390625,
-0.274169921875,
0.5341796875,
0.10015869140625,
0.163818359375,
-0.0247955322265625,
0.275146484375,
0.032379150390625,
0.9423828125,
-0.13037109375,
1.0810546875,
-0.3974609375,
-0.344970703125,
-0.278076171875,
-0.6845703125,
0.5078125,
-0.2149658203125,
-0.42578125,
0.6064453125,
0.5439453125,
1.16015625,
1.3505859375,
-0.466064453125,
0.250244140625,
0.305419921875,
-0.712890625,
0.0119781494140625,
0.68603515625,
0.95361328125,
-0.1781005859375,
0.2286376953125,
-0.10003662109375,
-0.39990234375,
-0.482666015625,
-0.73046875,
-0.13818359375,
0.69677734375,
-0.7646484375,
0.180419921875,
0.329345703125,
0.294677734375,
-0.8779296875,
-0.1031494140625,
-0.270751953125,
-0.70458984375,
-0.29296875,
0.5078125,
-0.4365234375,
0.54638671875,
-0.7646484375,
-0.5078125,
0.591796875,
1.048828125,
-0.2548828125,
0.361572265625,
0.391845703125,
0.202880859375,
-0.2296142578125,
0.357666015625,
0.310791015625,
-0.21044921875,
-0.446533203125,
1.1337890625,
0.308349609375,
-0.08001708984375,
0.0733642578125,
0.69189453125,
0.62890625,
0.394775390625,
-0.214599609375,
0.03802490234375,
0.33447265625,
1.1904296875,
0.127197265625,
0.83056640625,
0.0219268798828125,
0.75537109375,
0.6923828125,
0.66796875,
0.5478515625,
0.0997314453125,
0.634765625,
0.86474609375,
0.184814453125,
0.38720703125,
0.429443359375,
0.466796875,
0.330322265625,
0.4765625,
0.2490234375,
0.1883544921875,
0.271240234375,
0.053466796875,
-0.438232421875,
0.180908203125,
-0.41162109375,
0.86083984375,
-0.0865478515625,
0.1580810546875,
-0.349853515625,
-0.464111328125,
0.1669921875,
0.89306640625,
-0.75048828125,
-0.192626953125,
0.154052734375,
0.056640625,
0.11614990234375,
-0.270263671875,
0.358642578125,
0.373046875,
0.44287109375,
0.52392578125,
-0.39501953125,
-0.240234375,
-1.1728515625,
-0.86328125,
-0.84521484375,
-0.50732421875,
-0.853515625,
0.062164306640625,
0.14794921875,
-0.71630859375,
0.328369140625,
-0.53076171875,
-0.268310546875,
0.2257080078125,
-0.697265625,
0.64990234375,
-0.1444091796875,
0.291015625,
-1.3837890625,
0.82080078125,
0.3134765625,
1.1455078125,
-0.7529296875,
0.0867919921875,
0.12017822265625,
-0.8046875,
0.0218353271484375,
0.091552734375,
0.2298583984375,
-0.04052734375,
-0.7392578125,
-0.6708984375,
-0.74658203125,
-0.240966796875,
-0.3095703125,
0.37744140625,
-0.5341796875,
0.92333984375,
0.75048828125,
-0.56689453125,
0.76416015625,
0.87158203125,
-0.5947265625,
0.382080078125,
0.433837890625,
0.145751953125,
-0.8017578125,
1.599609375,
0.50634765625,
0.39208984375,
-0.4482421875,
-0.422607421875,
-0.21240234375,
-0.12322998046875,
0.17431640625,
-0.66845703125,
-0.51318359375,
0.56103515625,
-0.1240234375,
-0.9892578125,
0.142333984375,
-0.900390625,
-0.61962890625,
-0.232666015625,
-0.71826171875,
1.3427734375,
0.98681640625,
-0.09417724609375,
-0.051300048828125,
-0.12060546875,
-0.09771728515625,
0.57275390625,
0.466796875,
-0.06976318359375,
-0.030548095703125,
0.80859375,
0.29638671875,
0.0404052734375,
0.1768798828125,
-0.5615234375,
0.01505279541015625,
-0.058990478515625,
0.372314453125,
0.4755859375,
0.15673828125,
0.403076171875,
0.2509765625,
0.498291015625,
-1.2236328125,
-0.21826171875,
-0.24462890625,
0.5185546875,
0.5185546875,
0.3642578125,
-0.00263214111328125,
-0.54638671875,
-0.84033203125,
-1.0732421875,
0.1820068359375,
0.07501220703125,
0.77197265625,
-0.833984375,
0.77001953125,
0.1671142578125,
-0.361328125,
0.533203125,
-0.66064453125,
-0.038177490234375,
0.9345703125,
-0.587890625,
0.89208984375,
-0.97998046875,
0.32275390625,
0.026580810546875,
0.00858306884765625,
0.376708984375,
0.454345703125,
0.45263671875,
-0.49462890625,
-0.435791015625,
-0.63916015625,
0.0802001953125,
0.0006437301635742188,
-0.3515625,
0.099609375,
-0.304443359375,
-0.3388671875,
-0.8564453125,
0.35693359375,
0.87890625,
0.86572265625,
-0.049652099609375,
0.472412109375,
0.404052734375,
0.453857421875,
0.6328125,
-0.1094970703125,
0.244873046875,
-0.93994140625,
0.646484375,
0.2296142578125,
-0.322265625,
-0.70166015625,
-0.1466064453125,
-0.188720703125,
-0.01160430908203125,
-0.201904296875,
-0.306640625,
-0.89697265625,
0.36669921875,
-0.223876953125,
0.7939453125,
-0.41064453125,
-0.257080078125,
-0.712890625,
0.4609375,
0.51806640625,
-0.77392578125,
0.50634765625,
-0.96044921875,
0.658203125,
0.4873046875,
-0.30859375,
-0.306396484375,
-0.736328125,
-0.75146484375,
-0.5146484375,
0.289794921875,
1.052734375,
-0.169189453125,
0.5068359375,
-1.337890625,
0.325927734375,
0.15234375,
-0.74560546875,
-0.055267333984375,
-0.078857421875,
0.487060546875,
0.165771484375,
0.77099609375,
-0.1474609375,
-0.30126953125,
0.042755126953125,
-1.2978515625,
0.55126953125,
-0.5791015625,
0.482666015625,
0.1065673828125,
-0.23974609375,
0.061859130859375,
0.350341796875,
-0.145263671875,
0.07183837890625,
-0.28955078125,
0.2744140625,
-0.95361328125,
-0.59423828125,
0.5537109375,
-0.20263671875,
-0.314697265625,
1.0087890625,
0.07928466796875,
-0.064453125,
0.22802734375,
0.5517578125,
-0.48095703125,
0.42138671875,
-0.252197265625,
0.89013671875,
-0.52490234375,
-0.63623046875,
-0.443603515625,
-0.320556640625,
0.73486328125,
-0.080078125,
-0.451171875,
-0.2232666015625,
-1.12109375,
-0.10333251953125,
0.191650390625,
-0.409423828125,
0.2410888671875,
0.1322021484375,
0.205322265625,
-0.26318359375,
-0.034088134765625,
-0.463623046875,
-0.171142578125,
-0.533203125,
-0.58203125,
0.58740234375,
0.37890625,
0.54736328125,
0.09912109375,
-0.56884765625,
-0.15234375,
0.41455078125,
-0.12225341796875,
-0.607421875,
-0.1900634765625,
-0.395751953125,
-0.169189453125,
-0.470947265625,
0.058197021484375,
-0.08807373046875,
0.3447265625,
0.98828125,
-0.00598907470703125,
0.356201171875,
0.348388671875,
-0.78076171875,
0.9130859375,
0.33349609375,
-0.71240234375,
-0.36767578125,
0.27099609375,
-0.067626953125,
0.6787109375,
0.56689453125,
-0.7900390625,
-0.583984375,
-0.79443359375,
0.2529296875,
-0.80859375,
-0.194580078125,
-0.92626953125,
-0.59375,
-0.372802734375,
0.6142578125,
-0.105712890625,
-0.6943359375,
0.05645751953125,
-0.869140625,
-0.0701904296875,
-0.857421875,
-0.218017578125,
-0.7626953125,
-0.66748046875,
-0.226318359375,
0.89453125,
0.0865478515625,
-0.00817108154296875,
0.263671875,
-0.1011962890625,
0.14404296875,
0.30810546875,
-0.72802734375,
-0.163818359375,
-0.0296630859375,
0.072509765625,
-0.179931640625,
0.00797271728515625,
-0.8212890625,
0.59228515625,
-0.8720703125,
0.2322998046875,
-0.220703125,
-0.004085540771484375,
-0.360107421875,
-0.19580078125,
0.95556640625,
-0.350830078125,
0.374267578125,
-0.308837890625,
0.3359375,
0.77734375,
-0.685546875,
-0.419921875,
-1.0068359375,
-0.8349609375,
-1.4013671875,
0.69580078125,
-0.4375,
0.1478271484375,
-0.75634765625,
-0.55810546875,
0.9453125,
-0.6923828125,
0.353759765625,
1.15625,
0.0040130615234375,
0.426025390625,
-0.280029296875,
0.64697265625,
0.2119140625,
-0.6171875,
0.2276611328125,
0.406494140625,
-0.64501953125,
-0.12445068359375,
-0.392822265625,
-1,
-0.473388671875,
0.430419921875,
1.1259765625,
-0.01531982421875,
0.302978515625,
-0.41357421875,
-1.0693359375,
-0.53857421875,
0.697265625,
0.28173828125,
0.4111328125,
1.001953125,
0.1806640625,
-0.09124755859375,
0.10546875,
-0.50390625,
-0.292724609375,
-0.370849609375,
1.1787109375,
-0.177734375,
-0.59228515625,
0.8125,
0.85595703125,
-0.97900390625,
-1.0322265625,
-0.07696533203125,
-0.1573486328125,
-0.1046142578125,
-0.75390625,
-0.039581298828125,
0.568359375,
-0.4365234375,
0.0222015380859375,
0.2437744140625,
-0.11639404296875,
0.2384033203125,
0.193115234375,
0.28759765625,
-0.07659912109375,
0.358642578125,
0.97607421875,
-0.29296875,
-0.57470703125,
-0.951171875,
-0.5615234375,
-0.42578125,
0.145263671875,
0.65966796875,
-0.350830078125,
0.1583251953125,
0.407470703125,
0.0214996337890625,
1.0185546875,
-0.296142578125,
-0.4365234375,
0.385986328125,
-0.8349609375,
-0.62744140625,
0.1690673828125,
0.083984375,
-0.49853515625,
0.6923828125,
-0.6435546875,
0.026824951171875,
0.193115234375,
0.0638427734375,
-0.405029296875,
-1.03125,
-0.18896484375,
-1.3134765625,
-0.3828125,
-0.53271484375,
-0.939453125,
-0.1705322265625,
0.03912353515625,
0.2032470703125,
-0.7578125,
0.05340576171875,
0.428955078125,
-0.2303466796875,
0.90869140625,
-0.6279296875,
0.1279296875,
-0.488037109375,
-0.480712890625,
-0.57421875,
0.0198974609375,
-0.44140625,
-0.032318115234375,
-0.88671875,
0.1392822265625,
-0.0267791748046875,
0.4912109375,
-0.226806640625,
0.61181640625,
-0.55126953125,
-1.150390625,
0.193359375,
-0.042694091796875,
0.034698486328125,
0.744140625,
0.38916015625,
-0.08319091796875,
0.50732421875,
-0.024200439453125,
-0.26611328125,
-0.4150390625,
0.57470703125,
0.52197265625,
-0.25927734375,
-0.1925048828125,
-0.16552734375,
0.261962890625,
-1.205078125,
0.5517578125,
-0.58154296875,
0.2039794921875,
0.29931640625,
-0.5234375,
0.44580078125,
1.140625,
-0.505859375,
0.2359619140625,
-0.09295654296875,
0.141845703125,
0.1712646484375,
0.300048828125,
-0.1488037109375,
0.76318359375,
-0.2198486328125,
-0.537109375,
-0.0087432861328125,
0.289794921875,
-0.2188720703125,
0.429443359375,
-0.1395263671875,
-1.0400390625,
-0.875,
-0.1455078125,
0.01514434814453125,
0.2366943359375,
0.07421875,
-0.22119140625,
-0.035003662109375,
0.1351318359375,
-0.845703125,
0.2432861328125,
-0.9501953125,
-0.86962890625,
0.5419921875,
-0.19189453125,
-0.233642578125,
0.09417724609375,
-0.322265625,
-0.368896484375,
0.16455078125,
0.55712890625,
-0.6806640625,
0.51025390625,
-0.1837158203125,
0.6357421875,
-0.436279296875,
-0.22412109375,
0.1112060546875,
0.6533203125,
-0.779296875,
-0.55029296875,
-0.3330078125,
0.89111328125,
0.218994140625,
-0.3740234375,
-0.6337890625,
0.0858154296875,
0.2188720703125,
0.294677734375,
-0.59619140625,
0.2005615234375,
-0.2371826171875,
0.6884765625,
-1.2314453125,
0.06536865234375,
0.0411376953125,
0.2099609375,
0.1322021484375,
-0.3447265625,
-0.68701171875,
1.14453125,
0.368896484375,
-0.05718994140625,
0.59326171875,
0.0158843994140625,
0.36767578125,
-0.0072174072265625,
-0.00322723388671875,
-0.051025390625,
0.74072265625,
0.6357421875,
0.59765625,
-0.169921875,
0.1883544921875,
0.7685546875,
0.19677734375,
-0.3369140625,
0.303955078125,
0.007076263427734375,
-0.08966064453125,
0.36376953125,
-0.2177734375,
-0.258544921875,
-0.1546630859375,
-0.34326171875,
0.6259765625,
-0.51953125,
-0.0196685791015625,
-0.2283935546875,
-0.8759765625,
0.701171875,
-0.271484375,
-0.37890625,
0.400390625,
-0.1607666015625,
0.171630859375,
0.55908203125,
-0.416259765625,
-0.317626953125,
1.1162109375,
0.76611328125,
0.3984375,
0.74072265625,
0.357177734375,
0.548828125,
-0.55126953125,
0.34765625,
0.073486328125,
-0.0841064453125,
-0.0911865234375,
-0.73974609375,
-0.99560546875,
0.57421875,
-0.302001953125,
-0.25048828125,
0.57177734375,
-0.55810546875,
0.322265625,
-0.53125,
0.97216796875,
-0.369140625,
0.31005859375,
0.344970703125,
-0.50048828125,
-0.6494140625,
0.681640625,
-0.3076171875,
0.345458984375,
0.08660888671875,
0.904296875,
-0.00827789306640625,
1.6923828125,
0.57275390625,
-0.12054443359375,
0.0151519775390625,
0.477783203125,
-0.29443359375,
-0.32421875,
-0.6875,
-0.3427734375,
0.127685546875,
-0.23291015625,
-0.87109375,
-0.06103515625,
0.78271484375,
0.1312255859375,
-0.87255859375,
-0.2705078125,
0.350830078125,
-1.1572265625,
0.4013671875,
0.366455078125,
0.25,
0.153076171875,
-0.211181640625,
-0.1524658203125,
-0.5927734375,
0.44091796875,
-0.7724609375,
0.313232421875,
-0.493896484375,
-0.37890625,
-0.6435546875,
-0.67138671875,
-0.387451171875,
-0.09228515625,
-0.51806640625,
-0.74169921875,
0.5771484375,
0.299560546875,
0.6982421875,
0.5400390625,
-0.298583984375,
0.269287109375,
0.69921875,
0.9697265625,
-0.185546875,
1.11328125,
0.337890625,
-0.077880859375,
0.2127685546875,
-0.3583984375,
0.3232421875,
-0.04913330078125,
0.351318359375,
-0.50732421875,
-0.233642578125,
-0.81982421875,
-1.1123046875,
0.436279296875,
0.439208984375,
0.360107421875,
-0.7216796875,
-1.1181640625,
-0.08013916015625,
-1.2119140625,
-0.4365234375,
-0.693359375,
0.75439453125,
-0.7216796875,
-0.0390625,
0.07379150390625,
-1.1171875,
4.30859375,
0.93896484375,
0.63134765625,
0.472900390625,
0.12255859375,
0.79248046875,
0.48486328125,
-0.310302734375,
-0.39111328125,
-0.296630859375,
0.59521484375,
-0.521484375,
-0.05084228515625,
0.95751953125,
0.521484375,
0.317138671875,
-0.25830078125,
0.039947509765625,
0.2113037109375,
-0.84912109375,
-0.69970703125,
0.32373046875,
0.1060791015625,
0.56396484375,
0.2900390625,
0.29052734375,
0.78857421875,
-0.68505859375,
-0.1932373046875,
-0.81005859375,
0.0816650390625,
-0.3916015625,
0.9619140625,
0.27294921875,
-0.09637451171875,
0.7255859375,
-0.06439208984375,
-0.46630859375,
0.044677734375,
0.11505126953125,
-0.057647705078125,
0.1954345703125,
0.544921875,
-0.697265625,
-0.289794921875,
0.5244140625,
-0.5703125,
0.61181640625,
0.361572265625,
-1.041015625,
1.025390625,
-0.141845703125,
0.478759765625,
-0.87255859375,
-0.615234375,
0.1961669921875,
0.097900390625,
0.09136962890625,
-0.3525390625,
0.603515625,
0.61572265625,
0.61572265625,
0.033050537109375,
0.5029296875,
-0.92919921875,
0.546875,
-0.232421875,
0.58984375,
-0.421142578125,
-0.004070281982421875,
-0.2208251953125,
-0.2861328125,
-0.313232421875,
-0.57861328125,
0.521484375,
0.07305908203125,
-0.278076171875,
0.86181640625,
0.330322265625,
-0.7626953125,
0.0709228515625,
-0.270751953125,
-0.0750732421875,
-0.311279296875,
0.78076171875,
1.1953125,
-0.437744140625,
0.181640625,
-0.254150390625,
0.5361328125,
0.55517578125,
0.74560546875,
-0.177490234375,
-0.54345703125,
-0.3251953125
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
This is the hard version of the problem. The difference between the versions is the constraint on n and the required number of operations. You can make hacks only if all versions of the problem are solved.
There are two binary strings a and b of length n (a binary string is a string consisting of symbols 0 and 1). In an operation, you select a prefix of a, and simultaneously invert the bits in the prefix (0 changes to 1 and 1 changes to 0) and reverse the order of the bits in the prefix.
For example, if a=001011 and you select the prefix of length 3, it becomes 011011. Then if you select the entire string, it becomes 001001.
Your task is to transform the string a into b in at most 2n operations. It can be proved that it is always possible.
Input
The first line contains a single integer t (1≤ t≤ 1000) — the number of test cases. Next 3t lines contain descriptions of test cases.
The first line of each test case contains a single integer n (1≤ n≤ 10^5) — the length of the binary strings.
The next two lines contain two binary strings a and b of length n.
It is guaranteed that the sum of n across all test cases does not exceed 10^5.
Output
For each test case, output an integer k (0≤ k≤ 2n), followed by k integers p_1,…,p_k (1≤ p_i≤ n). Here k is the number of operations you use and p_i is the length of the prefix you flip in the i-th operation.
Example
Input
5
2
01
10
5
01011
11100
2
01
01
10
0110011011
1000110100
1
0
1
Output
3 1 2 1
6 5 2 5 3 1 2
0
9 4 1 2 10 4 1 2 1 5
1 1
Note
In the first test case, we have 01→ 11→ 00→ 10.
In the second test case, we have 01011→ 00101→ 11101→ 01000→ 10100→ 00100→ 11100.
In the third test case, the strings are already the same. Another solution is to flip the prefix of length 2, which will leave a unchanged.
Tags: constructive algorithms, data structures, implementation, strings, two pointers
Correct Solution:
```
import math
import sys
#input=sys.stdin.readline
t=int(input())
#t=1
for _ in range(t):
n=int(input())
#n,m=map(int,input().split())
#l1=list(map(int,input().split()))
a=input()
a+='0'
b=input()
b+='0'
ans=[]
ans1=[]
for i in range(n):
if a[i]=='1' and a[i+1]=='0' :
ans.append(i+1)
if a[i]=='0' and a[i+1]=='1':
ans.append(i+1)
if b[i]=='1' and b[i+1]=='0' :
ans1.append(i+1)
if b[i]=='0' and b[i+1]=='1':
ans1.append(i+1)
if len(ans)+len(ans1)==0:
print(0)
else:
print(len(ans)+len(ans1),*ans,*ans1[::-1])
```
| 10,128 | [
0.1640625,
-0.396484375,
-0.04742431640625,
0.07415771484375,
-0.389404296875,
-0.75634765625,
-0.008209228515625,
-0.203125,
0.18603515625,
1,
0.8037109375,
-0.29736328125,
0.297607421875,
-0.89453125,
-0.57568359375,
0.328369140625,
-0.380859375,
-0.61376953125,
-0.299560546875,
-0.533203125,
-0.016815185546875,
-0.1109619140625,
-1.34765625,
-0.080078125,
-0.6064453125,
0.83642578125,
0.341552734375,
-0.127197265625,
0.99658203125,
1.0810546875,
-0.389892578125,
-0.460205078125,
0.7373046875,
-0.9794921875,
-0.437744140625,
-0.486083984375,
0.599609375,
-0.8427734375,
-0.12353515625,
-0.2744140625,
0.560546875,
-0.2281494140625,
0.2047119140625,
-0.9140625,
-1.2900390625,
0.1749267578125,
-0.37646484375,
-0.324951171875,
-0.1427001953125,
-0.457275390625,
0.036041259765625,
-0.24755859375,
0.61376953125,
-0.10662841796875,
0.054962158203125,
0.16162109375,
0.2213134765625,
-0.56982421875,
-0.467529296875,
0.17138671875,
0.07427978515625,
0.14453125,
0.193115234375,
-0.7373046875,
0.10797119140625,
0.1707763671875,
-0.2509765625,
-0.481689453125,
-0.4140625,
-1.009765625,
-0.317138671875,
-0.06219482421875,
-0.7021484375,
-0.299560546875,
-0.08819580078125,
0.27490234375,
0.2386474609375,
-0.1810302734375,
-0.85595703125,
0.76953125,
-0.286865234375,
0.939453125,
0.09228515625,
0.237548828125,
-0.4755859375,
-0.5380859375,
-0.046295166015625,
0.207763671875,
0.1822509765625,
-0.133056640625,
-0.376708984375,
0.59228515625,
-0.4951171875,
0.07537841796875,
0.419677734375,
0.7119140625,
-0.305908203125,
0.28076171875,
0.449462890625,
-0.037261962890625,
0.80224609375,
1.208984375,
-0.1951904296875,
1.2109375,
-0.63037109375,
-0.2120361328125,
-0.0281219482421875,
0.1331787109375,
-0.036895751953125,
-0.027130126953125,
0.0048828125,
-0.1968994140625,
0.7197265625,
0.34228515625,
-0.39208984375,
0.80078125,
-0.04150390625,
0.43505859375,
-0.994140625,
0.4736328125,
0.642578125,
-0.042327880859375,
0.7275390625,
-0.2137451171875,
-0.1529541015625,
-0.2313232421875,
-0.30615234375,
1.1572265625,
-0.42724609375,
-0.427978515625,
0.26123046875,
-0.01389312744140625,
-0.28857421875,
0.353271484375,
-0.06341552734375,
0.728515625,
-0.245849609375,
0.4384765625,
0.7548828125,
-0.467529296875,
0.7744140625,
-0.18359375,
-0.1524658203125,
1.7080078125,
0.51806640625,
0.11578369140625,
1.0400390625,
0.436767578125,
-0.284423828125,
0.463623046875,
-0.9267578125,
0.59814453125,
0.2427978515625,
0.353515625,
-0.1556396484375,
-0.1260986328125,
-0.298095703125,
0.517578125,
0.07781982421875,
0.181396484375,
-0.0655517578125,
0.273193359375,
0.04644775390625,
0.966796875,
-0.1358642578125,
1.0615234375,
-0.412841796875,
-0.365966796875,
-0.2457275390625,
-0.63525390625,
0.5234375,
-0.2205810546875,
-0.431884765625,
0.60302734375,
0.54736328125,
1.1650390625,
1.3662109375,
-0.4990234375,
0.272705078125,
0.33154296875,
-0.75830078125,
0.0058135986328125,
0.72119140625,
0.9609375,
-0.1591796875,
0.224853515625,
-0.08648681640625,
-0.377685546875,
-0.4853515625,
-0.73779296875,
-0.114013671875,
0.7001953125,
-0.76025390625,
0.1904296875,
0.287109375,
0.29248046875,
-0.8837890625,
-0.150390625,
-0.259765625,
-0.6962890625,
-0.307861328125,
0.494140625,
-0.44091796875,
0.52001953125,
-0.77587890625,
-0.4736328125,
0.60302734375,
1.0791015625,
-0.262451171875,
0.38330078125,
0.40478515625,
0.1651611328125,
-0.250732421875,
0.350830078125,
0.275634765625,
-0.1827392578125,
-0.4599609375,
1.115234375,
0.3095703125,
-0.08172607421875,
0.06317138671875,
0.68603515625,
0.59130859375,
0.41259765625,
-0.2069091796875,
0.0292205810546875,
0.32568359375,
1.19140625,
0.1240234375,
0.83935546875,
0.044769287109375,
0.748046875,
0.67626953125,
0.6484375,
0.53369140625,
0.10137939453125,
0.63525390625,
0.8701171875,
0.158203125,
0.40576171875,
0.410888671875,
0.486328125,
0.353515625,
0.4892578125,
0.258544921875,
0.2147216796875,
0.261474609375,
0.07574462890625,
-0.45068359375,
0.184814453125,
-0.424072265625,
0.84765625,
-0.0845947265625,
0.1768798828125,
-0.396484375,
-0.452392578125,
0.142822265625,
0.8974609375,
-0.7119140625,
-0.21533203125,
0.1087646484375,
0.0650634765625,
0.14697265625,
-0.27294921875,
0.321044921875,
0.345703125,
0.4150390625,
0.50146484375,
-0.38330078125,
-0.191162109375,
-1.19140625,
-0.84814453125,
-0.8623046875,
-0.51220703125,
-0.845703125,
0.0509033203125,
0.150146484375,
-0.68896484375,
0.328369140625,
-0.51318359375,
-0.284912109375,
0.2252197265625,
-0.703125,
0.642578125,
-0.187255859375,
0.29345703125,
-1.3681640625,
0.81640625,
0.326416015625,
1.1552734375,
-0.77685546875,
0.09332275390625,
0.1734619140625,
-0.80810546875,
0.03857421875,
0.094970703125,
0.2264404296875,
-0.048919677734375,
-0.72314453125,
-0.68701171875,
-0.7197265625,
-0.2362060546875,
-0.317626953125,
0.3681640625,
-0.5107421875,
0.90185546875,
0.77392578125,
-0.60498046875,
0.7646484375,
0.86376953125,
-0.603515625,
0.370361328125,
0.426025390625,
0.11956787109375,
-0.7939453125,
1.5859375,
0.50146484375,
0.365234375,
-0.434326171875,
-0.449951171875,
-0.216064453125,
-0.142822265625,
0.1810302734375,
-0.671875,
-0.51171875,
0.5478515625,
-0.10552978515625,
-0.96533203125,
0.144287109375,
-0.9150390625,
-0.5927734375,
-0.220458984375,
-0.69970703125,
1.3525390625,
0.96240234375,
-0.07196044921875,
-0.00677490234375,
-0.11431884765625,
-0.118896484375,
0.5654296875,
0.50537109375,
-0.0977783203125,
-0.038726806640625,
0.8095703125,
0.331787109375,
0.060821533203125,
0.2044677734375,
-0.533203125,
-0.003513336181640625,
-0.0572509765625,
0.361328125,
0.4580078125,
0.1458740234375,
0.42431640625,
0.28955078125,
0.5,
-1.2021484375,
-0.218505859375,
-0.266845703125,
0.533203125,
0.51416015625,
0.34521484375,
0.016204833984375,
-0.53369140625,
-0.796875,
-1.0693359375,
0.1392822265625,
0.07684326171875,
0.77392578125,
-0.84326171875,
0.76416015625,
0.15234375,
-0.360107421875,
0.5458984375,
-0.6552734375,
-0.00931549072265625,
0.94189453125,
-0.5947265625,
0.85302734375,
-0.98681640625,
0.29833984375,
0.019683837890625,
0.01128387451171875,
0.347412109375,
0.472412109375,
0.463623046875,
-0.479736328125,
-0.431396484375,
-0.65771484375,
0.048675537109375,
-0.00873565673828125,
-0.393310546875,
0.1109619140625,
-0.32080078125,
-0.356201171875,
-0.83203125,
0.330810546875,
0.8662109375,
0.88720703125,
-0.043609619140625,
0.5107421875,
0.425048828125,
0.49072265625,
0.6748046875,
-0.10174560546875,
0.2213134765625,
-0.921875,
0.6630859375,
0.2281494140625,
-0.314208984375,
-0.72607421875,
-0.1844482421875,
-0.172119140625,
-0.014129638671875,
-0.19189453125,
-0.3193359375,
-0.8876953125,
0.355224609375,
-0.2470703125,
0.7685546875,
-0.4140625,
-0.248779296875,
-0.74365234375,
0.424560546875,
0.52294921875,
-0.78271484375,
0.50390625,
-0.9560546875,
0.62744140625,
0.49462890625,
-0.30517578125,
-0.31982421875,
-0.75244140625,
-0.73486328125,
-0.49658203125,
0.28125,
1.05078125,
-0.1644287109375,
0.52880859375,
-1.369140625,
0.330322265625,
0.1871337890625,
-0.73291015625,
-0.0625,
-0.049652099609375,
0.5029296875,
0.161865234375,
0.76123046875,
-0.1475830078125,
-0.318115234375,
0.040863037109375,
-1.318359375,
0.595703125,
-0.57421875,
0.5224609375,
0.11578369140625,
-0.2396240234375,
0.07476806640625,
0.35693359375,
-0.1353759765625,
0.06585693359375,
-0.2900390625,
0.2568359375,
-0.98779296875,
-0.619140625,
0.62060546875,
-0.2003173828125,
-0.278564453125,
1.08203125,
0.07086181640625,
-0.0753173828125,
0.2274169921875,
0.490478515625,
-0.4638671875,
0.45458984375,
-0.285400390625,
0.8759765625,
-0.52978515625,
-0.64892578125,
-0.448974609375,
-0.320556640625,
0.736328125,
-0.11688232421875,
-0.45166015625,
-0.2083740234375,
-1.142578125,
-0.1180419921875,
0.185302734375,
-0.421875,
0.2230224609375,
0.10443115234375,
0.1715087890625,
-0.26220703125,
-0.024871826171875,
-0.431640625,
-0.1756591796875,
-0.53076171875,
-0.56201171875,
0.5576171875,
0.348388671875,
0.54833984375,
0.119140625,
-0.576171875,
-0.1368408203125,
0.421630859375,
-0.1395263671875,
-0.6083984375,
-0.2281494140625,
-0.40478515625,
-0.1748046875,
-0.488525390625,
0.09033203125,
-0.09320068359375,
0.326171875,
0.97509765625,
0.0007624626159667969,
0.352783203125,
0.356689453125,
-0.76953125,
0.9228515625,
0.3505859375,
-0.71630859375,
-0.355224609375,
0.2568359375,
-0.08477783203125,
0.65576171875,
0.51611328125,
-0.8046875,
-0.5791015625,
-0.8037109375,
0.26513671875,
-0.81591796875,
-0.1865234375,
-0.9384765625,
-0.5791015625,
-0.4208984375,
0.62451171875,
-0.07843017578125,
-0.6650390625,
0.05828857421875,
-0.88916015625,
-0.0654296875,
-0.84814453125,
-0.2021484375,
-0.759765625,
-0.693359375,
-0.22216796875,
0.90478515625,
0.10382080078125,
-0.0031642913818359375,
0.30419921875,
-0.1319580078125,
0.1646728515625,
0.30322265625,
-0.73046875,
-0.1898193359375,
-0.0031604766845703125,
0.07110595703125,
-0.1495361328125,
0.0438232421875,
-0.80126953125,
0.5966796875,
-0.85107421875,
0.2215576171875,
-0.2149658203125,
0.00553131103515625,
-0.31005859375,
-0.2027587890625,
0.94921875,
-0.37060546875,
0.3359375,
-0.30078125,
0.331787109375,
0.7998046875,
-0.6826171875,
-0.424072265625,
-0.9970703125,
-0.81591796875,
-1.40234375,
0.65869140625,
-0.435791015625,
0.159912109375,
-0.76220703125,
-0.5693359375,
0.96044921875,
-0.7001953125,
0.313720703125,
1.16796875,
0.035247802734375,
0.423828125,
-0.29150390625,
0.63037109375,
0.2135009765625,
-0.642578125,
0.21826171875,
0.420166015625,
-0.63623046875,
-0.1253662109375,
-0.411865234375,
-1.0146484375,
-0.480712890625,
0.41748046875,
1.1015625,
0.0035533905029296875,
0.281982421875,
-0.44921875,
-1.07421875,
-0.5205078125,
0.6943359375,
0.294677734375,
0.4345703125,
1.0166015625,
0.15283203125,
-0.09619140625,
0.11138916015625,
-0.499755859375,
-0.3017578125,
-0.379150390625,
1.1904296875,
-0.186279296875,
-0.595703125,
0.802734375,
0.85888671875,
-0.9658203125,
-1.029296875,
-0.06341552734375,
-0.149169921875,
-0.07440185546875,
-0.76806640625,
-0.01192474365234375,
0.552734375,
-0.411865234375,
-0.004558563232421875,
0.215576171875,
-0.1611328125,
0.221435546875,
0.1785888671875,
0.302490234375,
-0.1209716796875,
0.378662109375,
0.9599609375,
-0.286865234375,
-0.5947265625,
-0.9287109375,
-0.5439453125,
-0.433349609375,
0.12493896484375,
0.66943359375,
-0.3662109375,
0.1881103515625,
0.4052734375,
0.03271484375,
1.041015625,
-0.297607421875,
-0.444580078125,
0.3759765625,
-0.8056640625,
-0.6279296875,
0.17138671875,
0.0638427734375,
-0.47998046875,
0.68115234375,
-0.64306640625,
-0.006923675537109375,
0.207763671875,
0.054443359375,
-0.415283203125,
-1.0107421875,
-0.1826171875,
-1.296875,
-0.409423828125,
-0.552734375,
-0.935546875,
-0.1595458984375,
0.05755615234375,
0.1947021484375,
-0.736328125,
0.080322265625,
0.46240234375,
-0.239501953125,
0.93505859375,
-0.65380859375,
0.09661865234375,
-0.442626953125,
-0.46337890625,
-0.59716796875,
0.00616455078125,
-0.45556640625,
-0.040252685546875,
-0.88134765625,
0.145751953125,
-0.048095703125,
0.474853515625,
-0.2200927734375,
0.58056640625,
-0.55224609375,
-1.15234375,
0.2144775390625,
-0.00475311279296875,
-0.002227783203125,
0.76123046875,
0.38427734375,
-0.07794189453125,
0.495361328125,
-0.042083740234375,
-0.273681640625,
-0.392333984375,
0.55029296875,
0.54638671875,
-0.244140625,
-0.2056884765625,
-0.185302734375,
0.22900390625,
-1.1943359375,
0.5419921875,
-0.583984375,
0.2071533203125,
0.311279296875,
-0.5361328125,
0.461181640625,
1.1181640625,
-0.50439453125,
0.2457275390625,
-0.0726318359375,
0.11492919921875,
0.09539794921875,
0.303955078125,
-0.137939453125,
0.77294921875,
-0.2113037109375,
-0.544921875,
-0.007282257080078125,
0.2900390625,
-0.19970703125,
0.453369140625,
-0.1387939453125,
-1.052734375,
-0.9013671875,
-0.11956787109375,
0.002765655517578125,
0.227294921875,
0.055999755859375,
-0.244384765625,
-0.03106689453125,
0.128173828125,
-0.86328125,
0.2381591796875,
-0.9208984375,
-0.8984375,
0.54150390625,
-0.1971435546875,
-0.2493896484375,
0.1339111328125,
-0.302490234375,
-0.31787109375,
0.15478515625,
0.53369140625,
-0.6611328125,
0.49560546875,
-0.1881103515625,
0.6005859375,
-0.423828125,
-0.2191162109375,
0.09814453125,
0.6826171875,
-0.76806640625,
-0.5439453125,
-0.328369140625,
0.91064453125,
0.2076416015625,
-0.4013671875,
-0.626953125,
0.0938720703125,
0.22216796875,
0.318115234375,
-0.62353515625,
0.185302734375,
-0.239501953125,
0.68603515625,
-1.244140625,
0.038787841796875,
0.035003662109375,
0.195068359375,
0.110107421875,
-0.330322265625,
-0.7138671875,
1.12890625,
0.38525390625,
-0.0255279541015625,
0.61669921875,
0.016632080078125,
0.376220703125,
0.0026454925537109375,
-0.019073486328125,
-0.06298828125,
0.74462890625,
0.615234375,
0.58447265625,
-0.1898193359375,
0.16796875,
0.77001953125,
0.23681640625,
-0.356201171875,
0.285888671875,
-0.01354217529296875,
-0.09393310546875,
0.35693359375,
-0.2064208984375,
-0.28173828125,
-0.1448974609375,
-0.3466796875,
0.6494140625,
-0.5224609375,
-0.0299835205078125,
-0.2100830078125,
-0.82373046875,
0.69775390625,
-0.322509765625,
-0.34912109375,
0.425048828125,
-0.1416015625,
0.1856689453125,
0.53564453125,
-0.39208984375,
-0.28955078125,
1.12890625,
0.73486328125,
0.420166015625,
0.7138671875,
0.373779296875,
0.58203125,
-0.57080078125,
0.33935546875,
0.056121826171875,
-0.058319091796875,
-0.081298828125,
-0.7255859375,
-1.0478515625,
0.60498046875,
-0.313232421875,
-0.263671875,
0.5341796875,
-0.57568359375,
0.32080078125,
-0.51513671875,
1.021484375,
-0.368896484375,
0.296875,
0.338623046875,
-0.51025390625,
-0.67138671875,
0.67724609375,
-0.29296875,
0.31982421875,
0.09124755859375,
0.9052734375,
0.01163482666015625,
1.7177734375,
0.5849609375,
-0.12017822265625,
0.0161285400390625,
0.447509765625,
-0.26708984375,
-0.309326171875,
-0.71826171875,
-0.302978515625,
0.1353759765625,
-0.2259521484375,
-0.85986328125,
-0.047332763671875,
0.765625,
0.12054443359375,
-0.8623046875,
-0.26318359375,
0.3662109375,
-1.1357421875,
0.401123046875,
0.358154296875,
0.30859375,
0.173583984375,
-0.207763671875,
-0.1588134765625,
-0.60205078125,
0.4599609375,
-0.79296875,
0.312744140625,
-0.4912109375,
-0.386962890625,
-0.6337890625,
-0.65673828125,
-0.375244140625,
-0.0867919921875,
-0.50244140625,
-0.74169921875,
0.57763671875,
0.265625,
0.69384765625,
0.5400390625,
-0.295166015625,
0.26318359375,
0.728515625,
0.95751953125,
-0.2099609375,
1.12109375,
0.308349609375,
-0.10040283203125,
0.2001953125,
-0.30810546875,
0.310791015625,
-0.07269287109375,
0.353759765625,
-0.51513671875,
-0.24755859375,
-0.8125,
-1.111328125,
0.43701171875,
0.418212890625,
0.330322265625,
-0.736328125,
-1.1220703125,
-0.09033203125,
-1.2490234375,
-0.41162109375,
-0.69091796875,
0.736328125,
-0.732421875,
-0.039764404296875,
0.07879638671875,
-1.123046875,
4.3046875,
0.9677734375,
0.65673828125,
0.43408203125,
0.1241455078125,
0.7998046875,
0.46435546875,
-0.31689453125,
-0.37744140625,
-0.287841796875,
0.595703125,
-0.5146484375,
-0.042999267578125,
0.9619140625,
0.5205078125,
0.279296875,
-0.25,
0.03570556640625,
0.23291015625,
-0.84130859375,
-0.71435546875,
0.3232421875,
0.0745849609375,
0.5439453125,
0.3193359375,
0.30029296875,
0.81396484375,
-0.68896484375,
-0.21435546875,
-0.783203125,
0.0904541015625,
-0.38525390625,
0.9599609375,
0.2998046875,
-0.118896484375,
0.73876953125,
-0.08636474609375,
-0.46875,
0.044708251953125,
0.0843505859375,
-0.06463623046875,
0.1966552734375,
0.5634765625,
-0.71044921875,
-0.294189453125,
0.5263671875,
-0.56201171875,
0.63330078125,
0.355224609375,
-1.0732421875,
1.0537109375,
-0.1488037109375,
0.4609375,
-0.869140625,
-0.603515625,
0.2132568359375,
0.10675048828125,
0.09344482421875,
-0.368408203125,
0.60400390625,
0.63134765625,
0.6240234375,
0.0173797607421875,
0.498046875,
-0.90869140625,
0.5185546875,
-0.23828125,
0.5908203125,
-0.465087890625,
0.02301025390625,
-0.202392578125,
-0.298828125,
-0.296142578125,
-0.55224609375,
0.53759765625,
0.07586669921875,
-0.282470703125,
0.83984375,
0.302001953125,
-0.7373046875,
0.07708740234375,
-0.2626953125,
-0.07080078125,
-0.275634765625,
0.7841796875,
1.21875,
-0.432861328125,
0.1656494140625,
-0.23193359375,
0.51904296875,
0.548828125,
0.7333984375,
-0.157958984375,
-0.50927734375,
-0.345947265625
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
This is the hard version of the problem. The difference between the versions is the constraint on n and the required number of operations. You can make hacks only if all versions of the problem are solved.
There are two binary strings a and b of length n (a binary string is a string consisting of symbols 0 and 1). In an operation, you select a prefix of a, and simultaneously invert the bits in the prefix (0 changes to 1 and 1 changes to 0) and reverse the order of the bits in the prefix.
For example, if a=001011 and you select the prefix of length 3, it becomes 011011. Then if you select the entire string, it becomes 001001.
Your task is to transform the string a into b in at most 2n operations. It can be proved that it is always possible.
Input
The first line contains a single integer t (1≤ t≤ 1000) — the number of test cases. Next 3t lines contain descriptions of test cases.
The first line of each test case contains a single integer n (1≤ n≤ 10^5) — the length of the binary strings.
The next two lines contain two binary strings a and b of length n.
It is guaranteed that the sum of n across all test cases does not exceed 10^5.
Output
For each test case, output an integer k (0≤ k≤ 2n), followed by k integers p_1,…,p_k (1≤ p_i≤ n). Here k is the number of operations you use and p_i is the length of the prefix you flip in the i-th operation.
Example
Input
5
2
01
10
5
01011
11100
2
01
01
10
0110011011
1000110100
1
0
1
Output
3 1 2 1
6 5 2 5 3 1 2
0
9 4 1 2 10 4 1 2 1 5
1 1
Note
In the first test case, we have 01→ 11→ 00→ 10.
In the second test case, we have 01011→ 00101→ 11101→ 01000→ 10100→ 00100→ 11100.
In the third test case, the strings are already the same. Another solution is to flip the prefix of length 2, which will leave a unchanged.
Tags: constructive algorithms, data structures, implementation, strings, two pointers
Correct Solution:
```
def f(c):
if c=='1':
return '0'
else:
return '1'
for _ in range(int(input())):
n=int(input())
a=list(input())
b=list(input())
l=[]
i=n-1
j=n-1
am=True
while j>=0:
if am:
if a[i]!=b[j]:
if a[i-j]==b[j]:
l.append(1)
a[i-j]=f(a[i-j])
l.append(j+1)
am=False
i-=j
i+=1
else:
i-=1
else:
if a[i]==b[j]:
if a[i+j]!=b[j]:
l.append(1)
a[i+j]=f(a[i+j])
l.append(j+1)
am=True
i+=j
i-=1
else:
i+=1
j-=1
l1=[len(l)]+l
print(*l1)
```
| 10,129 | [
0.1339111328125,
-0.4228515625,
-0.0408935546875,
0.0889892578125,
-0.392822265625,
-0.75830078125,
-0.002056121826171875,
-0.2022705078125,
0.1534423828125,
1.0078125,
0.80615234375,
-0.27685546875,
0.370361328125,
-0.86767578125,
-0.57666015625,
0.360107421875,
-0.447021484375,
-0.62158203125,
-0.284912109375,
-0.5595703125,
-0.040802001953125,
-0.152099609375,
-1.3291015625,
-0.0791015625,
-0.583984375,
0.771484375,
0.35595703125,
-0.1048583984375,
1.0263671875,
1.10546875,
-0.370361328125,
-0.438232421875,
0.74853515625,
-0.9931640625,
-0.427001953125,
-0.45947265625,
0.623046875,
-0.82275390625,
-0.1705322265625,
-0.307373046875,
0.5654296875,
-0.233642578125,
0.2401123046875,
-0.93896484375,
-1.2744140625,
0.215087890625,
-0.337158203125,
-0.30859375,
-0.186767578125,
-0.474609375,
0.033782958984375,
-0.25,
0.595703125,
-0.10052490234375,
0.0261993408203125,
0.14111328125,
0.23681640625,
-0.568359375,
-0.47802734375,
0.207763671875,
0.1275634765625,
0.11151123046875,
0.161376953125,
-0.75830078125,
0.10467529296875,
0.179443359375,
-0.24365234375,
-0.41552734375,
-0.421875,
-1.029296875,
-0.279296875,
-0.027740478515625,
-0.76123046875,
-0.362060546875,
-0.11767578125,
0.256103515625,
0.2685546875,
-0.212158203125,
-0.89453125,
0.79052734375,
-0.261474609375,
0.89306640625,
0.031646728515625,
0.2373046875,
-0.480224609375,
-0.5302734375,
-0.04937744140625,
0.177001953125,
0.143310546875,
-0.1568603515625,
-0.396484375,
0.568359375,
-0.4814453125,
0.0537109375,
0.381103515625,
0.69921875,
-0.337158203125,
0.27587890625,
0.434814453125,
-0.0716552734375,
0.7939453125,
1.2646484375,
-0.2200927734375,
1.1435546875,
-0.55908203125,
-0.2138671875,
-0.021514892578125,
0.1363525390625,
-0.0650634765625,
-0.0439453125,
-0.01163482666015625,
-0.173583984375,
0.65380859375,
0.310791015625,
-0.412353515625,
0.72607421875,
-0.0296630859375,
0.418701171875,
-0.96923828125,
0.45751953125,
0.5810546875,
-0.03515625,
0.71923828125,
-0.2646484375,
-0.13818359375,
-0.2083740234375,
-0.308349609375,
1.1123046875,
-0.433837890625,
-0.372802734375,
0.286865234375,
-0.057464599609375,
-0.248779296875,
0.377197265625,
-0.060455322265625,
0.73779296875,
-0.23974609375,
0.401611328125,
0.73828125,
-0.484130859375,
0.80126953125,
-0.183837890625,
-0.158447265625,
1.7060546875,
0.48828125,
0.119384765625,
1.0166015625,
0.380126953125,
-0.284912109375,
0.453125,
-0.91748046875,
0.61376953125,
0.30908203125,
0.327392578125,
-0.181640625,
-0.121826171875,
-0.2783203125,
0.51416015625,
0.0946044921875,
0.239501953125,
0.0155029296875,
0.306884765625,
0.0258331298828125,
0.953125,
-0.1519775390625,
1.052734375,
-0.4091796875,
-0.342529296875,
-0.28955078125,
-0.658203125,
0.501953125,
-0.1546630859375,
-0.435791015625,
0.62353515625,
0.5498046875,
1.1513671875,
1.337890625,
-0.45263671875,
0.26025390625,
0.33544921875,
-0.72900390625,
0.042083740234375,
0.69091796875,
0.99755859375,
-0.15087890625,
0.2100830078125,
-0.10845947265625,
-0.402099609375,
-0.464111328125,
-0.740234375,
-0.1312255859375,
0.697265625,
-0.76318359375,
0.1331787109375,
0.325927734375,
0.293701171875,
-0.9013671875,
-0.131591796875,
-0.2900390625,
-0.732421875,
-0.31103515625,
0.50537109375,
-0.447021484375,
0.5146484375,
-0.74658203125,
-0.4599609375,
0.58984375,
1.0615234375,
-0.2479248046875,
0.37939453125,
0.374755859375,
0.187255859375,
-0.2451171875,
0.35986328125,
0.292236328125,
-0.217041015625,
-0.4140625,
1.1279296875,
0.30322265625,
-0.09539794921875,
0.08740234375,
0.673828125,
0.6318359375,
0.37255859375,
-0.2138671875,
0.0098876953125,
0.325927734375,
1.2353515625,
0.1802978515625,
0.79541015625,
-0.01248931884765625,
0.78125,
0.669921875,
0.66943359375,
0.494873046875,
0.0863037109375,
0.65576171875,
0.849609375,
0.1943359375,
0.4189453125,
0.39599609375,
0.462646484375,
0.39404296875,
0.4765625,
0.2548828125,
0.19189453125,
0.255615234375,
0.06494140625,
-0.4482421875,
0.2047119140625,
-0.431884765625,
0.8583984375,
-0.093505859375,
0.1473388671875,
-0.3759765625,
-0.460693359375,
0.1619873046875,
0.92578125,
-0.75634765625,
-0.1396484375,
0.1427001953125,
0.03216552734375,
0.146240234375,
-0.275634765625,
0.333740234375,
0.400146484375,
0.3984375,
0.55859375,
-0.405029296875,
-0.25537109375,
-1.1845703125,
-0.8759765625,
-0.8408203125,
-0.53759765625,
-0.8173828125,
0.0821533203125,
0.149658203125,
-0.6728515625,
0.329833984375,
-0.45263671875,
-0.260986328125,
0.271484375,
-0.75341796875,
0.6533203125,
-0.113525390625,
0.322998046875,
-1.3876953125,
0.81689453125,
0.33544921875,
1.16015625,
-0.73583984375,
0.08538818359375,
0.08880615234375,
-0.85205078125,
0.06689453125,
0.1119384765625,
0.2349853515625,
-0.0987548828125,
-0.76025390625,
-0.615234375,
-0.76416015625,
-0.18896484375,
-0.3642578125,
0.361572265625,
-0.53173828125,
0.904296875,
0.76904296875,
-0.58935546875,
0.80322265625,
0.873046875,
-0.630859375,
0.3984375,
0.415771484375,
0.1097412109375,
-0.83740234375,
1.62109375,
0.5400390625,
0.372314453125,
-0.399658203125,
-0.4521484375,
-0.2362060546875,
-0.1409912109375,
0.1947021484375,
-0.69775390625,
-0.52490234375,
0.55859375,
-0.146728515625,
-0.9892578125,
0.14208984375,
-0.900390625,
-0.6328125,
-0.2364501953125,
-0.7255859375,
1.32421875,
0.9853515625,
-0.118896484375,
-0.005771636962890625,
-0.147216796875,
-0.10333251953125,
0.63525390625,
0.483642578125,
-0.1207275390625,
0.0135650634765625,
0.80419921875,
0.281494140625,
0.06658935546875,
0.197265625,
-0.5830078125,
-0.03509521484375,
-0.068115234375,
0.37060546875,
0.5126953125,
0.1729736328125,
0.431640625,
0.2222900390625,
0.5078125,
-1.2138671875,
-0.17626953125,
-0.238037109375,
0.5439453125,
0.51806640625,
0.336181640625,
-0.01158905029296875,
-0.560546875,
-0.85693359375,
-1.033203125,
0.1510009765625,
0.08331298828125,
0.73974609375,
-0.8369140625,
0.7568359375,
0.151611328125,
-0.318603515625,
0.50927734375,
-0.6376953125,
-0.06512451171875,
0.95654296875,
-0.57666015625,
0.943359375,
-0.974609375,
0.34619140625,
0.00543975830078125,
0.0236663818359375,
0.373779296875,
0.466796875,
0.44189453125,
-0.5,
-0.4091796875,
-0.70556640625,
0.0499267578125,
-0.003108978271484375,
-0.353271484375,
0.07122802734375,
-0.294677734375,
-0.333740234375,
-0.8251953125,
0.406005859375,
0.8916015625,
0.87353515625,
-0.06866455078125,
0.445556640625,
0.416015625,
0.450927734375,
0.611328125,
-0.16845703125,
0.272705078125,
-0.97607421875,
0.63623046875,
0.2431640625,
-0.304931640625,
-0.68115234375,
-0.1422119140625,
-0.1953125,
-0.0107574462890625,
-0.1700439453125,
-0.3310546875,
-0.830078125,
0.39990234375,
-0.17431640625,
0.75439453125,
-0.368896484375,
-0.217041015625,
-0.66796875,
0.44580078125,
0.509765625,
-0.79052734375,
0.53955078125,
-0.93994140625,
0.62353515625,
0.501953125,
-0.301513671875,
-0.293701171875,
-0.7666015625,
-0.7041015625,
-0.5068359375,
0.31640625,
1.03515625,
-0.1729736328125,
0.496826171875,
-1.3056640625,
0.322509765625,
0.133056640625,
-0.73095703125,
-0.08795166015625,
-0.09234619140625,
0.49365234375,
0.1343994140625,
0.80517578125,
-0.151611328125,
-0.33740234375,
0.07025146484375,
-1.294921875,
0.5634765625,
-0.58251953125,
0.460693359375,
0.0799560546875,
-0.2486572265625,
0.025482177734375,
0.35302734375,
-0.178955078125,
0.054473876953125,
-0.306640625,
0.262939453125,
-0.9423828125,
-0.58837890625,
0.5869140625,
-0.209228515625,
-0.311279296875,
0.96630859375,
0.04742431640625,
-0.10498046875,
0.24853515625,
0.60595703125,
-0.462646484375,
0.40234375,
-0.26220703125,
0.92822265625,
-0.56884765625,
-0.6943359375,
-0.4482421875,
-0.336181640625,
0.77490234375,
-0.05963134765625,
-0.39990234375,
-0.2447509765625,
-1.130859375,
-0.0770263671875,
0.167724609375,
-0.40185546875,
0.231689453125,
0.08221435546875,
0.222412109375,
-0.32568359375,
-0.037353515625,
-0.457275390625,
-0.17822265625,
-0.54052734375,
-0.5390625,
0.6064453125,
0.35400390625,
0.5732421875,
0.09039306640625,
-0.5517578125,
-0.1156005859375,
0.443603515625,
-0.0982666015625,
-0.62109375,
-0.20654296875,
-0.375,
-0.1607666015625,
-0.46435546875,
0.05682373046875,
-0.09552001953125,
0.340087890625,
0.93994140625,
-0.0008096694946289062,
0.388427734375,
0.36328125,
-0.76513671875,
0.87109375,
0.3310546875,
-0.71044921875,
-0.411865234375,
0.296875,
-0.073486328125,
0.62451171875,
0.546875,
-0.76806640625,
-0.60009765625,
-0.8115234375,
0.23291015625,
-0.8359375,
-0.1370849609375,
-0.96044921875,
-0.5732421875,
-0.338623046875,
0.5791015625,
-0.0850830078125,
-0.7392578125,
0.061126708984375,
-0.86376953125,
-0.08209228515625,
-0.8740234375,
-0.26904296875,
-0.7978515625,
-0.68212890625,
-0.25,
0.92724609375,
0.08660888671875,
0.0139923095703125,
0.23046875,
-0.0911865234375,
0.13525390625,
0.296142578125,
-0.8037109375,
-0.1702880859375,
-0.0136260986328125,
0.031402587890625,
-0.17431640625,
0.0399169921875,
-0.80322265625,
0.58349609375,
-0.86962890625,
0.2081298828125,
-0.275146484375,
-0.0025787353515625,
-0.377685546875,
-0.2010498046875,
0.97216796875,
-0.36962890625,
0.365966796875,
-0.3603515625,
0.405517578125,
0.82080078125,
-0.67041015625,
-0.398193359375,
-1.0283203125,
-0.8583984375,
-1.447265625,
0.7333984375,
-0.447998046875,
0.10565185546875,
-0.70458984375,
-0.560546875,
0.966796875,
-0.6962890625,
0.317626953125,
1.1591796875,
0.0223846435546875,
0.387939453125,
-0.275634765625,
0.67822265625,
0.261474609375,
-0.6484375,
0.25537109375,
0.41015625,
-0.5947265625,
-0.09002685546875,
-0.392578125,
-1.025390625,
-0.436767578125,
0.425048828125,
1.12109375,
0.01849365234375,
0.307861328125,
-0.41162109375,
-1.0478515625,
-0.515625,
0.6396484375,
0.328369140625,
0.410888671875,
0.99853515625,
0.145263671875,
-0.0643310546875,
0.1146240234375,
-0.478271484375,
-0.265869140625,
-0.39697265625,
1.205078125,
-0.1947021484375,
-0.5986328125,
0.78759765625,
0.8642578125,
-0.96923828125,
-1.0185546875,
-0.084716796875,
-0.1778564453125,
-0.09759521484375,
-0.7626953125,
-0.057952880859375,
0.556640625,
-0.421875,
0.08612060546875,
0.28173828125,
-0.1378173828125,
0.23095703125,
0.1541748046875,
0.280029296875,
-0.08453369140625,
0.384033203125,
0.99951171875,
-0.28955078125,
-0.62939453125,
-0.93310546875,
-0.490966796875,
-0.410400390625,
0.1317138671875,
0.6474609375,
-0.335205078125,
0.172607421875,
0.434326171875,
0.004840850830078125,
0.97607421875,
-0.258056640625,
-0.440673828125,
0.380126953125,
-0.82080078125,
-0.6123046875,
0.1419677734375,
0.09149169921875,
-0.434326171875,
0.6865234375,
-0.61181640625,
0.035125732421875,
0.20166015625,
0.09442138671875,
-0.390625,
-1.0654296875,
-0.147705078125,
-1.2783203125,
-0.38525390625,
-0.53173828125,
-0.93798828125,
-0.15625,
0.050506591796875,
0.1497802734375,
-0.72802734375,
0.03277587890625,
0.422607421875,
-0.256591796875,
0.91259765625,
-0.6484375,
0.1156005859375,
-0.466064453125,
-0.47998046875,
-0.5625,
0.0283203125,
-0.4189453125,
0.014862060546875,
-0.9189453125,
0.1317138671875,
0.00994873046875,
0.482666015625,
-0.275146484375,
0.576171875,
-0.5263671875,
-1.19921875,
0.1561279296875,
-0.06695556640625,
0.0732421875,
0.75048828125,
0.375,
-0.0712890625,
0.4892578125,
-0.0643310546875,
-0.267822265625,
-0.402587890625,
0.53369140625,
0.55224609375,
-0.261962890625,
-0.1966552734375,
-0.1859130859375,
0.2479248046875,
-1.1875,
0.5498046875,
-0.62939453125,
0.2169189453125,
0.29443359375,
-0.4990234375,
0.421142578125,
1.1181640625,
-0.5087890625,
0.198486328125,
-0.0931396484375,
0.1328125,
0.1357421875,
0.316650390625,
-0.16357421875,
0.76904296875,
-0.1824951171875,
-0.52685546875,
0.028472900390625,
0.2442626953125,
-0.2420654296875,
0.414306640625,
-0.1395263671875,
-1.0341796875,
-0.8896484375,
-0.155517578125,
0.006328582763671875,
0.2015380859375,
0.05731201171875,
-0.2357177734375,
-0.040252685546875,
0.1424560546875,
-0.85986328125,
0.2578125,
-0.947265625,
-0.8701171875,
0.5390625,
-0.1873779296875,
-0.22265625,
0.09271240234375,
-0.31005859375,
-0.39013671875,
0.187744140625,
0.556640625,
-0.67626953125,
0.495849609375,
-0.189453125,
0.64208984375,
-0.4306640625,
-0.212158203125,
0.081787109375,
0.662109375,
-0.78271484375,
-0.53271484375,
-0.27783203125,
0.94140625,
0.2435302734375,
-0.382080078125,
-0.64794921875,
0.06982421875,
0.1939697265625,
0.312744140625,
-0.5986328125,
0.17578125,
-0.2578125,
0.68408203125,
-1.2177734375,
0.043548583984375,
0.026397705078125,
0.2314453125,
0.10650634765625,
-0.361572265625,
-0.69189453125,
1.15625,
0.33203125,
-0.066650390625,
0.625,
0.0224761962890625,
0.31494140625,
-0.056182861328125,
-0.0020351409912109375,
-0.0440673828125,
0.75341796875,
0.63330078125,
0.603515625,
-0.197998046875,
0.193359375,
0.72265625,
0.1707763671875,
-0.34765625,
0.30517578125,
-0.0033111572265625,
-0.08441162109375,
0.323974609375,
-0.2200927734375,
-0.268798828125,
-0.1898193359375,
-0.385009765625,
0.66357421875,
-0.5048828125,
0.0015649795532226562,
-0.2291259765625,
-0.87451171875,
0.732421875,
-0.296142578125,
-0.404541015625,
0.44091796875,
-0.1383056640625,
0.193115234375,
0.5859375,
-0.419677734375,
-0.3095703125,
1.1298828125,
0.78466796875,
0.4326171875,
0.7841796875,
0.354736328125,
0.55712890625,
-0.5185546875,
0.364990234375,
0.081298828125,
-0.06817626953125,
-0.10723876953125,
-0.78173828125,
-1.033203125,
0.52587890625,
-0.33056640625,
-0.26025390625,
0.533203125,
-0.5244140625,
0.313232421875,
-0.54052734375,
0.98974609375,
-0.392578125,
0.351806640625,
0.357177734375,
-0.493408203125,
-0.67333984375,
0.6865234375,
-0.331298828125,
0.33251953125,
0.043914794921875,
0.96435546875,
-0.01448822021484375,
1.7060546875,
0.54296875,
-0.10107421875,
0.03411865234375,
0.468505859375,
-0.2900390625,
-0.350830078125,
-0.689453125,
-0.30615234375,
0.1607666015625,
-0.26904296875,
-0.83935546875,
-0.0311431884765625,
0.7685546875,
0.126220703125,
-0.880859375,
-0.28271484375,
0.38623046875,
-1.16796875,
0.426513671875,
0.366943359375,
0.228515625,
0.1790771484375,
-0.189208984375,
-0.1727294921875,
-0.56494140625,
0.45361328125,
-0.78076171875,
0.32373046875,
-0.52294921875,
-0.349853515625,
-0.68115234375,
-0.673828125,
-0.384765625,
-0.114501953125,
-0.564453125,
-0.77880859375,
0.57275390625,
0.29638671875,
0.72265625,
0.552734375,
-0.303955078125,
0.2470703125,
0.76953125,
1.0107421875,
-0.14599609375,
1.09765625,
0.365966796875,
-0.095458984375,
0.2357177734375,
-0.349853515625,
0.322265625,
-0.07000732421875,
0.319580078125,
-0.51513671875,
-0.1923828125,
-0.77197265625,
-1.173828125,
0.442626953125,
0.442138671875,
0.3603515625,
-0.712890625,
-1.10546875,
-0.060699462890625,
-1.2275390625,
-0.43359375,
-0.65771484375,
0.740234375,
-0.74169921875,
-0.034149169921875,
0.0645751953125,
-1.1728515625,
4.296875,
0.97607421875,
0.666015625,
0.50244140625,
0.1361083984375,
0.76513671875,
0.46435546875,
-0.318115234375,
-0.406494140625,
-0.304931640625,
0.59619140625,
-0.5244140625,
-0.063720703125,
0.97412109375,
0.49267578125,
0.29833984375,
-0.263916015625,
0.0205535888671875,
0.185791015625,
-0.8369140625,
-0.71533203125,
0.339599609375,
0.09466552734375,
0.5546875,
0.3134765625,
0.2919921875,
0.80615234375,
-0.6552734375,
-0.2218017578125,
-0.79052734375,
0.07843017578125,
-0.4091796875,
1.0048828125,
0.292724609375,
-0.089111328125,
0.73486328125,
-0.07122802734375,
-0.421875,
0.010345458984375,
0.0997314453125,
-0.03680419921875,
0.1988525390625,
0.548828125,
-0.66064453125,
-0.2457275390625,
0.52978515625,
-0.59765625,
0.63134765625,
0.390869140625,
-1.037109375,
1.00390625,
-0.1387939453125,
0.46484375,
-0.84814453125,
-0.61376953125,
0.2288818359375,
0.0865478515625,
0.0704345703125,
-0.3544921875,
0.58935546875,
0.6142578125,
0.62841796875,
0.0518798828125,
0.49365234375,
-0.92529296875,
0.5498046875,
-0.158447265625,
0.63720703125,
-0.42724609375,
-0.00234222412109375,
-0.2313232421875,
-0.27490234375,
-0.30078125,
-0.56787109375,
0.485107421875,
0.08782958984375,
-0.251220703125,
0.84033203125,
0.32421875,
-0.7880859375,
0.0869140625,
-0.30078125,
-0.09747314453125,
-0.330810546875,
0.8046875,
1.2060546875,
-0.410888671875,
0.18994140625,
-0.225830078125,
0.52392578125,
0.6044921875,
0.75634765625,
-0.146484375,
-0.4912109375,
-0.249755859375
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
This is the hard version of the problem. The difference between the versions is the constraint on n and the required number of operations. You can make hacks only if all versions of the problem are solved.
There are two binary strings a and b of length n (a binary string is a string consisting of symbols 0 and 1). In an operation, you select a prefix of a, and simultaneously invert the bits in the prefix (0 changes to 1 and 1 changes to 0) and reverse the order of the bits in the prefix.
For example, if a=001011 and you select the prefix of length 3, it becomes 011011. Then if you select the entire string, it becomes 001001.
Your task is to transform the string a into b in at most 2n operations. It can be proved that it is always possible.
Input
The first line contains a single integer t (1≤ t≤ 1000) — the number of test cases. Next 3t lines contain descriptions of test cases.
The first line of each test case contains a single integer n (1≤ n≤ 10^5) — the length of the binary strings.
The next two lines contain two binary strings a and b of length n.
It is guaranteed that the sum of n across all test cases does not exceed 10^5.
Output
For each test case, output an integer k (0≤ k≤ 2n), followed by k integers p_1,…,p_k (1≤ p_i≤ n). Here k is the number of operations you use and p_i is the length of the prefix you flip in the i-th operation.
Example
Input
5
2
01
10
5
01011
11100
2
01
01
10
0110011011
1000110100
1
0
1
Output
3 1 2 1
6 5 2 5 3 1 2
0
9 4 1 2 10 4 1 2 1 5
1 1
Note
In the first test case, we have 01→ 11→ 00→ 10.
In the second test case, we have 01011→ 00101→ 11101→ 01000→ 10100→ 00100→ 11100.
In the third test case, the strings are already the same. Another solution is to flip the prefix of length 2, which will leave a unchanged.
Tags: constructive algorithms, data structures, implementation, strings, two pointers
Correct Solution:
```
import sys
t=int(input())
for _ in range(t):
n=int(input())
tempa=input()
tempb=input()
a=[]
for i in tempa:
a.append(int(i))
b=[]
for i in tempb:
b.append(int(i))
count=0
anslist=[]
start=1
rev=0
for i in range(n-1,-1,-1):
if(rev==0):
pos=start+i
else:
pos=start-i
curr=a[pos-1]
if(rev==1):
curr=curr^1
if(curr!=b[i]):
first=a[start-1]
if(rev==1):
first=first^1
if(first!=b[i]):
anslist.append(i+1)
count+=1
else:
anslist.append(1)
anslist.append(i+1)
count+=2
rev=rev^1
start=pos
print(count,end=" ")
for i in anslist:
sys.stdout.write(str(i)+" ")
print()
```
| 10,130 | [
0.1689453125,
-0.4033203125,
-0.0011444091796875,
0.0928955078125,
-0.41259765625,
-0.751953125,
-0.03973388671875,
-0.220458984375,
0.165771484375,
1.0087890625,
0.7314453125,
-0.28564453125,
0.330810546875,
-0.86767578125,
-0.5859375,
0.318359375,
-0.316650390625,
-0.57861328125,
-0.34912109375,
-0.54638671875,
-0.0034027099609375,
-0.1279296875,
-1.3818359375,
-0.07781982421875,
-0.62890625,
0.80224609375,
0.273193359375,
-0.1199951171875,
1.00390625,
1.0810546875,
-0.426513671875,
-0.44287109375,
0.7255859375,
-1.0166015625,
-0.446044921875,
-0.470703125,
0.5908203125,
-0.818359375,
-0.1336669921875,
-0.291748046875,
0.55029296875,
-0.2283935546875,
0.2464599609375,
-0.92529296875,
-1.275390625,
0.1636962890625,
-0.31689453125,
-0.325927734375,
-0.14599609375,
-0.46044921875,
0.0689697265625,
-0.1920166015625,
0.59033203125,
-0.116455078125,
0.017791748046875,
0.1815185546875,
0.1982421875,
-0.53662109375,
-0.443115234375,
0.1510009765625,
0.0723876953125,
0.1712646484375,
0.1851806640625,
-0.7099609375,
0.1270751953125,
0.1884765625,
-0.240966796875,
-0.432373046875,
-0.383544921875,
-0.9658203125,
-0.346435546875,
-0.047576904296875,
-0.67626953125,
-0.33935546875,
-0.07818603515625,
0.29296875,
0.2459716796875,
-0.1578369140625,
-0.85693359375,
0.70263671875,
-0.299560546875,
0.95263671875,
0.1119384765625,
0.2237548828125,
-0.46533203125,
-0.5361328125,
-0.01207733154296875,
0.2017822265625,
0.174072265625,
-0.1197509765625,
-0.357666015625,
0.572265625,
-0.4677734375,
0.0667724609375,
0.398193359375,
0.71923828125,
-0.325439453125,
0.24609375,
0.42236328125,
-0.0232696533203125,
0.7490234375,
1.2119140625,
-0.193603515625,
1.224609375,
-0.60791015625,
-0.1873779296875,
0.01209259033203125,
0.1290283203125,
-0.0482177734375,
-0.01100921630859375,
0.00531768798828125,
-0.154052734375,
0.720703125,
0.403564453125,
-0.40673828125,
0.80859375,
-0.034576416015625,
0.424560546875,
-1.015625,
0.488037109375,
0.63916015625,
-0.0701904296875,
0.74365234375,
-0.250732421875,
-0.2059326171875,
-0.2464599609375,
-0.29736328125,
1.1396484375,
-0.40185546875,
-0.430419921875,
0.256591796875,
-0.0101470947265625,
-0.299072265625,
0.355224609375,
-0.0284881591796875,
0.74072265625,
-0.2392578125,
0.40087890625,
0.71484375,
-0.466064453125,
0.7568359375,
-0.179931640625,
-0.14306640625,
1.7314453125,
0.51806640625,
0.10498046875,
1.0341796875,
0.45068359375,
-0.33447265625,
0.469970703125,
-0.90771484375,
0.6015625,
0.23486328125,
0.34130859375,
-0.10906982421875,
-0.1341552734375,
-0.2578125,
0.52587890625,
0.06109619140625,
0.2020263671875,
-0.0908203125,
0.2548828125,
0.092529296875,
0.95361328125,
-0.1005859375,
1.1103515625,
-0.365966796875,
-0.3642578125,
-0.27490234375,
-0.62548828125,
0.5361328125,
-0.2470703125,
-0.4443359375,
0.59521484375,
0.53466796875,
1.154296875,
1.357421875,
-0.467529296875,
0.2445068359375,
0.36181640625,
-0.79931640625,
-0.01110076904296875,
0.712890625,
0.94189453125,
-0.09014892578125,
0.2191162109375,
-0.043731689453125,
-0.417236328125,
-0.50146484375,
-0.75244140625,
-0.10662841796875,
0.7265625,
-0.7294921875,
0.178466796875,
0.324951171875,
0.26904296875,
-0.908203125,
-0.1348876953125,
-0.2626953125,
-0.67724609375,
-0.327880859375,
0.498046875,
-0.45458984375,
0.493408203125,
-0.77880859375,
-0.4482421875,
0.5673828125,
1.1123046875,
-0.203125,
0.389892578125,
0.4130859375,
0.1319580078125,
-0.27294921875,
0.37548828125,
0.276611328125,
-0.2052001953125,
-0.433349609375,
1.10546875,
0.306396484375,
-0.0748291015625,
0.084228515625,
0.69140625,
0.60791015625,
0.3779296875,
-0.210205078125,
0.07080078125,
0.31494140625,
1.1806640625,
0.174072265625,
0.79345703125,
0.0289764404296875,
0.76953125,
0.65966796875,
0.69580078125,
0.53173828125,
0.096923828125,
0.63232421875,
0.8466796875,
0.1241455078125,
0.419189453125,
0.393798828125,
0.44091796875,
0.2880859375,
0.533203125,
0.2142333984375,
0.21728515625,
0.27490234375,
0.047882080078125,
-0.48193359375,
0.12249755859375,
-0.426025390625,
0.8369140625,
-0.12646484375,
0.156005859375,
-0.357421875,
-0.482666015625,
0.1549072265625,
0.8857421875,
-0.7666015625,
-0.200927734375,
0.11944580078125,
0.09033203125,
0.1502685546875,
-0.263671875,
0.3232421875,
0.336669921875,
0.396240234375,
0.47802734375,
-0.401123046875,
-0.1961669921875,
-1.1708984375,
-0.85205078125,
-0.85693359375,
-0.51318359375,
-0.81982421875,
0.039031982421875,
0.1478271484375,
-0.71337890625,
0.3486328125,
-0.5908203125,
-0.26806640625,
0.2420654296875,
-0.63427734375,
0.65380859375,
-0.179443359375,
0.26611328125,
-1.3779296875,
0.8046875,
0.29931640625,
1.1767578125,
-0.77197265625,
0.05596923828125,
0.124267578125,
-0.806640625,
0.039459228515625,
0.07061767578125,
0.2099609375,
-0.03936767578125,
-0.71630859375,
-0.669921875,
-0.7568359375,
-0.24951171875,
-0.30810546875,
0.3662109375,
-0.54345703125,
0.873046875,
0.76123046875,
-0.59521484375,
0.75634765625,
0.892578125,
-0.6201171875,
0.356201171875,
0.42138671875,
0.11181640625,
-0.80078125,
1.62109375,
0.47900390625,
0.35107421875,
-0.432373046875,
-0.444580078125,
-0.2218017578125,
-0.091552734375,
0.2138671875,
-0.65966796875,
-0.52685546875,
0.5390625,
-0.1014404296875,
-0.96142578125,
0.1578369140625,
-0.9326171875,
-0.5400390625,
-0.200439453125,
-0.716796875,
1.361328125,
0.9677734375,
-0.042877197265625,
-0.06365966796875,
-0.15576171875,
-0.11895751953125,
0.578125,
0.485595703125,
-0.0687255859375,
-0.03314208984375,
0.8349609375,
0.328369140625,
0.06060791015625,
0.225341796875,
-0.57763671875,
-0.0223236083984375,
-0.10205078125,
0.3623046875,
0.4443359375,
0.1746826171875,
0.427734375,
0.3154296875,
0.50634765625,
-1.216796875,
-0.2445068359375,
-0.268310546875,
0.5087890625,
0.55908203125,
0.304443359375,
0.01247406005859375,
-0.48193359375,
-0.79248046875,
-1.041015625,
0.1522216796875,
0.0833740234375,
0.830078125,
-0.83251953125,
0.76025390625,
0.1251220703125,
-0.37060546875,
0.52734375,
-0.65185546875,
-0.034881591796875,
0.931640625,
-0.59765625,
0.88818359375,
-0.96826171875,
0.2666015625,
0.046356201171875,
0.0256805419921875,
0.364501953125,
0.445556640625,
0.472900390625,
-0.45654296875,
-0.426513671875,
-0.67529296875,
0.031341552734375,
0.0016689300537109375,
-0.343994140625,
0.12054443359375,
-0.244873046875,
-0.37841796875,
-0.87548828125,
0.306396484375,
0.9072265625,
0.880859375,
-0.043853759765625,
0.5087890625,
0.360595703125,
0.499755859375,
0.71240234375,
-0.09014892578125,
0.229248046875,
-0.92919921875,
0.65576171875,
0.2354736328125,
-0.302490234375,
-0.69921875,
-0.205810546875,
-0.1290283203125,
0.03521728515625,
-0.2105712890625,
-0.30908203125,
-0.85693359375,
0.324951171875,
-0.2064208984375,
0.76123046875,
-0.424560546875,
-0.260009765625,
-0.78173828125,
0.415283203125,
0.5234375,
-0.76318359375,
0.472900390625,
-0.9267578125,
0.6279296875,
0.48583984375,
-0.309814453125,
-0.30126953125,
-0.77294921875,
-0.7158203125,
-0.52490234375,
0.332763671875,
1.06640625,
-0.141845703125,
0.5087890625,
-1.3505859375,
0.335693359375,
0.160400390625,
-0.6962890625,
-0.1187744140625,
-0.0638427734375,
0.496337890625,
0.1922607421875,
0.73828125,
-0.09771728515625,
-0.292724609375,
0.03704833984375,
-1.333984375,
0.61376953125,
-0.6142578125,
0.52294921875,
0.1065673828125,
-0.2427978515625,
0.03717041015625,
0.390380859375,
-0.1480712890625,
0.08770751953125,
-0.306884765625,
0.287109375,
-1.0166015625,
-0.611328125,
0.63330078125,
-0.2366943359375,
-0.293212890625,
1.046875,
0.1041259765625,
-0.08746337890625,
0.283203125,
0.5400390625,
-0.470947265625,
0.431640625,
-0.32568359375,
0.86279296875,
-0.53759765625,
-0.6845703125,
-0.5146484375,
-0.30126953125,
0.7724609375,
-0.09747314453125,
-0.443359375,
-0.22802734375,
-1.1396484375,
-0.116943359375,
0.1790771484375,
-0.36572265625,
0.230712890625,
0.10601806640625,
0.1815185546875,
-0.262939453125,
0.00530242919921875,
-0.45458984375,
-0.1412353515625,
-0.5341796875,
-0.5849609375,
0.56005859375,
0.3671875,
0.55224609375,
0.080810546875,
-0.607421875,
-0.1630859375,
0.415771484375,
-0.15771484375,
-0.6064453125,
-0.249267578125,
-0.384033203125,
-0.1556396484375,
-0.5048828125,
0.041046142578125,
-0.11822509765625,
0.35498046875,
0.9658203125,
0.03436279296875,
0.35546875,
0.348388671875,
-0.7734375,
0.892578125,
0.361083984375,
-0.7001953125,
-0.316650390625,
0.224853515625,
-0.07470703125,
0.64892578125,
0.57080078125,
-0.80322265625,
-0.548828125,
-0.8046875,
0.245849609375,
-0.8134765625,
-0.168212890625,
-0.9326171875,
-0.5771484375,
-0.414794921875,
0.60107421875,
-0.0660400390625,
-0.6650390625,
0.001964569091796875,
-0.89013671875,
-0.08599853515625,
-0.88134765625,
-0.2000732421875,
-0.80078125,
-0.72705078125,
-0.2371826171875,
0.9033203125,
0.07391357421875,
0.0016384124755859375,
0.248291015625,
-0.0909423828125,
0.129150390625,
0.31884765625,
-0.720703125,
-0.1988525390625,
0.01568603515625,
0.10302734375,
-0.1448974609375,
0.04046630859375,
-0.82666015625,
0.56298828125,
-0.84912109375,
0.2161865234375,
-0.2259521484375,
0.021484375,
-0.294189453125,
-0.1795654296875,
0.970703125,
-0.350341796875,
0.35302734375,
-0.294677734375,
0.342529296875,
0.77734375,
-0.64697265625,
-0.447509765625,
-0.95849609375,
-0.82666015625,
-1.3740234375,
0.6552734375,
-0.4716796875,
0.1480712890625,
-0.65673828125,
-0.52294921875,
0.97021484375,
-0.7275390625,
0.35107421875,
1.1962890625,
-0.004344940185546875,
0.37744140625,
-0.285400390625,
0.66650390625,
0.2269287109375,
-0.6513671875,
0.2032470703125,
0.4228515625,
-0.65576171875,
-0.156494140625,
-0.431396484375,
-1.0224609375,
-0.430908203125,
0.376708984375,
1.126953125,
0.00249481201171875,
0.29248046875,
-0.439697265625,
-1.02734375,
-0.50439453125,
0.7333984375,
0.30419921875,
0.426025390625,
0.9697265625,
0.1396484375,
-0.1171875,
0.045562744140625,
-0.51513671875,
-0.291748046875,
-0.3857421875,
1.193359375,
-0.1920166015625,
-0.64306640625,
0.82177734375,
0.87890625,
-0.93798828125,
-1.0498046875,
-0.11468505859375,
-0.10064697265625,
-0.03594970703125,
-0.79248046875,
-0.0253143310546875,
0.53662109375,
-0.4267578125,
-0.01467132568359375,
0.2437744140625,
-0.1416015625,
0.220947265625,
0.2069091796875,
0.279052734375,
-0.12274169921875,
0.3984375,
0.93896484375,
-0.29345703125,
-0.5556640625,
-0.96240234375,
-0.53515625,
-0.47607421875,
0.11053466796875,
0.68017578125,
-0.366943359375,
0.1988525390625,
0.3935546875,
0.01812744140625,
1.072265625,
-0.313720703125,
-0.432861328125,
0.39404296875,
-0.8427734375,
-0.64453125,
0.125244140625,
0.06982421875,
-0.490478515625,
0.68408203125,
-0.66552734375,
0.036590576171875,
0.2398681640625,
0.04180908203125,
-0.43212890625,
-1.0546875,
-0.179443359375,
-1.29296875,
-0.366455078125,
-0.53076171875,
-0.8994140625,
-0.1995849609375,
0.037384033203125,
0.185546875,
-0.72216796875,
0.039825439453125,
0.443115234375,
-0.200927734375,
0.91455078125,
-0.66455078125,
0.10870361328125,
-0.4560546875,
-0.476318359375,
-0.64501953125,
0.03955078125,
-0.44580078125,
-0.0214996337890625,
-0.8583984375,
0.090576171875,
-0.04833984375,
0.47314453125,
-0.16796875,
0.595703125,
-0.5654296875,
-1.134765625,
0.201171875,
0.0006952285766601562,
-0.0305328369140625,
0.78857421875,
0.410400390625,
-0.10174560546875,
0.521484375,
-0.048614501953125,
-0.2509765625,
-0.42041015625,
0.5517578125,
0.5625,
-0.2135009765625,
-0.214599609375,
-0.2052001953125,
0.237548828125,
-1.20703125,
0.5126953125,
-0.5751953125,
0.20166015625,
0.330078125,
-0.52685546875,
0.4814453125,
1.0869140625,
-0.449951171875,
0.2265625,
-0.06646728515625,
0.1180419921875,
0.141845703125,
0.298583984375,
-0.185546875,
0.78125,
-0.2335205078125,
-0.5068359375,
0.0257110595703125,
0.30615234375,
-0.2235107421875,
0.454833984375,
-0.1390380859375,
-1.044921875,
-0.890625,
-0.125732421875,
0.0699462890625,
0.2103271484375,
0.055877685546875,
-0.2281494140625,
-0.044830322265625,
0.09564208984375,
-0.857421875,
0.261962890625,
-0.89599609375,
-0.89306640625,
0.494140625,
-0.1959228515625,
-0.274169921875,
0.12371826171875,
-0.31298828125,
-0.309326171875,
0.129638671875,
0.51171875,
-0.64599609375,
0.46044921875,
-0.1822509765625,
0.60595703125,
-0.462890625,
-0.2227783203125,
0.10882568359375,
0.6201171875,
-0.73828125,
-0.52978515625,
-0.2939453125,
0.90869140625,
0.17138671875,
-0.428955078125,
-0.6708984375,
0.097412109375,
0.231689453125,
0.29931640625,
-0.60693359375,
0.1959228515625,
-0.2200927734375,
0.64892578125,
-1.2548828125,
0.0440673828125,
0.057708740234375,
0.2080078125,
0.13330078125,
-0.354736328125,
-0.73291015625,
1.1201171875,
0.415771484375,
-0.0311737060546875,
0.6318359375,
0.01045989990234375,
0.39306640625,
0.04229736328125,
-0.022186279296875,
-0.07598876953125,
0.73486328125,
0.6328125,
0.626953125,
-0.199462890625,
0.203857421875,
0.7578125,
0.20166015625,
-0.375732421875,
0.298583984375,
0.00730133056640625,
-0.1005859375,
0.401611328125,
-0.2491455078125,
-0.28564453125,
-0.197021484375,
-0.33203125,
0.669921875,
-0.52880859375,
-0.04888916015625,
-0.239501953125,
-0.86376953125,
0.68115234375,
-0.282470703125,
-0.36376953125,
0.4755859375,
-0.14306640625,
0.2027587890625,
0.5361328125,
-0.40869140625,
-0.312255859375,
1.1328125,
0.73779296875,
0.43603515625,
0.70751953125,
0.3876953125,
0.58447265625,
-0.59521484375,
0.360595703125,
0.062103271484375,
-0.075927734375,
-0.09423828125,
-0.6826171875,
-1.0185546875,
0.56982421875,
-0.324462890625,
-0.238037109375,
0.55419921875,
-0.6171875,
0.351318359375,
-0.49560546875,
1.02734375,
-0.3447265625,
0.30029296875,
0.346923828125,
-0.4970703125,
-0.66357421875,
0.654296875,
-0.285400390625,
0.326904296875,
0.102294921875,
0.8974609375,
0.0264892578125,
1.7275390625,
0.5859375,
-0.100830078125,
0.003025054931640625,
0.44677734375,
-0.306396484375,
-0.313232421875,
-0.69677734375,
-0.3037109375,
0.177001953125,
-0.2061767578125,
-0.8134765625,
-0.0096893310546875,
0.76904296875,
0.1549072265625,
-0.8173828125,
-0.261474609375,
0.34326171875,
-1.1201171875,
0.40380859375,
0.39404296875,
0.31689453125,
0.1221923828125,
-0.2120361328125,
-0.1943359375,
-0.62158203125,
0.492919921875,
-0.7568359375,
0.3369140625,
-0.46435546875,
-0.380859375,
-0.62109375,
-0.65771484375,
-0.4287109375,
-0.07928466796875,
-0.49267578125,
-0.72119140625,
0.6015625,
0.260009765625,
0.7041015625,
0.5537109375,
-0.25927734375,
0.2607421875,
0.7255859375,
0.970703125,
-0.1881103515625,
1.1279296875,
0.235595703125,
-0.1324462890625,
0.235107421875,
-0.33837890625,
0.28564453125,
-0.0853271484375,
0.33349609375,
-0.51025390625,
-0.27685546875,
-0.7958984375,
-1.1279296875,
0.3818359375,
0.431640625,
0.341064453125,
-0.75244140625,
-1.1005859375,
-0.09320068359375,
-1.2509765625,
-0.443115234375,
-0.7255859375,
0.75927734375,
-0.7275390625,
-0.00833892822265625,
0.0880126953125,
-1.1005859375,
4.30859375,
0.958984375,
0.68798828125,
0.406494140625,
0.1077880859375,
0.81298828125,
0.448486328125,
-0.291015625,
-0.388427734375,
-0.317626953125,
0.6064453125,
-0.50390625,
-0.0838623046875,
0.97802734375,
0.5068359375,
0.28076171875,
-0.30322265625,
0.027801513671875,
0.239501953125,
-0.8544921875,
-0.71142578125,
0.308349609375,
0.0457763671875,
0.5546875,
0.312744140625,
0.294677734375,
0.833984375,
-0.69482421875,
-0.170166015625,
-0.791015625,
0.09844970703125,
-0.37646484375,
0.92431640625,
0.26513671875,
-0.10504150390625,
0.71630859375,
-0.06719970703125,
-0.460693359375,
0.0153961181640625,
0.06939697265625,
-0.05767822265625,
0.1986083984375,
0.57080078125,
-0.70947265625,
-0.290283203125,
0.55029296875,
-0.5205078125,
0.6142578125,
0.40234375,
-1.03125,
1.119140625,
-0.1649169921875,
0.451416015625,
-0.8974609375,
-0.595703125,
0.2139892578125,
0.08111572265625,
0.0732421875,
-0.34326171875,
0.6181640625,
0.62109375,
0.6240234375,
0.006298065185546875,
0.51904296875,
-0.876953125,
0.5126953125,
-0.25341796875,
0.591796875,
-0.45458984375,
-0.0226898193359375,
-0.1793212890625,
-0.30908203125,
-0.32763671875,
-0.56591796875,
0.5244140625,
0.041473388671875,
-0.2322998046875,
0.865234375,
0.35595703125,
-0.73291015625,
0.0550537109375,
-0.24169921875,
-0.09271240234375,
-0.32470703125,
0.78955078125,
1.193359375,
-0.423095703125,
0.135986328125,
-0.26513671875,
0.465087890625,
0.5537109375,
0.74755859375,
-0.14892578125,
-0.497802734375,
-0.3505859375
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
This is the hard version of the problem. The difference between the versions is the constraint on n and the required number of operations. You can make hacks only if all versions of the problem are solved.
There are two binary strings a and b of length n (a binary string is a string consisting of symbols 0 and 1). In an operation, you select a prefix of a, and simultaneously invert the bits in the prefix (0 changes to 1 and 1 changes to 0) and reverse the order of the bits in the prefix.
For example, if a=001011 and you select the prefix of length 3, it becomes 011011. Then if you select the entire string, it becomes 001001.
Your task is to transform the string a into b in at most 2n operations. It can be proved that it is always possible.
Input
The first line contains a single integer t (1≤ t≤ 1000) — the number of test cases. Next 3t lines contain descriptions of test cases.
The first line of each test case contains a single integer n (1≤ n≤ 10^5) — the length of the binary strings.
The next two lines contain two binary strings a and b of length n.
It is guaranteed that the sum of n across all test cases does not exceed 10^5.
Output
For each test case, output an integer k (0≤ k≤ 2n), followed by k integers p_1,…,p_k (1≤ p_i≤ n). Here k is the number of operations you use and p_i is the length of the prefix you flip in the i-th operation.
Example
Input
5
2
01
10
5
01011
11100
2
01
01
10
0110011011
1000110100
1
0
1
Output
3 1 2 1
6 5 2 5 3 1 2
0
9 4 1 2 10 4 1 2 1 5
1 1
Note
In the first test case, we have 01→ 11→ 00→ 10.
In the second test case, we have 01011→ 00101→ 11101→ 01000→ 10100→ 00100→ 11100.
In the third test case, the strings are already the same. Another solution is to flip the prefix of length 2, which will leave a unchanged.
Tags: constructive algorithms, data structures, implementation, strings, two pointers
Correct Solution:
```
# ---------------------------iye ha aam zindegi---------------------------------------------
import math
import heapq, bisect
import sys
from collections import deque, defaultdict
from fractions import Fraction
mod = 10 ** 9 + 7
mod1 = 998244353
# ------------------------------warmup----------------------------
import os
import sys
from io import BytesIO, IOBase
BUFSIZE = 8192
class FastIO(IOBase):
newlines = 0
def __init__(self, file):
self._fd = file.fileno()
self.buffer = BytesIO()
self.writable = "x" in file.mode or "r" not in file.mode
self.write = self.buffer.write if self.writable else None
def read(self):
while True:
b = os.read(self._fd, max(os.fstat(self._fd).st_size, BUFSIZE))
if not b:
break
ptr = self.buffer.tell()
self.buffer.seek(0, 2), self.buffer.write(b), self.buffer.seek(ptr)
self.newlines = 0
return self.buffer.read()
def readline(self):
while self.newlines == 0:
b = os.read(self._fd, max(os.fstat(self._fd).st_size, BUFSIZE))
self.newlines = b.count(b"\n") + (not b)
ptr = self.buffer.tell()
self.buffer.seek(0, 2), self.buffer.write(b), self.buffer.seek(ptr)
self.newlines -= 1
return self.buffer.readline()
def flush(self):
if self.writable:
os.write(self._fd, self.buffer.getvalue())
self.buffer.truncate(0), self.buffer.seek(0)
class IOWrapper(IOBase):
def __init__(self, file):
self.buffer = FastIO(file)
self.flush = self.buffer.flush
self.writable = self.buffer.writable
self.write = lambda s: self.buffer.write(s.encode("ascii"))
self.read = lambda: self.buffer.read().decode("ascii")
self.readline = lambda: self.buffer.readline().decode("ascii")
sys.stdin, sys.stdout = IOWrapper(sys.stdin), IOWrapper(sys.stdout)
input = lambda: sys.stdin.readline().rstrip("\r\n")
# -------------------game starts now----------------------------------------------------import math
class TreeNode:
def __init__(self, k, v):
self.key = k
self.value = v
self.left = None
self.right = None
self.parent = None
self.height = 1
self.num_left = 1
self.num_total = 1
class AvlTree:
def __init__(self):
self._tree = None
def add(self, k, v):
if not self._tree:
self._tree = TreeNode(k, v)
return
node = self._add(k, v)
if node:
self._rebalance(node)
def _add(self, k, v):
node = self._tree
while node:
if k < node.key:
if node.left:
node = node.left
else:
node.left = TreeNode(k, v)
node.left.parent = node
return node.left
elif node.key < k:
if node.right:
node = node.right
else:
node.right = TreeNode(k, v)
node.right.parent = node
return node.right
else:
node.value = v
return
@staticmethod
def get_height(x):
return x.height if x else 0
@staticmethod
def get_num_total(x):
return x.num_total if x else 0
def _rebalance(self, node):
n = node
while n:
lh = self.get_height(n.left)
rh = self.get_height(n.right)
n.height = max(lh, rh) + 1
balance_factor = lh - rh
n.num_total = 1 + self.get_num_total(n.left) + self.get_num_total(n.right)
n.num_left = 1 + self.get_num_total(n.left)
if balance_factor > 1:
if self.get_height(n.left.left) < self.get_height(n.left.right):
self._rotate_left(n.left)
self._rotate_right(n)
elif balance_factor < -1:
if self.get_height(n.right.right) < self.get_height(n.right.left):
self._rotate_right(n.right)
self._rotate_left(n)
else:
n = n.parent
def _remove_one(self, node):
"""
Side effect!!! Changes node. Node should have exactly one child
"""
replacement = node.left or node.right
if node.parent:
if AvlTree._is_left(node):
node.parent.left = replacement
else:
node.parent.right = replacement
replacement.parent = node.parent
node.parent = None
else:
self._tree = replacement
replacement.parent = None
node.left = None
node.right = None
node.parent = None
self._rebalance(replacement)
def _remove_leaf(self, node):
if node.parent:
if AvlTree._is_left(node):
node.parent.left = None
else:
node.parent.right = None
self._rebalance(node.parent)
else:
self._tree = None
node.parent = None
node.left = None
node.right = None
def remove(self, k):
node = self._get_node(k)
if not node:
return
if AvlTree._is_leaf(node):
self._remove_leaf(node)
return
if node.left and node.right:
nxt = AvlTree._get_next(node)
node.key = nxt.key
node.value = nxt.value
if self._is_leaf(nxt):
self._remove_leaf(nxt)
else:
self._remove_one(nxt)
self._rebalance(node)
else:
self._remove_one(node)
def get(self, k):
node = self._get_node(k)
return node.value if node else -1
def _get_node(self, k):
if not self._tree:
return None
node = self._tree
while node:
if k < node.key:
node = node.left
elif node.key < k:
node = node.right
else:
return node
return None
def get_at(self, pos):
x = pos + 1
node = self._tree
while node:
if x < node.num_left:
node = node.left
elif node.num_left < x:
x -= node.num_left
node = node.right
else:
return (node.key, node.value)
raise IndexError("Out of ranges")
@staticmethod
def _is_left(node):
return node.parent.left and node.parent.left == node
@staticmethod
def _is_leaf(node):
return node.left is None and node.right is None
def _rotate_right(self, node):
if not node.parent:
self._tree = node.left
node.left.parent = None
elif AvlTree._is_left(node):
node.parent.left = node.left
node.left.parent = node.parent
else:
node.parent.right = node.left
node.left.parent = node.parent
bk = node.left.right
node.left.right = node
node.parent = node.left
node.left = bk
if bk:
bk.parent = node
node.height = max(self.get_height(node.left), self.get_height(node.right)) + 1
node.num_total = 1 + self.get_num_total(node.left) + self.get_num_total(node.right)
node.num_left = 1 + self.get_num_total(node.left)
def _rotate_left(self, node):
if not node.parent:
self._tree = node.right
node.right.parent = None
elif AvlTree._is_left(node):
node.parent.left = node.right
node.right.parent = node.parent
else:
node.parent.right = node.right
node.right.parent = node.parent
bk = node.right.left
node.right.left = node
node.parent = node.right
node.right = bk
if bk:
bk.parent = node
node.height = max(self.get_height(node.left), self.get_height(node.right)) + 1
node.num_total = 1 + self.get_num_total(node.left) + self.get_num_total(node.right)
node.num_left = 1 + self.get_num_total(node.left)
@staticmethod
def _get_next(node):
if not node.right:
return node.parent
n = node.right
while n.left:
n = n.left
return n
avl=AvlTree()
#-----------------------------------------------binary seacrh tree---------------------------------------
class SegmentTree1:
def __init__(self, data, default='z', func=lambda a, b: min(a ,b)):
"""initialize the segment tree with data"""
self._default = default
self._func = func
self._len = len(data)
self._size = _size = 1 << (self._len - 1).bit_length()
self.data = [default] * (2 * _size)
self.data[_size:_size + self._len] = data
for i in reversed(range(_size)):
self.data[i] = func(self.data[i + i], self.data[i + i + 1])
def __delitem__(self, idx):
self[idx] = self._default
def __getitem__(self, idx):
return self.data[idx + self._size]
def __setitem__(self, idx, value):
idx += self._size
self.data[idx] = value
idx >>= 1
while idx:
self.data[idx] = self._func(self.data[2 * idx], self.data[2 * idx + 1])
idx >>= 1
def __len__(self):
return self._len
def query(self, start, stop):
if start == stop:
return self.__getitem__(start)
stop += 1
start += self._size
stop += self._size
res = self._default
while start < stop:
if start & 1:
res = self._func(res, self.data[start])
start += 1
if stop & 1:
stop -= 1
res = self._func(res, self.data[stop])
start >>= 1
stop >>= 1
return res
def __repr__(self):
return "SegmentTree({0})".format(self.data)
# -------------------game starts now----------------------------------------------------import math
class SegmentTree:
def __init__(self, data, default=0, func=lambda a, b: a + b):
"""initialize the segment tree with data"""
self._default = default
self._func = func
self._len = len(data)
self._size = _size = 1 << (self._len - 1).bit_length()
self.data = [default] * (2 * _size)
self.data[_size:_size + self._len] = data
for i in reversed(range(_size)):
self.data[i] = func(self.data[i + i], self.data[i + i + 1])
def __delitem__(self, idx):
self[idx] = self._default
def __getitem__(self, idx):
return self.data[idx + self._size]
def __setitem__(self, idx, value):
idx += self._size
self.data[idx] = value
idx >>= 1
while idx:
self.data[idx] = self._func(self.data[2 * idx], self.data[2 * idx + 1])
idx >>= 1
def __len__(self):
return self._len
def query(self, start, stop):
if start == stop:
return self.__getitem__(start)
stop += 1
start += self._size
stop += self._size
res = self._default
while start < stop:
if start & 1:
res = self._func(res, self.data[start])
start += 1
if stop & 1:
stop -= 1
res = self._func(res, self.data[stop])
start >>= 1
stop >>= 1
return res
def __repr__(self):
return "SegmentTree({0})".format(self.data)
# -------------------------------iye ha chutiya zindegi-------------------------------------
class Factorial:
def __init__(self, MOD):
self.MOD = MOD
self.factorials = [1, 1]
self.invModulos = [0, 1]
self.invFactorial_ = [1, 1]
def calc(self, n):
if n <= -1:
print("Invalid argument to calculate n!")
print("n must be non-negative value. But the argument was " + str(n))
exit()
if n < len(self.factorials):
return self.factorials[n]
nextArr = [0] * (n + 1 - len(self.factorials))
initialI = len(self.factorials)
prev = self.factorials[-1]
m = self.MOD
for i in range(initialI, n + 1):
prev = nextArr[i - initialI] = prev * i % m
self.factorials += nextArr
return self.factorials[n]
def inv(self, n):
if n <= -1:
print("Invalid argument to calculate n^(-1)")
print("n must be non-negative value. But the argument was " + str(n))
exit()
p = self.MOD
pi = n % p
if pi < len(self.invModulos):
return self.invModulos[pi]
nextArr = [0] * (n + 1 - len(self.invModulos))
initialI = len(self.invModulos)
for i in range(initialI, min(p, n + 1)):
next = -self.invModulos[p % i] * (p // i) % p
self.invModulos.append(next)
return self.invModulos[pi]
def invFactorial(self, n):
if n <= -1:
print("Invalid argument to calculate (n^(-1))!")
print("n must be non-negative value. But the argument was " + str(n))
exit()
if n < len(self.invFactorial_):
return self.invFactorial_[n]
self.inv(n) # To make sure already calculated n^-1
nextArr = [0] * (n + 1 - len(self.invFactorial_))
initialI = len(self.invFactorial_)
prev = self.invFactorial_[-1]
p = self.MOD
for i in range(initialI, n + 1):
prev = nextArr[i - initialI] = (prev * self.invModulos[i % p]) % p
self.invFactorial_ += nextArr
return self.invFactorial_[n]
class Combination:
def __init__(self, MOD):
self.MOD = MOD
self.factorial = Factorial(MOD)
def ncr(self, n, k):
if k < 0 or n < k:
return 0
k = min(k, n - k)
f = self.factorial
return f.calc(n) * f.invFactorial(max(n - k, k)) * f.invFactorial(min(k, n - k)) % self.MOD
# --------------------------------------iye ha combinations ka zindegi---------------------------------
def powm(a, n, m):
if a == 1 or n == 0:
return 1
if n % 2 == 0:
s = powm(a, n // 2, m)
return s * s % m
else:
return a * powm(a, n - 1, m) % m
# --------------------------------------iye ha power ka zindegi---------------------------------
def sort_list(list1, list2):
zipped_pairs = zip(list2, list1)
z = [x for _, x in sorted(zipped_pairs)]
return z
# --------------------------------------------------product----------------------------------------
def product(l):
por = 1
for i in range(len(l)):
por *= l[i]
return por
# --------------------------------------------------binary----------------------------------------
def binarySearchCount(arr, n, key):
left = 0
right = n - 1
count = 0
while (left <= right):
mid = int((right + left)/ 2)
# Check if middle element is
# less than or equal to key
if (arr[mid]<=key):
count = mid+1
left = mid + 1
# If key is smaller, ignore right half
else:
right = mid - 1
return count
# --------------------------------------------------binary----------------------------------------
def countdig(n):
c = 0
while (n > 0):
n //= 10
c += 1
return c
def countGreater( arr,n, k):
l = 0
r = n - 1
# Stores the index of the left most element
# from the array which is greater than k
leftGreater = n
# Finds number of elements greater than k
while (l <= r):
m = int(l + (r - l) / 2)
if (arr[m] >= k):
leftGreater = m
r = m - 1
# If mid element is less than
# or equal to k update l
else:
l = m + 1
# Return the count of elements
# greater than k
return (n - leftGreater)
# --------------------------------------------------binary------------------------------------
for ik in range(int(input())):
n=int(input())
s=list(input())
for i in range(n):
s[i]=int(s[i])
s1=list(input())
for i in range(n):
s1[i]=int(s1[i])
ans=[]
cou=0
lastz=s[0]
su=0
for i in range(n-1,-1,-1):
si=s[su+(-1)**(cou)*i]
if cou%2==1:
si=1-si
if s1[i]!=si:
if lastz==s1[i]:
ans.append(1)
ans.append(i+1)
lastz=s1[i]
if cou % 2 == 1:
su -= i
else:
su += i
cou+=1
#print(s)
print(len(ans),*ans)
#print(*ans)
```
| 10,131 | [
0.1578369140625,
-0.424560546875,
-0.0615234375,
0.07354736328125,
-0.379638671875,
-0.791015625,
0.002689361572265625,
-0.19775390625,
0.18505859375,
1.01953125,
0.7890625,
-0.259521484375,
0.33154296875,
-0.9013671875,
-0.54052734375,
0.3212890625,
-0.3837890625,
-0.59375,
-0.296630859375,
-0.541015625,
-0.064208984375,
-0.11358642578125,
-1.3525390625,
-0.07293701171875,
-0.58740234375,
0.82373046875,
0.3271484375,
-0.153564453125,
1.0341796875,
1.0634765625,
-0.422607421875,
-0.4482421875,
0.75830078125,
-0.9794921875,
-0.440673828125,
-0.48779296875,
0.59521484375,
-0.8134765625,
-0.1390380859375,
-0.2880859375,
0.5693359375,
-0.261474609375,
0.2467041015625,
-0.919921875,
-1.3154296875,
0.2010498046875,
-0.3564453125,
-0.31298828125,
-0.1546630859375,
-0.469970703125,
0.0140380859375,
-0.25,
0.6201171875,
-0.09954833984375,
0.0819091796875,
0.1527099609375,
0.2271728515625,
-0.5458984375,
-0.460205078125,
0.1866455078125,
0.0853271484375,
0.126708984375,
0.1839599609375,
-0.77490234375,
0.11004638671875,
0.189453125,
-0.253662109375,
-0.435302734375,
-0.404296875,
-1.01171875,
-0.325439453125,
-0.061187744140625,
-0.736328125,
-0.330810546875,
-0.1092529296875,
0.250732421875,
0.24365234375,
-0.170166015625,
-0.87255859375,
0.77978515625,
-0.2939453125,
0.92236328125,
0.07794189453125,
0.2169189453125,
-0.4716796875,
-0.5302734375,
-0.03521728515625,
0.2274169921875,
0.1861572265625,
-0.1314697265625,
-0.386962890625,
0.57958984375,
-0.4775390625,
0.07781982421875,
0.4013671875,
0.70751953125,
-0.312255859375,
0.261962890625,
0.4453125,
-0.044219970703125,
0.8037109375,
1.2294921875,
-0.204833984375,
1.1669921875,
-0.6279296875,
-0.2197265625,
-0.0494384765625,
0.13232421875,
-0.037078857421875,
-0.053955078125,
-0.0020751953125,
-0.184326171875,
0.67431640625,
0.354248046875,
-0.407958984375,
0.771484375,
-0.031951904296875,
0.406982421875,
-0.99267578125,
0.4697265625,
0.66064453125,
-0.07611083984375,
0.73828125,
-0.255859375,
-0.1343994140625,
-0.226318359375,
-0.321044921875,
1.1416015625,
-0.42578125,
-0.399169921875,
0.27734375,
-0.0103912353515625,
-0.245361328125,
0.334228515625,
-0.039093017578125,
0.72802734375,
-0.2298583984375,
0.431884765625,
0.7275390625,
-0.488037109375,
0.78271484375,
-0.181640625,
-0.1630859375,
1.70703125,
0.4990234375,
0.1312255859375,
1.0126953125,
0.412841796875,
-0.31591796875,
0.475830078125,
-0.91064453125,
0.5830078125,
0.261962890625,
0.335205078125,
-0.1458740234375,
-0.1025390625,
-0.274169921875,
0.5341796875,
0.10015869140625,
0.163818359375,
-0.0247955322265625,
0.275146484375,
0.032379150390625,
0.9423828125,
-0.13037109375,
1.0810546875,
-0.3974609375,
-0.344970703125,
-0.278076171875,
-0.6845703125,
0.5078125,
-0.2149658203125,
-0.42578125,
0.6064453125,
0.5439453125,
1.16015625,
1.3505859375,
-0.466064453125,
0.250244140625,
0.305419921875,
-0.712890625,
0.0119781494140625,
0.68603515625,
0.95361328125,
-0.1781005859375,
0.2286376953125,
-0.10003662109375,
-0.39990234375,
-0.482666015625,
-0.73046875,
-0.13818359375,
0.69677734375,
-0.7646484375,
0.180419921875,
0.329345703125,
0.294677734375,
-0.8779296875,
-0.1031494140625,
-0.270751953125,
-0.70458984375,
-0.29296875,
0.5078125,
-0.4365234375,
0.54638671875,
-0.7646484375,
-0.5078125,
0.591796875,
1.048828125,
-0.2548828125,
0.361572265625,
0.391845703125,
0.202880859375,
-0.2296142578125,
0.357666015625,
0.310791015625,
-0.21044921875,
-0.446533203125,
1.1337890625,
0.308349609375,
-0.08001708984375,
0.0733642578125,
0.69189453125,
0.62890625,
0.394775390625,
-0.214599609375,
0.03802490234375,
0.33447265625,
1.1904296875,
0.127197265625,
0.83056640625,
0.0219268798828125,
0.75537109375,
0.6923828125,
0.66796875,
0.5478515625,
0.0997314453125,
0.634765625,
0.86474609375,
0.184814453125,
0.38720703125,
0.429443359375,
0.466796875,
0.330322265625,
0.4765625,
0.2490234375,
0.1883544921875,
0.271240234375,
0.053466796875,
-0.438232421875,
0.180908203125,
-0.41162109375,
0.86083984375,
-0.0865478515625,
0.1580810546875,
-0.349853515625,
-0.464111328125,
0.1669921875,
0.89306640625,
-0.75048828125,
-0.192626953125,
0.154052734375,
0.056640625,
0.11614990234375,
-0.270263671875,
0.358642578125,
0.373046875,
0.44287109375,
0.52392578125,
-0.39501953125,
-0.240234375,
-1.1728515625,
-0.86328125,
-0.84521484375,
-0.50732421875,
-0.853515625,
0.062164306640625,
0.14794921875,
-0.71630859375,
0.328369140625,
-0.53076171875,
-0.268310546875,
0.2257080078125,
-0.697265625,
0.64990234375,
-0.1444091796875,
0.291015625,
-1.3837890625,
0.82080078125,
0.3134765625,
1.1455078125,
-0.7529296875,
0.0867919921875,
0.12017822265625,
-0.8046875,
0.0218353271484375,
0.091552734375,
0.2298583984375,
-0.04052734375,
-0.7392578125,
-0.6708984375,
-0.74658203125,
-0.240966796875,
-0.3095703125,
0.37744140625,
-0.5341796875,
0.92333984375,
0.75048828125,
-0.56689453125,
0.76416015625,
0.87158203125,
-0.5947265625,
0.382080078125,
0.433837890625,
0.145751953125,
-0.8017578125,
1.599609375,
0.50634765625,
0.39208984375,
-0.4482421875,
-0.422607421875,
-0.21240234375,
-0.12322998046875,
0.17431640625,
-0.66845703125,
-0.51318359375,
0.56103515625,
-0.1240234375,
-0.9892578125,
0.142333984375,
-0.900390625,
-0.61962890625,
-0.232666015625,
-0.71826171875,
1.3427734375,
0.98681640625,
-0.09417724609375,
-0.051300048828125,
-0.12060546875,
-0.09771728515625,
0.57275390625,
0.466796875,
-0.06976318359375,
-0.030548095703125,
0.80859375,
0.29638671875,
0.0404052734375,
0.1768798828125,
-0.5615234375,
0.01505279541015625,
-0.058990478515625,
0.372314453125,
0.4755859375,
0.15673828125,
0.403076171875,
0.2509765625,
0.498291015625,
-1.2236328125,
-0.21826171875,
-0.24462890625,
0.5185546875,
0.5185546875,
0.3642578125,
-0.00263214111328125,
-0.54638671875,
-0.84033203125,
-1.0732421875,
0.1820068359375,
0.07501220703125,
0.77197265625,
-0.833984375,
0.77001953125,
0.1671142578125,
-0.361328125,
0.533203125,
-0.66064453125,
-0.038177490234375,
0.9345703125,
-0.587890625,
0.89208984375,
-0.97998046875,
0.32275390625,
0.026580810546875,
0.00858306884765625,
0.376708984375,
0.454345703125,
0.45263671875,
-0.49462890625,
-0.435791015625,
-0.63916015625,
0.0802001953125,
0.0006437301635742188,
-0.3515625,
0.099609375,
-0.304443359375,
-0.3388671875,
-0.8564453125,
0.35693359375,
0.87890625,
0.86572265625,
-0.049652099609375,
0.472412109375,
0.404052734375,
0.453857421875,
0.6328125,
-0.1094970703125,
0.244873046875,
-0.93994140625,
0.646484375,
0.2296142578125,
-0.322265625,
-0.70166015625,
-0.1466064453125,
-0.188720703125,
-0.01160430908203125,
-0.201904296875,
-0.306640625,
-0.89697265625,
0.36669921875,
-0.223876953125,
0.7939453125,
-0.41064453125,
-0.257080078125,
-0.712890625,
0.4609375,
0.51806640625,
-0.77392578125,
0.50634765625,
-0.96044921875,
0.658203125,
0.4873046875,
-0.30859375,
-0.306396484375,
-0.736328125,
-0.75146484375,
-0.5146484375,
0.289794921875,
1.052734375,
-0.169189453125,
0.5068359375,
-1.337890625,
0.325927734375,
0.15234375,
-0.74560546875,
-0.055267333984375,
-0.078857421875,
0.487060546875,
0.165771484375,
0.77099609375,
-0.1474609375,
-0.30126953125,
0.042755126953125,
-1.2978515625,
0.55126953125,
-0.5791015625,
0.482666015625,
0.1065673828125,
-0.23974609375,
0.061859130859375,
0.350341796875,
-0.145263671875,
0.07183837890625,
-0.28955078125,
0.2744140625,
-0.95361328125,
-0.59423828125,
0.5537109375,
-0.20263671875,
-0.314697265625,
1.0087890625,
0.07928466796875,
-0.064453125,
0.22802734375,
0.5517578125,
-0.48095703125,
0.42138671875,
-0.252197265625,
0.89013671875,
-0.52490234375,
-0.63623046875,
-0.443603515625,
-0.320556640625,
0.73486328125,
-0.080078125,
-0.451171875,
-0.2232666015625,
-1.12109375,
-0.10333251953125,
0.191650390625,
-0.409423828125,
0.2410888671875,
0.1322021484375,
0.205322265625,
-0.26318359375,
-0.034088134765625,
-0.463623046875,
-0.171142578125,
-0.533203125,
-0.58203125,
0.58740234375,
0.37890625,
0.54736328125,
0.09912109375,
-0.56884765625,
-0.15234375,
0.41455078125,
-0.12225341796875,
-0.607421875,
-0.1900634765625,
-0.395751953125,
-0.169189453125,
-0.470947265625,
0.058197021484375,
-0.08807373046875,
0.3447265625,
0.98828125,
-0.00598907470703125,
0.356201171875,
0.348388671875,
-0.78076171875,
0.9130859375,
0.33349609375,
-0.71240234375,
-0.36767578125,
0.27099609375,
-0.067626953125,
0.6787109375,
0.56689453125,
-0.7900390625,
-0.583984375,
-0.79443359375,
0.2529296875,
-0.80859375,
-0.194580078125,
-0.92626953125,
-0.59375,
-0.372802734375,
0.6142578125,
-0.105712890625,
-0.6943359375,
0.05645751953125,
-0.869140625,
-0.0701904296875,
-0.857421875,
-0.218017578125,
-0.7626953125,
-0.66748046875,
-0.226318359375,
0.89453125,
0.0865478515625,
-0.00817108154296875,
0.263671875,
-0.1011962890625,
0.14404296875,
0.30810546875,
-0.72802734375,
-0.163818359375,
-0.0296630859375,
0.072509765625,
-0.179931640625,
0.00797271728515625,
-0.8212890625,
0.59228515625,
-0.8720703125,
0.2322998046875,
-0.220703125,
-0.004085540771484375,
-0.360107421875,
-0.19580078125,
0.95556640625,
-0.350830078125,
0.374267578125,
-0.308837890625,
0.3359375,
0.77734375,
-0.685546875,
-0.419921875,
-1.0068359375,
-0.8349609375,
-1.4013671875,
0.69580078125,
-0.4375,
0.1478271484375,
-0.75634765625,
-0.55810546875,
0.9453125,
-0.6923828125,
0.353759765625,
1.15625,
0.0040130615234375,
0.426025390625,
-0.280029296875,
0.64697265625,
0.2119140625,
-0.6171875,
0.2276611328125,
0.406494140625,
-0.64501953125,
-0.12445068359375,
-0.392822265625,
-1,
-0.473388671875,
0.430419921875,
1.1259765625,
-0.01531982421875,
0.302978515625,
-0.41357421875,
-1.0693359375,
-0.53857421875,
0.697265625,
0.28173828125,
0.4111328125,
1.001953125,
0.1806640625,
-0.09124755859375,
0.10546875,
-0.50390625,
-0.292724609375,
-0.370849609375,
1.1787109375,
-0.177734375,
-0.59228515625,
0.8125,
0.85595703125,
-0.97900390625,
-1.0322265625,
-0.07696533203125,
-0.1573486328125,
-0.1046142578125,
-0.75390625,
-0.039581298828125,
0.568359375,
-0.4365234375,
0.0222015380859375,
0.2437744140625,
-0.11639404296875,
0.2384033203125,
0.193115234375,
0.28759765625,
-0.07659912109375,
0.358642578125,
0.97607421875,
-0.29296875,
-0.57470703125,
-0.951171875,
-0.5615234375,
-0.42578125,
0.145263671875,
0.65966796875,
-0.350830078125,
0.1583251953125,
0.407470703125,
0.0214996337890625,
1.0185546875,
-0.296142578125,
-0.4365234375,
0.385986328125,
-0.8349609375,
-0.62744140625,
0.1690673828125,
0.083984375,
-0.49853515625,
0.6923828125,
-0.6435546875,
0.026824951171875,
0.193115234375,
0.0638427734375,
-0.405029296875,
-1.03125,
-0.18896484375,
-1.3134765625,
-0.3828125,
-0.53271484375,
-0.939453125,
-0.1705322265625,
0.03912353515625,
0.2032470703125,
-0.7578125,
0.05340576171875,
0.428955078125,
-0.2303466796875,
0.90869140625,
-0.6279296875,
0.1279296875,
-0.488037109375,
-0.480712890625,
-0.57421875,
0.0198974609375,
-0.44140625,
-0.032318115234375,
-0.88671875,
0.1392822265625,
-0.0267791748046875,
0.4912109375,
-0.226806640625,
0.61181640625,
-0.55126953125,
-1.150390625,
0.193359375,
-0.042694091796875,
0.034698486328125,
0.744140625,
0.38916015625,
-0.08319091796875,
0.50732421875,
-0.024200439453125,
-0.26611328125,
-0.4150390625,
0.57470703125,
0.52197265625,
-0.25927734375,
-0.1925048828125,
-0.16552734375,
0.261962890625,
-1.205078125,
0.5517578125,
-0.58154296875,
0.2039794921875,
0.29931640625,
-0.5234375,
0.44580078125,
1.140625,
-0.505859375,
0.2359619140625,
-0.09295654296875,
0.141845703125,
0.1712646484375,
0.300048828125,
-0.1488037109375,
0.76318359375,
-0.2198486328125,
-0.537109375,
-0.0087432861328125,
0.289794921875,
-0.2188720703125,
0.429443359375,
-0.1395263671875,
-1.0400390625,
-0.875,
-0.1455078125,
0.01514434814453125,
0.2366943359375,
0.07421875,
-0.22119140625,
-0.035003662109375,
0.1351318359375,
-0.845703125,
0.2432861328125,
-0.9501953125,
-0.86962890625,
0.5419921875,
-0.19189453125,
-0.233642578125,
0.09417724609375,
-0.322265625,
-0.368896484375,
0.16455078125,
0.55712890625,
-0.6806640625,
0.51025390625,
-0.1837158203125,
0.6357421875,
-0.436279296875,
-0.22412109375,
0.1112060546875,
0.6533203125,
-0.779296875,
-0.55029296875,
-0.3330078125,
0.89111328125,
0.218994140625,
-0.3740234375,
-0.6337890625,
0.0858154296875,
0.2188720703125,
0.294677734375,
-0.59619140625,
0.2005615234375,
-0.2371826171875,
0.6884765625,
-1.2314453125,
0.06536865234375,
0.0411376953125,
0.2099609375,
0.1322021484375,
-0.3447265625,
-0.68701171875,
1.14453125,
0.368896484375,
-0.05718994140625,
0.59326171875,
0.0158843994140625,
0.36767578125,
-0.0072174072265625,
-0.00322723388671875,
-0.051025390625,
0.74072265625,
0.6357421875,
0.59765625,
-0.169921875,
0.1883544921875,
0.7685546875,
0.19677734375,
-0.3369140625,
0.303955078125,
0.007076263427734375,
-0.08966064453125,
0.36376953125,
-0.2177734375,
-0.258544921875,
-0.1546630859375,
-0.34326171875,
0.6259765625,
-0.51953125,
-0.0196685791015625,
-0.2283935546875,
-0.8759765625,
0.701171875,
-0.271484375,
-0.37890625,
0.400390625,
-0.1607666015625,
0.171630859375,
0.55908203125,
-0.416259765625,
-0.317626953125,
1.1162109375,
0.76611328125,
0.3984375,
0.74072265625,
0.357177734375,
0.548828125,
-0.55126953125,
0.34765625,
0.073486328125,
-0.0841064453125,
-0.0911865234375,
-0.73974609375,
-0.99560546875,
0.57421875,
-0.302001953125,
-0.25048828125,
0.57177734375,
-0.55810546875,
0.322265625,
-0.53125,
0.97216796875,
-0.369140625,
0.31005859375,
0.344970703125,
-0.50048828125,
-0.6494140625,
0.681640625,
-0.3076171875,
0.345458984375,
0.08660888671875,
0.904296875,
-0.00827789306640625,
1.6923828125,
0.57275390625,
-0.12054443359375,
0.0151519775390625,
0.477783203125,
-0.29443359375,
-0.32421875,
-0.6875,
-0.3427734375,
0.127685546875,
-0.23291015625,
-0.87109375,
-0.06103515625,
0.78271484375,
0.1312255859375,
-0.87255859375,
-0.2705078125,
0.350830078125,
-1.1572265625,
0.4013671875,
0.366455078125,
0.25,
0.153076171875,
-0.211181640625,
-0.1524658203125,
-0.5927734375,
0.44091796875,
-0.7724609375,
0.313232421875,
-0.493896484375,
-0.37890625,
-0.6435546875,
-0.67138671875,
-0.387451171875,
-0.09228515625,
-0.51806640625,
-0.74169921875,
0.5771484375,
0.299560546875,
0.6982421875,
0.5400390625,
-0.298583984375,
0.269287109375,
0.69921875,
0.9697265625,
-0.185546875,
1.11328125,
0.337890625,
-0.077880859375,
0.2127685546875,
-0.3583984375,
0.3232421875,
-0.04913330078125,
0.351318359375,
-0.50732421875,
-0.233642578125,
-0.81982421875,
-1.1123046875,
0.436279296875,
0.439208984375,
0.360107421875,
-0.7216796875,
-1.1181640625,
-0.08013916015625,
-1.2119140625,
-0.4365234375,
-0.693359375,
0.75439453125,
-0.7216796875,
-0.0390625,
0.07379150390625,
-1.1171875,
4.30859375,
0.93896484375,
0.63134765625,
0.472900390625,
0.12255859375,
0.79248046875,
0.48486328125,
-0.310302734375,
-0.39111328125,
-0.296630859375,
0.59521484375,
-0.521484375,
-0.05084228515625,
0.95751953125,
0.521484375,
0.317138671875,
-0.25830078125,
0.039947509765625,
0.2113037109375,
-0.84912109375,
-0.69970703125,
0.32373046875,
0.1060791015625,
0.56396484375,
0.2900390625,
0.29052734375,
0.78857421875,
-0.68505859375,
-0.1932373046875,
-0.81005859375,
0.0816650390625,
-0.3916015625,
0.9619140625,
0.27294921875,
-0.09637451171875,
0.7255859375,
-0.06439208984375,
-0.46630859375,
0.044677734375,
0.11505126953125,
-0.057647705078125,
0.1954345703125,
0.544921875,
-0.697265625,
-0.289794921875,
0.5244140625,
-0.5703125,
0.61181640625,
0.361572265625,
-1.041015625,
1.025390625,
-0.141845703125,
0.478759765625,
-0.87255859375,
-0.615234375,
0.1961669921875,
0.097900390625,
0.09136962890625,
-0.3525390625,
0.603515625,
0.61572265625,
0.61572265625,
0.033050537109375,
0.5029296875,
-0.92919921875,
0.546875,
-0.232421875,
0.58984375,
-0.421142578125,
-0.004070281982421875,
-0.2208251953125,
-0.2861328125,
-0.313232421875,
-0.57861328125,
0.521484375,
0.07305908203125,
-0.278076171875,
0.86181640625,
0.330322265625,
-0.7626953125,
0.0709228515625,
-0.270751953125,
-0.0750732421875,
-0.311279296875,
0.78076171875,
1.1953125,
-0.437744140625,
0.181640625,
-0.254150390625,
0.5361328125,
0.55517578125,
0.74560546875,
-0.177490234375,
-0.54345703125,
-0.3251953125
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
This is the hard version of the problem. The difference between the versions is the constraint on n and the required number of operations. You can make hacks only if all versions of the problem are solved.
There are two binary strings a and b of length n (a binary string is a string consisting of symbols 0 and 1). In an operation, you select a prefix of a, and simultaneously invert the bits in the prefix (0 changes to 1 and 1 changes to 0) and reverse the order of the bits in the prefix.
For example, if a=001011 and you select the prefix of length 3, it becomes 011011. Then if you select the entire string, it becomes 001001.
Your task is to transform the string a into b in at most 2n operations. It can be proved that it is always possible.
Input
The first line contains a single integer t (1≤ t≤ 1000) — the number of test cases. Next 3t lines contain descriptions of test cases.
The first line of each test case contains a single integer n (1≤ n≤ 10^5) — the length of the binary strings.
The next two lines contain two binary strings a and b of length n.
It is guaranteed that the sum of n across all test cases does not exceed 10^5.
Output
For each test case, output an integer k (0≤ k≤ 2n), followed by k integers p_1,…,p_k (1≤ p_i≤ n). Here k is the number of operations you use and p_i is the length of the prefix you flip in the i-th operation.
Example
Input
5
2
01
10
5
01011
11100
2
01
01
10
0110011011
1000110100
1
0
1
Output
3 1 2 1
6 5 2 5 3 1 2
0
9 4 1 2 10 4 1 2 1 5
1 1
Note
In the first test case, we have 01→ 11→ 00→ 10.
In the second test case, we have 01011→ 00101→ 11101→ 01000→ 10100→ 00100→ 11100.
In the third test case, the strings are already the same. Another solution is to flip the prefix of length 2, which will leave a unchanged.
Submitted Solution:
```
# from collections import Counter
# import math
def tc():
n = int(input())
a = input()
b = input()
segs = []
prev = a[0]
for i, ch in enumerate(a[1:]):
if ch != prev:
segs.append(i + 1)
prev = ch
bsegs = []
bprev = b[0]
for i, ch in enumerate(b[1:]):
if ch != bprev:
bsegs.append(i + 1)
bprev = ch
if a[-1] != b[-1]:
segs.append(n)
segs.extend(bsegs[::-1])
print(len(segs), ' '.join(map(str, segs)))
##################################
T = int(input())
for _ in range(T):
tc()
# tc()
```
Yes
| 10,132 | [
0.2529296875,
-0.34033203125,
-0.15576171875,
0.06280517578125,
-0.552734375,
-0.59912109375,
-0.023040771484375,
-0.1173095703125,
0.108154296875,
1.04296875,
0.8056640625,
-0.257568359375,
0.213623046875,
-1.0263671875,
-0.6025390625,
0.2119140625,
-0.29296875,
-0.7021484375,
-0.2139892578125,
-0.51318359375,
-0.0921630859375,
-0.1688232421875,
-1.365234375,
0.02520751953125,
-0.494384765625,
0.798828125,
0.4189453125,
-0.12420654296875,
0.87646484375,
0.958984375,
-0.48779296875,
-0.50390625,
0.77880859375,
-0.87646484375,
-0.3505859375,
-0.40087890625,
0.69677734375,
-0.76416015625,
-0.203369140625,
-0.446044921875,
0.423583984375,
-0.278076171875,
0.274658203125,
-0.720703125,
-1.3818359375,
0.061767578125,
-0.24072265625,
-0.331298828125,
-0.1807861328125,
-0.4140625,
0.044036865234375,
-0.307861328125,
0.623046875,
-0.054534912109375,
0.151611328125,
0.325927734375,
0.28076171875,
-0.4501953125,
-0.46875,
0.09930419921875,
0.022216796875,
0.1549072265625,
0.197998046875,
-0.7783203125,
0.09625244140625,
0.387939453125,
-0.206787109375,
-0.457275390625,
-0.28564453125,
-0.8251953125,
-0.28857421875,
-0.11114501953125,
-0.6689453125,
-0.1490478515625,
-0.10565185546875,
0.2000732421875,
0.156005859375,
-0.12017822265625,
-1.06640625,
0.86279296875,
-0.430419921875,
1.0283203125,
0.2763671875,
0.2218017578125,
-0.56689453125,
-0.468994140625,
0.1513671875,
0.2100830078125,
0.21533203125,
-0.0904541015625,
-0.30712890625,
0.479248046875,
-0.5654296875,
-0.03546142578125,
0.467529296875,
0.6591796875,
-0.33203125,
0.345458984375,
0.430908203125,
0.0347900390625,
0.75732421875,
0.9541015625,
-0.2078857421875,
1.3623046875,
-0.51220703125,
-0.20068359375,
-0.06451416015625,
0.006168365478515625,
-0.1287841796875,
-0.073974609375,
-0.035614013671875,
-0.363525390625,
0.67822265625,
0.29248046875,
-0.318359375,
0.74365234375,
-0.091796875,
0.54150390625,
-0.86083984375,
0.289794921875,
0.6708984375,
-0.2344970703125,
0.767578125,
-0.286376953125,
0.0174560546875,
-0.306396484375,
-0.473388671875,
1.037109375,
-0.467529296875,
-0.52587890625,
0.2384033203125,
-0.0435791015625,
-0.37939453125,
0.295654296875,
-0.1474609375,
0.58447265625,
-0.1475830078125,
0.38232421875,
0.70947265625,
-0.46923828125,
0.7919921875,
-0.14208984375,
-0.133544921875,
1.8125,
0.4189453125,
-0.0261688232421875,
0.79931640625,
0.45263671875,
-0.3916015625,
0.5634765625,
-0.98046875,
0.419677734375,
0.0849609375,
0.1866455078125,
-0.318359375,
-0.007511138916015625,
-0.364501953125,
0.447509765625,
0.2442626953125,
0.0810546875,
-0.08721923828125,
0.304931640625,
-0.08026123046875,
0.8271484375,
-0.197509765625,
0.94580078125,
-0.429443359375,
-0.399169921875,
-0.214599609375,
-0.52490234375,
0.26171875,
-0.21240234375,
-0.271484375,
0.73828125,
0.65234375,
1.1337890625,
1.2587890625,
-0.468017578125,
0.2685546875,
0.318359375,
-0.65478515625,
0.047943115234375,
0.63427734375,
0.9052734375,
-0.2227783203125,
0.25830078125,
-0.08197021484375,
-0.30322265625,
-0.352783203125,
-0.76513671875,
-0.03143310546875,
0.8291015625,
-0.75390625,
0.246337890625,
0.0848388671875,
0.2159423828125,
-0.8046875,
-0.1678466796875,
-0.1097412109375,
-0.8369140625,
-0.41845703125,
0.501953125,
-0.298828125,
0.5986328125,
-0.73583984375,
-0.65966796875,
0.55712890625,
1.1669921875,
-0.2342529296875,
0.50830078125,
0.466552734375,
0.29736328125,
-0.2685546875,
0.2293701171875,
0.25439453125,
-0.1900634765625,
-0.485595703125,
0.9755859375,
0.262939453125,
-0.033782958984375,
-0.084228515625,
0.70361328125,
0.49609375,
0.41796875,
-0.3671875,
0.002307891845703125,
0.487548828125,
1.3525390625,
0.054718017578125,
0.77001953125,
0.228515625,
0.78759765625,
0.64404296875,
0.79833984375,
0.448486328125,
0.2049560546875,
0.8681640625,
0.77685546875,
-0.08270263671875,
0.396728515625,
0.357177734375,
0.46875,
0.3623046875,
0.65283203125,
0.2646484375,
0.2081298828125,
0.11016845703125,
-0.039642333984375,
-0.52490234375,
0.332275390625,
-0.43994140625,
0.763671875,
-0.121826171875,
0.404052734375,
-0.300537109375,
-0.43017578125,
0.39453125,
0.8291015625,
-0.8095703125,
-0.466064453125,
0.18408203125,
0.05517578125,
0.13134765625,
-0.1793212890625,
0.3427734375,
0.2412109375,
0.473388671875,
0.480224609375,
-0.2470703125,
-0.1510009765625,
-1.078125,
-0.89892578125,
-0.95068359375,
-0.493408203125,
-0.9072265625,
0.039154052734375,
0.055511474609375,
-0.8046875,
0.28564453125,
-0.6220703125,
-0.1778564453125,
0.24169921875,
-0.67431640625,
0.74267578125,
-0.26171875,
0.334716796875,
-1.2587890625,
0.7841796875,
0.373291015625,
1.16796875,
-0.7578125,
0.1690673828125,
0.10662841796875,
-0.70947265625,
0.046142578125,
0.1004638671875,
0.3203125,
0.0462646484375,
-0.708984375,
-0.6484375,
-0.701171875,
-0.1640625,
-0.293212890625,
0.1190185546875,
-0.544921875,
0.9404296875,
0.72607421875,
-0.7373046875,
0.71728515625,
0.8583984375,
-0.6884765625,
0.60009765625,
0.439697265625,
0.367919921875,
-0.7109375,
1.51171875,
0.462158203125,
0.417724609375,
-0.464599609375,
-0.411376953125,
-0.2034912109375,
-0.07159423828125,
0.164794921875,
-0.533203125,
-0.556640625,
0.56005859375,
-0.1708984375,
-1.046875,
0.344482421875,
-0.9501953125,
-0.544921875,
-0.1998291015625,
-0.888671875,
1.30078125,
1.0673828125,
-0.023468017578125,
-0.01068115234375,
-0.304931640625,
-0.0982666015625,
0.5361328125,
0.5322265625,
-0.321044921875,
-0.031280517578125,
0.84716796875,
0.2587890625,
0.2242431640625,
0.1715087890625,
-0.61376953125,
-0.04608154296875,
-0.1312255859375,
0.294677734375,
0.61962890625,
0.1334228515625,
0.469482421875,
0.19091796875,
0.58251953125,
-1.240234375,
-0.1722412109375,
-0.385009765625,
0.6328125,
0.529296875,
0.405517578125,
0.176025390625,
-0.360107421875,
-0.796875,
-1.037109375,
0.13818359375,
0.0204315185546875,
0.751953125,
-0.64013671875,
0.72314453125,
0.04217529296875,
-0.473388671875,
0.7333984375,
-0.6953125,
0.159423828125,
0.9609375,
-0.5126953125,
0.7724609375,
-1.056640625,
0.3984375,
-0.03564453125,
-0.1912841796875,
0.273193359375,
0.37451171875,
0.5439453125,
-0.44287109375,
-0.356201171875,
-0.58056640625,
0.0770263671875,
0.032012939453125,
-0.3583984375,
-0.033447265625,
-0.37744140625,
-0.43408203125,
-0.87744140625,
0.43896484375,
0.69970703125,
0.9111328125,
0.006351470947265625,
0.5361328125,
0.34228515625,
0.369384765625,
0.6435546875,
-0.035003662109375,
0.241943359375,
-0.9130859375,
0.7841796875,
0.280517578125,
-0.22900390625,
-0.50732421875,
-0.2481689453125,
-0.237548828125,
0.0100555419921875,
-0.1900634765625,
-0.215087890625,
-0.8701171875,
0.482177734375,
-0.1302490234375,
0.73193359375,
-0.6142578125,
-0.04345703125,
-0.70556640625,
0.344482421875,
0.5380859375,
-0.892578125,
0.458251953125,
-0.90966796875,
0.448486328125,
0.580078125,
-0.270751953125,
-0.425048828125,
-0.57275390625,
-0.91357421875,
-0.76513671875,
0.2347412109375,
1.037109375,
-0.2264404296875,
0.50390625,
-1.3955078125,
0.404052734375,
0.38232421875,
-0.916015625,
0.036041259765625,
-0.177978515625,
0.39013671875,
0.1976318359375,
0.744140625,
-0.2088623046875,
-0.29296875,
-0.0183258056640625,
-1.2294921875,
0.4091796875,
-0.65966796875,
0.55908203125,
0.1697998046875,
-0.208251953125,
0.10906982421875,
0.412109375,
-0.12091064453125,
0.0743408203125,
-0.229248046875,
0.3857421875,
-1.0751953125,
-0.734375,
0.5341796875,
-0.04937744140625,
-0.369873046875,
1.03515625,
0.08148193359375,
-0.1954345703125,
0.178955078125,
0.35986328125,
-0.4677734375,
0.54345703125,
-0.2607421875,
0.75146484375,
-0.490478515625,
-0.5927734375,
-0.46875,
-0.296875,
0.7333984375,
-0.2216796875,
-0.434814453125,
-0.18701171875,
-1.15625,
-0.11663818359375,
0.22900390625,
-0.56787109375,
0.197509765625,
0.107421875,
0.26123046875,
-0.257080078125,
-0.0765380859375,
-0.431396484375,
-0.08502197265625,
-0.45556640625,
-0.5966796875,
0.59619140625,
0.36962890625,
0.53955078125,
0.140380859375,
-0.4990234375,
-0.060577392578125,
0.2283935546875,
-0.13916015625,
-0.68310546875,
-0.267333984375,
-0.28271484375,
-0.31201171875,
-0.55419921875,
0.2822265625,
-0.1280517578125,
0.39599609375,
0.970703125,
-0.01053619384765625,
0.5390625,
0.312255859375,
-0.82763671875,
1.09765625,
0.286376953125,
-0.83984375,
-0.29150390625,
0.423583984375,
0.0013685226440429688,
0.8251953125,
0.316650390625,
-0.7587890625,
-0.64404296875,
-0.900390625,
0.392822265625,
-0.90966796875,
-0.259033203125,
-0.9580078125,
-0.6005859375,
-0.43017578125,
0.697265625,
-0.15673828125,
-0.646484375,
0.21533203125,
-0.9716796875,
0.0240325927734375,
-0.93212890625,
-0.211181640625,
-0.76708984375,
-0.59912109375,
-0.34326171875,
0.98193359375,
-0.0103759765625,
-0.0166015625,
0.28515625,
0.052032470703125,
0.07415771484375,
0.2479248046875,
-0.80126953125,
-0.2802734375,
0.056427001953125,
-0.0623779296875,
-0.32470703125,
-0.04443359375,
-0.7783203125,
0.6171875,
-0.849609375,
0.172119140625,
-0.1483154296875,
-0.040863037109375,
-0.32373046875,
-0.27197265625,
1.001953125,
-0.57763671875,
0.3212890625,
-0.426513671875,
0.303466796875,
0.89208984375,
-0.58349609375,
-0.301513671875,
-0.89697265625,
-0.77587890625,
-1.4111328125,
0.623046875,
-0.35205078125,
0.24072265625,
-0.67041015625,
-0.65380859375,
1.0888671875,
-0.755859375,
0.336669921875,
1.0810546875,
0.0276641845703125,
0.358642578125,
-0.345458984375,
0.6796875,
0.44091796875,
-0.646484375,
0.2318115234375,
0.358642578125,
-0.6611328125,
-0.146484375,
-0.58056640625,
-0.9931640625,
-0.578125,
0.37841796875,
1.0498046875,
-0.0721435546875,
0.55419921875,
-0.45263671875,
-1.1982421875,
-0.3505859375,
0.65673828125,
0.1806640625,
0.335693359375,
1.0634765625,
0.191162109375,
-0.1475830078125,
0.255615234375,
-0.5810546875,
-0.25439453125,
-0.317626953125,
1.2255859375,
-0.34521484375,
-0.59912109375,
0.95166015625,
0.7841796875,
-1.0673828125,
-0.9892578125,
-0.147216796875,
-0.03662109375,
0.006984710693359375,
-0.9208984375,
-0.0413818359375,
0.486083984375,
-0.46826171875,
0.11016845703125,
0.2259521484375,
-0.12127685546875,
0.271484375,
0.157470703125,
0.41748046875,
-0.234619140625,
0.2919921875,
1.0205078125,
-0.365234375,
-0.74951171875,
-0.97216796875,
-0.4091796875,
-0.318115234375,
0.251708984375,
0.69873046875,
-0.2474365234375,
0.33740234375,
0.6640625,
-0.0287628173828125,
1.037109375,
-0.318603515625,
-0.2548828125,
0.366455078125,
-0.73876953125,
-0.6103515625,
0.10125732421875,
0.1217041015625,
-0.3779296875,
0.71142578125,
-0.60107421875,
-0.086669921875,
0.277587890625,
0.14892578125,
-0.442626953125,
-0.99169921875,
-0.271728515625,
-1.1923828125,
-0.40478515625,
-0.457763671875,
-0.9189453125,
-0.01065826416015625,
0.15234375,
0.2301025390625,
-0.76025390625,
0.07513427734375,
0.5673828125,
-0.3662109375,
0.814453125,
-0.70068359375,
0.0567626953125,
-0.46826171875,
-0.42431640625,
-0.63427734375,
-0.057373046875,
-0.57861328125,
-0.1417236328125,
-0.5654296875,
0.1920166015625,
-0.1641845703125,
0.55224609375,
-0.2841796875,
0.6728515625,
-0.377685546875,
-0.81396484375,
0.29296875,
0.05120849609375,
-0.22802734375,
0.8681640625,
0.373291015625,
0.07568359375,
0.4970703125,
-0.083740234375,
-0.1885986328125,
-0.211669921875,
0.74658203125,
0.46533203125,
-0.251953125,
-0.28564453125,
-0.11468505859375,
0.09844970703125,
-1.181640625,
0.53369140625,
-0.615234375,
0.2216796875,
0.252197265625,
-0.373046875,
0.356689453125,
1.0869140625,
-0.6376953125,
0.388671875,
0.024993896484375,
0.137451171875,
0.2301025390625,
0.287353515625,
-0.1231689453125,
0.7353515625,
-0.256591796875,
-0.56640625,
-0.1119384765625,
0.238525390625,
-0.11639404296875,
0.406494140625,
-0.26318359375,
-1.1328125,
-1.0556640625,
-0.1396484375,
-0.10528564453125,
0.259765625,
0.248046875,
-0.279052734375,
0.046630859375,
0.173095703125,
-0.9619140625,
0.248779296875,
-1.0634765625,
-0.94921875,
0.75,
-0.1669921875,
-0.3740234375,
0.1822509765625,
-0.25634765625,
-0.1695556640625,
0.1680908203125,
0.337890625,
-0.572265625,
0.433837890625,
-0.1324462890625,
0.65771484375,
-0.294189453125,
-0.1883544921875,
0.0207061767578125,
0.685546875,
-0.9091796875,
-0.397705078125,
-0.400146484375,
0.80810546875,
0.109130859375,
-0.44091796875,
-0.58447265625,
0.1400146484375,
0.1865234375,
0.2073974609375,
-0.45068359375,
0.157470703125,
-0.059661865234375,
0.775390625,
-1.0322265625,
0.08087158203125,
0.0008006095886230469,
0.253173828125,
-0.016998291015625,
-0.382080078125,
-0.75390625,
1.0537109375,
0.5439453125,
0.10003662109375,
0.63916015625,
0.017181396484375,
0.50146484375,
-0.0226593017578125,
-0.0007638931274414062,
-0.265869140625,
0.720703125,
0.73876953125,
0.712890625,
-0.15869140625,
0.388671875,
0.8212890625,
0.2626953125,
-0.17724609375,
0.3955078125,
0.013092041015625,
-0.07684326171875,
0.30517578125,
-0.2213134765625,
-0.28466796875,
-0.0950927734375,
-0.397705078125,
0.55517578125,
-0.57861328125,
-0.041015625,
-0.29150390625,
-0.75341796875,
0.82080078125,
-0.44287109375,
-0.2178955078125,
0.349365234375,
-0.202392578125,
0.370849609375,
0.5029296875,
-0.244384765625,
-0.306396484375,
1.169921875,
0.8115234375,
0.51220703125,
0.75390625,
0.44482421875,
0.41162109375,
-0.576171875,
0.275634765625,
0.1849365234375,
-0.05865478515625,
-0.01044464111328125,
-0.6650390625,
-1.2705078125,
0.5830078125,
-0.1962890625,
-0.1485595703125,
0.341796875,
-0.72900390625,
0.2418212890625,
-0.572265625,
1.1318359375,
-0.51513671875,
0.2724609375,
0.265869140625,
-0.54345703125,
-0.6396484375,
0.71826171875,
-0.224853515625,
0.298583984375,
0.137939453125,
0.89111328125,
0.08935546875,
1.67578125,
0.7412109375,
-0.17236328125,
0.053131103515625,
0.59375,
-0.25,
-0.3232421875,
-0.59130859375,
-0.360595703125,
-0.026336669921875,
-0.34765625,
-0.75,
-0.1666259765625,
0.7607421875,
0.222900390625,
-0.908203125,
-0.43212890625,
0.28076171875,
-0.99951171875,
0.54833984375,
0.2200927734375,
0.399658203125,
0.276123046875,
-0.201904296875,
-0.255615234375,
-0.6201171875,
0.414794921875,
-0.64697265625,
0.29345703125,
-0.52685546875,
-0.2469482421875,
-0.67236328125,
-0.5693359375,
-0.343505859375,
-0.08502197265625,
-0.53271484375,
-0.72705078125,
0.60595703125,
0.238037109375,
0.459716796875,
0.432373046875,
-0.352294921875,
0.3056640625,
0.8173828125,
0.96435546875,
-0.298583984375,
1.1513671875,
0.32373046875,
-0.0318603515625,
0.10260009765625,
-0.36474609375,
0.412841796875,
-0.0106658935546875,
0.33056640625,
-0.5791015625,
-0.141845703125,
-0.98779296875,
-1.029296875,
0.293701171875,
0.443359375,
0.2427978515625,
-0.85693359375,
-1.2939453125,
-0.260498046875,
-1.0771484375,
-0.33642578125,
-0.74365234375,
0.79736328125,
-0.634765625,
-0.028778076171875,
0.07476806640625,
-1.021484375,
4.24609375,
0.841796875,
0.5244140625,
0.286865234375,
0.2359619140625,
0.90087890625,
0.393798828125,
-0.436279296875,
-0.2607421875,
-0.48095703125,
0.5673828125,
-0.5478515625,
0.060699462890625,
1.033203125,
0.525390625,
0.39208984375,
-0.309814453125,
-0.148681640625,
0.251708984375,
-0.95947265625,
-0.86669921875,
0.3720703125,
0.1871337890625,
0.400634765625,
0.216064453125,
0.3701171875,
1.0146484375,
-0.6728515625,
-0.354248046875,
-0.7705078125,
0.22607421875,
-0.325927734375,
0.97607421875,
0.26904296875,
-0.06549072265625,
0.77734375,
-0.01788330078125,
-0.53466796875,
0.01230621337890625,
0.238525390625,
-0.132080078125,
0.19677734375,
0.6025390625,
-0.62353515625,
-0.447265625,
0.6591796875,
-0.609375,
0.61376953125,
0.422607421875,
-1.0458984375,
1.025390625,
-0.09014892578125,
0.578125,
-0.744140625,
-0.62744140625,
0.27685546875,
0.166259765625,
0.0628662109375,
-0.362548828125,
0.56494140625,
0.5458984375,
0.65185546875,
-0.118408203125,
0.69775390625,
-1.0537109375,
0.45849609375,
-0.0794677734375,
0.5048828125,
-0.462890625,
0.039459228515625,
-0.404541015625,
-0.363037109375,
-0.349853515625,
-0.66943359375,
0.56591796875,
0.0892333984375,
-0.36474609375,
0.8115234375,
0.307373046875,
-0.73046875,
0.19580078125,
-0.45068359375,
-0.08392333984375,
-0.42236328125,
0.72412109375,
1.154296875,
-0.485107421875,
0.0537109375,
-0.1973876953125,
0.58935546875,
0.59228515625,
0.84619140625,
-0.09783935546875,
-0.6240234375,
-0.484375
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
This is the hard version of the problem. The difference between the versions is the constraint on n and the required number of operations. You can make hacks only if all versions of the problem are solved.
There are two binary strings a and b of length n (a binary string is a string consisting of symbols 0 and 1). In an operation, you select a prefix of a, and simultaneously invert the bits in the prefix (0 changes to 1 and 1 changes to 0) and reverse the order of the bits in the prefix.
For example, if a=001011 and you select the prefix of length 3, it becomes 011011. Then if you select the entire string, it becomes 001001.
Your task is to transform the string a into b in at most 2n operations. It can be proved that it is always possible.
Input
The first line contains a single integer t (1≤ t≤ 1000) — the number of test cases. Next 3t lines contain descriptions of test cases.
The first line of each test case contains a single integer n (1≤ n≤ 10^5) — the length of the binary strings.
The next two lines contain two binary strings a and b of length n.
It is guaranteed that the sum of n across all test cases does not exceed 10^5.
Output
For each test case, output an integer k (0≤ k≤ 2n), followed by k integers p_1,…,p_k (1≤ p_i≤ n). Here k is the number of operations you use and p_i is the length of the prefix you flip in the i-th operation.
Example
Input
5
2
01
10
5
01011
11100
2
01
01
10
0110011011
1000110100
1
0
1
Output
3 1 2 1
6 5 2 5 3 1 2
0
9 4 1 2 10 4 1 2 1 5
1 1
Note
In the first test case, we have 01→ 11→ 00→ 10.
In the second test case, we have 01011→ 00101→ 11101→ 01000→ 10100→ 00100→ 11100.
In the third test case, the strings are already the same. Another solution is to flip the prefix of length 2, which will leave a unchanged.
Submitted Solution:
```
from sys import stdin
input = lambda: stdin.readline().rstrip("\r\n")
from collections import deque as que, defaultdict as vector
from heapq import*
inin = lambda: int(input())
inar = lambda: list(map(int,input().split()))
from types import GeneratorType
def bootstrap(f, stack=[]):
def wrappedfunc(*args, **kwargs):
if stack: return f(*args, **kwargs)
else:
to = f(*args, **kwargs)
while True:
if type(to) is GeneratorType:
stack.append(to)
to = next(to)
else:
stack.pop()
if not stack: break
to = stack[-1].send(to)
return to
return wrappedfunc
Testcase=inin()
for _ in range(Testcase):
n=inin()
a=list(input())
b=list(input())
a=[int(x) for x in a]+[0]
b=[int(x) for x in b]+[0]
aw=[]
bw=[]
for i in range(n):
if a[i]!=a[i+1]:
aw.append(i+1)
if b[i]!=b[i+1]:
bw.append(i+1)
print(len(aw)+len(bw),*(aw),*bw[::-1])
```
Yes
| 10,133 | [
0.2313232421875,
-0.31787109375,
-0.12066650390625,
0.03607177734375,
-0.58251953125,
-0.60205078125,
-0.09283447265625,
-0.1060791015625,
0.037017822265625,
1.0498046875,
0.8037109375,
-0.272216796875,
0.2149658203125,
-0.9921875,
-0.5654296875,
0.1834716796875,
-0.2802734375,
-0.70556640625,
-0.236572265625,
-0.57421875,
-0.07647705078125,
-0.17822265625,
-1.345703125,
0.07904052734375,
-0.479248046875,
0.71337890625,
0.43359375,
-0.1470947265625,
0.89453125,
0.93603515625,
-0.482421875,
-0.5380859375,
0.75048828125,
-0.89794921875,
-0.350830078125,
-0.425048828125,
0.697265625,
-0.775390625,
-0.243896484375,
-0.44580078125,
0.395751953125,
-0.2386474609375,
0.24267578125,
-0.78466796875,
-1.330078125,
0.049560546875,
-0.2734375,
-0.327880859375,
-0.2406005859375,
-0.34130859375,
0.03515625,
-0.265380859375,
0.548828125,
-0.07806396484375,
0.1416015625,
0.311767578125,
0.22216796875,
-0.462646484375,
-0.476318359375,
0.0830078125,
0.0271148681640625,
0.1256103515625,
0.16650390625,
-0.75,
0.15576171875,
0.441162109375,
-0.2015380859375,
-0.380859375,
-0.287109375,
-0.81201171875,
-0.278564453125,
-0.0833740234375,
-0.70166015625,
-0.2203369140625,
-0.10595703125,
0.1878662109375,
0.2100830078125,
-0.0528564453125,
-1.0556640625,
0.8701171875,
-0.438232421875,
1.0693359375,
0.2435302734375,
0.18115234375,
-0.55908203125,
-0.458251953125,
0.11431884765625,
0.19384765625,
0.1806640625,
-0.08880615234375,
-0.298828125,
0.447998046875,
-0.5947265625,
-0.03204345703125,
0.402587890625,
0.65185546875,
-0.341796875,
0.30908203125,
0.375732421875,
0.040435791015625,
0.6875,
1.0048828125,
-0.263671875,
1.3271484375,
-0.50732421875,
-0.2003173828125,
-0.035308837890625,
0.005298614501953125,
-0.12127685546875,
-0.04229736328125,
-0.02093505859375,
-0.31884765625,
0.7041015625,
0.34228515625,
-0.3583984375,
0.71142578125,
-0.06829833984375,
0.5234375,
-0.87548828125,
0.296875,
0.6591796875,
-0.2449951171875,
0.75244140625,
-0.326171875,
0.0022296905517578125,
-0.277587890625,
-0.443603515625,
1.0126953125,
-0.443603515625,
-0.55224609375,
0.2288818359375,
-0.0999755859375,
-0.35009765625,
0.299072265625,
-0.1019287109375,
0.677734375,
-0.216064453125,
0.330078125,
0.646484375,
-0.41064453125,
0.77392578125,
-0.14111328125,
-0.142822265625,
1.8525390625,
0.42431640625,
0.006198883056640625,
0.7802734375,
0.4541015625,
-0.342529296875,
0.576171875,
-0.935546875,
0.423828125,
0.064697265625,
0.214599609375,
-0.2431640625,
-0.0273895263671875,
-0.37646484375,
0.475830078125,
0.233642578125,
0.1478271484375,
-0.095947265625,
0.353515625,
-0.058349609375,
0.857421875,
-0.20361328125,
0.97412109375,
-0.374755859375,
-0.419677734375,
-0.2734375,
-0.51611328125,
0.31591796875,
-0.228271484375,
-0.256103515625,
0.70947265625,
0.6181640625,
1.12109375,
1.3271484375,
-0.43310546875,
0.205810546875,
0.353759765625,
-0.72607421875,
0.08990478515625,
0.63330078125,
0.94677734375,
-0.12548828125,
0.28857421875,
-0.0260162353515625,
-0.291748046875,
-0.38037109375,
-0.791015625,
-0.0230255126953125,
0.8330078125,
-0.70556640625,
0.255615234375,
0.0205078125,
0.1834716796875,
-0.7939453125,
-0.2154541015625,
-0.10772705078125,
-0.80517578125,
-0.427490234375,
0.483154296875,
-0.28125,
0.580078125,
-0.70654296875,
-0.6357421875,
0.587890625,
1.2421875,
-0.2017822265625,
0.477294921875,
0.45947265625,
0.2479248046875,
-0.29248046875,
0.2095947265625,
0.2364501953125,
-0.2237548828125,
-0.463623046875,
0.95849609375,
0.35546875,
-0.0755615234375,
-0.060028076171875,
0.76171875,
0.49267578125,
0.3896484375,
-0.430908203125,
-0.00917816162109375,
0.487548828125,
1.3525390625,
0.088623046875,
0.75146484375,
0.208984375,
0.7626953125,
0.60302734375,
0.76953125,
0.39794921875,
0.126220703125,
0.91259765625,
0.76513671875,
-0.142333984375,
0.4638671875,
0.388671875,
0.458984375,
0.29052734375,
0.6376953125,
0.2783203125,
0.1524658203125,
0.127685546875,
-0.045654296875,
-0.53125,
0.28759765625,
-0.476318359375,
0.80029296875,
-0.130859375,
0.352294921875,
-0.310546875,
-0.4775390625,
0.442626953125,
0.81884765625,
-0.8564453125,
-0.419677734375,
0.2005615234375,
-0.016876220703125,
0.1234130859375,
-0.141845703125,
0.37060546875,
0.2296142578125,
0.420654296875,
0.483642578125,
-0.2490234375,
-0.1297607421875,
-1.0126953125,
-0.87744140625,
-0.9541015625,
-0.52734375,
-0.92431640625,
-0.0131072998046875,
-0.0140838623046875,
-0.8173828125,
0.255859375,
-0.625,
-0.1304931640625,
0.254638671875,
-0.67724609375,
0.73828125,
-0.260986328125,
0.284423828125,
-1.2666015625,
0.82080078125,
0.375244140625,
1.255859375,
-0.73681640625,
0.204345703125,
0.0706787109375,
-0.72119140625,
0.02783203125,
-0.006366729736328125,
0.332275390625,
0.08929443359375,
-0.625,
-0.666015625,
-0.7138671875,
-0.146484375,
-0.2919921875,
0.1483154296875,
-0.51953125,
0.8896484375,
0.70166015625,
-0.7470703125,
0.7236328125,
0.86865234375,
-0.64892578125,
0.59716796875,
0.402099609375,
0.338623046875,
-0.7099609375,
1.5361328125,
0.4423828125,
0.407470703125,
-0.5009765625,
-0.487060546875,
-0.15966796875,
-0.04290771484375,
0.184814453125,
-0.5068359375,
-0.5615234375,
0.5810546875,
-0.0941162109375,
-1.005859375,
0.3076171875,
-0.974609375,
-0.4951171875,
-0.159423828125,
-0.93505859375,
1.34375,
1.0771484375,
0.019683837890625,
-0.0369873046875,
-0.293212890625,
-0.12841796875,
0.52978515625,
0.5615234375,
-0.357666015625,
-0.02264404296875,
0.89208984375,
0.262939453125,
0.1966552734375,
0.213134765625,
-0.62646484375,
-0.040924072265625,
-0.19580078125,
0.33544921875,
0.57861328125,
0.1649169921875,
0.47802734375,
0.2154541015625,
0.5390625,
-1.2890625,
-0.1690673828125,
-0.333740234375,
0.5888671875,
0.5400390625,
0.314697265625,
0.164306640625,
-0.306884765625,
-0.77685546875,
-0.990234375,
0.11773681640625,
0.03692626953125,
0.76611328125,
-0.57861328125,
0.681640625,
-0.02069091796875,
-0.47705078125,
0.7373046875,
-0.693359375,
0.136474609375,
0.99169921875,
-0.47509765625,
0.71826171875,
-1.09375,
0.396484375,
-0.00927734375,
-0.2489013671875,
0.289306640625,
0.33447265625,
0.54443359375,
-0.461181640625,
-0.36328125,
-0.6552734375,
0.046051025390625,
0.055328369140625,
-0.40478515625,
-0.054595947265625,
-0.3125,
-0.43505859375,
-0.88818359375,
0.39404296875,
0.6796875,
0.89892578125,
0.04718017578125,
0.57666015625,
0.297607421875,
0.435302734375,
0.6484375,
-0.060089111328125,
0.265380859375,
-0.91845703125,
0.8583984375,
0.248779296875,
-0.200927734375,
-0.52099609375,
-0.2242431640625,
-0.1602783203125,
0.06341552734375,
-0.24462890625,
-0.2298583984375,
-0.85986328125,
0.470458984375,
-0.13916015625,
0.68115234375,
-0.68896484375,
-0.0239715576171875,
-0.734375,
0.30322265625,
0.541015625,
-0.89306640625,
0.4296875,
-0.9453125,
0.4755859375,
0.5625,
-0.2626953125,
-0.3974609375,
-0.53955078125,
-0.8310546875,
-0.80615234375,
0.258056640625,
1.0361328125,
-0.2100830078125,
0.486083984375,
-1.37890625,
0.416259765625,
0.3701171875,
-0.91162109375,
0.044525146484375,
-0.1873779296875,
0.389892578125,
0.1961669921875,
0.70947265625,
-0.17822265625,
-0.325927734375,
-0.019561767578125,
-1.2138671875,
0.477783203125,
-0.65283203125,
0.52099609375,
0.1785888671875,
-0.228759765625,
0.08428955078125,
0.41455078125,
-0.12030029296875,
0.0587158203125,
-0.1805419921875,
0.380859375,
-1.0537109375,
-0.8056640625,
0.5087890625,
-0.12469482421875,
-0.348388671875,
1.0234375,
0.0911865234375,
-0.1744384765625,
0.1983642578125,
0.434814453125,
-0.419189453125,
0.5498046875,
-0.3310546875,
0.71923828125,
-0.412109375,
-0.6103515625,
-0.5615234375,
-0.273681640625,
0.74560546875,
-0.130859375,
-0.461669921875,
-0.1856689453125,
-1.15625,
-0.0865478515625,
0.236328125,
-0.50244140625,
0.2025146484375,
0.10101318359375,
0.252685546875,
-0.23974609375,
-0.12347412109375,
-0.405029296875,
-0.06292724609375,
-0.49072265625,
-0.6162109375,
0.58154296875,
0.38525390625,
0.60107421875,
0.0936279296875,
-0.492431640625,
-0.103759765625,
0.20263671875,
-0.2008056640625,
-0.6318359375,
-0.1905517578125,
-0.294677734375,
-0.319091796875,
-0.54052734375,
0.26611328125,
-0.110595703125,
0.398193359375,
0.9208984375,
-0.02374267578125,
0.46728515625,
0.3740234375,
-0.830078125,
1.07421875,
0.300537109375,
-0.859375,
-0.193115234375,
0.37890625,
-0.044677734375,
0.8046875,
0.310546875,
-0.80712890625,
-0.6064453125,
-0.89404296875,
0.420654296875,
-0.93505859375,
-0.2252197265625,
-1.009765625,
-0.6435546875,
-0.4296875,
0.70556640625,
-0.198486328125,
-0.65576171875,
0.147216796875,
-1.0009765625,
-0.0177001953125,
-1.0146484375,
-0.2293701171875,
-0.767578125,
-0.64990234375,
-0.326171875,
1.033203125,
-0.05706787109375,
-0.032379150390625,
0.279541015625,
0.05706787109375,
0.1009521484375,
0.269775390625,
-0.78125,
-0.302001953125,
0.05523681640625,
-0.004871368408203125,
-0.345703125,
-0.07684326171875,
-0.8408203125,
0.66650390625,
-0.84716796875,
0.2113037109375,
-0.20654296875,
-0.039825439453125,
-0.30029296875,
-0.2017822265625,
0.9814453125,
-0.62255859375,
0.33544921875,
-0.413818359375,
0.3798828125,
0.9736328125,
-0.5322265625,
-0.321044921875,
-0.8896484375,
-0.75439453125,
-1.3583984375,
0.6083984375,
-0.3466796875,
0.2578125,
-0.677734375,
-0.630859375,
1.001953125,
-0.8212890625,
0.360107421875,
1.0810546875,
0.0269622802734375,
0.295166015625,
-0.38037109375,
0.76123046875,
0.48193359375,
-0.65087890625,
0.265380859375,
0.380126953125,
-0.6337890625,
-0.138427734375,
-0.59716796875,
-0.9638671875,
-0.56396484375,
0.30029296875,
1.0654296875,
-0.0552978515625,
0.5693359375,
-0.50048828125,
-1.1650390625,
-0.310546875,
0.73876953125,
0.19970703125,
0.335693359375,
1.0693359375,
0.191162109375,
-0.11407470703125,
0.325439453125,
-0.62255859375,
-0.175537109375,
-0.30419921875,
1.22265625,
-0.382080078125,
-0.5947265625,
0.95068359375,
0.76025390625,
-1.1064453125,
-1.0537109375,
-0.1424560546875,
-0.03228759765625,
-0.01140594482421875,
-0.8994140625,
-0.081787109375,
0.4970703125,
-0.4140625,
0.070068359375,
0.278564453125,
-0.07177734375,
0.344482421875,
0.1407470703125,
0.42724609375,
-0.21142578125,
0.353515625,
1.0576171875,
-0.33984375,
-0.69140625,
-0.99169921875,
-0.375244140625,
-0.358154296875,
0.2371826171875,
0.71630859375,
-0.2509765625,
0.396484375,
0.662109375,
-0.054534912109375,
1.087890625,
-0.332275390625,
-0.267333984375,
0.37646484375,
-0.75927734375,
-0.6484375,
0.109130859375,
0.1275634765625,
-0.335205078125,
0.7607421875,
-0.6298828125,
-0.115478515625,
0.26953125,
0.185546875,
-0.4169921875,
-0.94482421875,
-0.2269287109375,
-1.1474609375,
-0.416748046875,
-0.4013671875,
-0.869140625,
-0.0012979507446289062,
0.1624755859375,
0.18603515625,
-0.76513671875,
0.050323486328125,
0.46875,
-0.3466796875,
0.83251953125,
-0.716796875,
0.05841064453125,
-0.47119140625,
-0.40283203125,
-0.640625,
-0.07135009765625,
-0.67578125,
-0.189453125,
-0.5146484375,
0.1513671875,
-0.1485595703125,
0.4775390625,
-0.2431640625,
0.6455078125,
-0.4052734375,
-0.80224609375,
0.30078125,
0.11309814453125,
-0.2734375,
0.92578125,
0.40478515625,
0.060699462890625,
0.525390625,
-0.07769775390625,
-0.130859375,
-0.1746826171875,
0.716796875,
0.51513671875,
-0.1746826171875,
-0.274658203125,
-0.15576171875,
0.0909423828125,
-1.12890625,
0.60498046875,
-0.6103515625,
0.206298828125,
0.294189453125,
-0.386962890625,
0.35546875,
1.041015625,
-0.5380859375,
0.35791015625,
0.043426513671875,
0.15478515625,
0.235595703125,
0.21826171875,
-0.11871337890625,
0.73681640625,
-0.2388916015625,
-0.53271484375,
-0.069580078125,
0.326171875,
-0.06927490234375,
0.406005859375,
-0.276123046875,
-1.1318359375,
-1.123046875,
-0.1337890625,
-0.099609375,
0.177734375,
0.237548828125,
-0.3046875,
0.035675048828125,
0.183837890625,
-0.921875,
0.257568359375,
-1.025390625,
-0.9619140625,
0.7080078125,
-0.1923828125,
-0.406494140625,
0.145751953125,
-0.301513671875,
-0.15087890625,
0.1436767578125,
0.318115234375,
-0.50439453125,
0.436767578125,
-0.1361083984375,
0.6650390625,
-0.322509765625,
-0.128662109375,
-0.00018990039825439453,
0.61865234375,
-0.8876953125,
-0.36669921875,
-0.322021484375,
0.81494140625,
0.07525634765625,
-0.52099609375,
-0.60595703125,
0.1807861328125,
0.2071533203125,
0.2230224609375,
-0.4833984375,
0.2340087890625,
-0.03765869140625,
0.73583984375,
-1.0283203125,
0.0750732421875,
-0.0032711029052734375,
0.27783203125,
-0.0797119140625,
-0.37646484375,
-0.77294921875,
1.041015625,
0.5263671875,
0.1571044921875,
0.6455078125,
0.02569580078125,
0.51953125,
-0.01556396484375,
0.025726318359375,
-0.324462890625,
0.646484375,
0.76220703125,
0.716796875,
-0.1668701171875,
0.4130859375,
0.84130859375,
0.197509765625,
-0.2430419921875,
0.330810546875,
-0.00806427001953125,
-0.1395263671875,
0.323974609375,
-0.25634765625,
-0.25634765625,
-0.07470703125,
-0.425048828125,
0.5556640625,
-0.60546875,
0.02056884765625,
-0.328857421875,
-0.77880859375,
0.8232421875,
-0.44091796875,
-0.2105712890625,
0.37255859375,
-0.18798828125,
0.343017578125,
0.53759765625,
-0.192138671875,
-0.330322265625,
1.13671875,
0.80029296875,
0.56640625,
0.7109375,
0.47998046875,
0.427734375,
-0.54296875,
0.33984375,
0.1468505859375,
-0.05816650390625,
-0.00888824462890625,
-0.61279296875,
-1.3037109375,
0.57373046875,
-0.1942138671875,
-0.139892578125,
0.330078125,
-0.68603515625,
0.267822265625,
-0.55224609375,
1.1572265625,
-0.50390625,
0.177001953125,
0.27880859375,
-0.59912109375,
-0.65576171875,
0.6875,
-0.2049560546875,
0.26806640625,
0.1558837890625,
0.9111328125,
0.054046630859375,
1.751953125,
0.734375,
-0.1922607421875,
0.052978515625,
0.60009765625,
-0.266845703125,
-0.311767578125,
-0.58642578125,
-0.309326171875,
0.013519287109375,
-0.359375,
-0.74267578125,
-0.112548828125,
0.720703125,
0.2322998046875,
-0.84912109375,
-0.41259765625,
0.265869140625,
-0.97216796875,
0.56982421875,
0.1912841796875,
0.477783203125,
0.2099609375,
-0.216552734375,
-0.274658203125,
-0.67529296875,
0.351318359375,
-0.6298828125,
0.3359375,
-0.52685546875,
-0.256103515625,
-0.6796875,
-0.52099609375,
-0.355712890625,
-0.06158447265625,
-0.4970703125,
-0.69921875,
0.64990234375,
0.222412109375,
0.444580078125,
0.443115234375,
-0.346435546875,
0.3076171875,
0.76171875,
0.96728515625,
-0.2919921875,
1.1474609375,
0.27197265625,
-0.0728759765625,
0.08734130859375,
-0.35009765625,
0.3974609375,
-0.0246734619140625,
0.2724609375,
-0.64013671875,
-0.1258544921875,
-0.9951171875,
-1.041015625,
0.291259765625,
0.459228515625,
0.2548828125,
-0.8291015625,
-1.3046875,
-0.2314453125,
-1.1123046875,
-0.3056640625,
-0.732421875,
0.7412109375,
-0.60546875,
-0.038787841796875,
0.11212158203125,
-1.001953125,
4.24609375,
0.833984375,
0.53271484375,
0.1954345703125,
0.243896484375,
0.8564453125,
0.330322265625,
-0.445556640625,
-0.273193359375,
-0.5361328125,
0.59375,
-0.5849609375,
0.025360107421875,
1.0302734375,
0.56494140625,
0.421142578125,
-0.3125,
-0.18212890625,
0.253173828125,
-0.9716796875,
-0.7958984375,
0.329345703125,
0.1148681640625,
0.361328125,
0.1961669921875,
0.447998046875,
0.978515625,
-0.69580078125,
-0.303955078125,
-0.76171875,
0.24951171875,
-0.3076171875,
0.96142578125,
0.195068359375,
-0.0782470703125,
0.8232421875,
-0.09375,
-0.50830078125,
0.01454925537109375,
0.2177734375,
-0.13818359375,
0.2191162109375,
0.58642578125,
-0.66357421875,
-0.4501953125,
0.73046875,
-0.56591796875,
0.60107421875,
0.45751953125,
-1.0400390625,
1.03125,
-0.11376953125,
0.55126953125,
-0.77734375,
-0.599609375,
0.32861328125,
0.1497802734375,
0.059814453125,
-0.36181640625,
0.5556640625,
0.55712890625,
0.66845703125,
-0.0982666015625,
0.716796875,
-1.0390625,
0.47412109375,
-0.08453369140625,
0.5927734375,
-0.473388671875,
0.004817962646484375,
-0.449462890625,
-0.34814453125,
-0.314453125,
-0.63037109375,
0.6064453125,
0.10467529296875,
-0.314453125,
0.78759765625,
0.331787109375,
-0.71142578125,
0.1881103515625,
-0.413330078125,
-0.07647705078125,
-0.4580078125,
0.69921875,
1.1767578125,
-0.46728515625,
0.09368896484375,
-0.23095703125,
0.60888671875,
0.56494140625,
0.88427734375,
-0.08233642578125,
-0.640625,
-0.54736328125
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
This is the hard version of the problem. The difference between the versions is the constraint on n and the required number of operations. You can make hacks only if all versions of the problem are solved.
There are two binary strings a and b of length n (a binary string is a string consisting of symbols 0 and 1). In an operation, you select a prefix of a, and simultaneously invert the bits in the prefix (0 changes to 1 and 1 changes to 0) and reverse the order of the bits in the prefix.
For example, if a=001011 and you select the prefix of length 3, it becomes 011011. Then if you select the entire string, it becomes 001001.
Your task is to transform the string a into b in at most 2n operations. It can be proved that it is always possible.
Input
The first line contains a single integer t (1≤ t≤ 1000) — the number of test cases. Next 3t lines contain descriptions of test cases.
The first line of each test case contains a single integer n (1≤ n≤ 10^5) — the length of the binary strings.
The next two lines contain two binary strings a and b of length n.
It is guaranteed that the sum of n across all test cases does not exceed 10^5.
Output
For each test case, output an integer k (0≤ k≤ 2n), followed by k integers p_1,…,p_k (1≤ p_i≤ n). Here k is the number of operations you use and p_i is the length of the prefix you flip in the i-th operation.
Example
Input
5
2
01
10
5
01011
11100
2
01
01
10
0110011011
1000110100
1
0
1
Output
3 1 2 1
6 5 2 5 3 1 2
0
9 4 1 2 10 4 1 2 1 5
1 1
Note
In the first test case, we have 01→ 11→ 00→ 10.
In the second test case, we have 01011→ 00101→ 11101→ 01000→ 10100→ 00100→ 11100.
In the third test case, the strings are already the same. Another solution is to flip the prefix of length 2, which will leave a unchanged.
Submitted Solution:
```
def flip(a,flip):
if flip%2==0:
return a
else:
if a==1:
return 0
else:
return 1
for _ in range(int(input())):
n = int(input())
a = list(map(int,list(input())))
b = list(map(int,list(input())))
i = 0
j = n-1
ans = []
flipp = 0
while j>=0:
if flip(a[i],flipp)!=b[j]:
ans.append(j+1)
else:
ans.append(1)
ans.append(j+1)
flipp+=1
if i==0:
a.pop(0)
i = j-1
else:
a.pop()
i = 0
j-=1
ans.insert(0,len(ans))
print(*ans)
```
Yes
| 10,134 | [
0.251220703125,
-0.326171875,
-0.2105712890625,
0.023162841796875,
-0.57421875,
-0.66015625,
-0.035675048828125,
-0.10601806640625,
0.026641845703125,
1.076171875,
0.80615234375,
-0.313720703125,
0.20556640625,
-0.98291015625,
-0.56103515625,
0.20654296875,
-0.313232421875,
-0.76220703125,
-0.2135009765625,
-0.50244140625,
-0.0755615234375,
-0.229248046875,
-1.2900390625,
0.0069580078125,
-0.425048828125,
0.75732421875,
0.35595703125,
-0.201416015625,
0.88330078125,
0.96044921875,
-0.465087890625,
-0.56005859375,
0.83251953125,
-0.84619140625,
-0.269287109375,
-0.45458984375,
0.66357421875,
-0.70751953125,
-0.265625,
-0.4560546875,
0.404052734375,
-0.224609375,
0.2415771484375,
-0.70703125,
-1.3271484375,
0.0968017578125,
-0.302978515625,
-0.300048828125,
-0.22705078125,
-0.4013671875,
-0.0261993408203125,
-0.2454833984375,
0.564453125,
-0.085693359375,
0.149169921875,
0.308349609375,
0.268310546875,
-0.47314453125,
-0.51611328125,
0.10516357421875,
0.020965576171875,
0.159423828125,
0.1500244140625,
-0.8095703125,
0.07696533203125,
0.41015625,
-0.2060546875,
-0.44384765625,
-0.2900390625,
-0.8681640625,
-0.271728515625,
-0.10894775390625,
-0.63427734375,
-0.2015380859375,
-0.11480712890625,
0.155517578125,
0.22705078125,
-0.0916748046875,
-1.130859375,
0.91015625,
-0.39599609375,
1.0009765625,
0.1788330078125,
0.228271484375,
-0.529296875,
-0.392578125,
0.201416015625,
0.2626953125,
0.20263671875,
-0.033538818359375,
-0.2763671875,
0.485107421875,
-0.55859375,
-0.026275634765625,
0.451171875,
0.66357421875,
-0.290771484375,
0.324462890625,
0.406494140625,
0.0389404296875,
0.76123046875,
0.99560546875,
-0.216064453125,
1.3662109375,
-0.5126953125,
-0.225341796875,
-0.0830078125,
-0.007266998291015625,
-0.1102294921875,
-0.06341552734375,
-0.1124267578125,
-0.36279296875,
0.6806640625,
0.2216796875,
-0.370361328125,
0.6591796875,
-0.088623046875,
0.6123046875,
-0.83056640625,
0.284912109375,
0.64501953125,
-0.267333984375,
0.74072265625,
-0.248291015625,
0.0478515625,
-0.2061767578125,
-0.494873046875,
1.02734375,
-0.5146484375,
-0.5087890625,
0.215087890625,
-0.0770263671875,
-0.372314453125,
0.35546875,
-0.1478271484375,
0.6708984375,
-0.221923828125,
0.4150390625,
0.63134765625,
-0.5,
0.73388671875,
-0.11029052734375,
-0.09539794921875,
1.8408203125,
0.403076171875,
-0.12078857421875,
0.83056640625,
0.445068359375,
-0.32373046875,
0.619140625,
-0.958984375,
0.424072265625,
0.0831298828125,
0.2274169921875,
-0.239501953125,
-0.057769775390625,
-0.388427734375,
0.51513671875,
0.1707763671875,
0.1588134765625,
-0.074462890625,
0.2666015625,
-0.0439453125,
0.763671875,
-0.1929931640625,
0.9384765625,
-0.434814453125,
-0.4130859375,
-0.169677734375,
-0.54248046875,
0.287109375,
-0.1373291015625,
-0.277099609375,
0.71728515625,
0.57421875,
1.1796875,
1.2958984375,
-0.50537109375,
0.2462158203125,
0.38427734375,
-0.70849609375,
0.09234619140625,
0.6376953125,
0.8974609375,
-0.1982421875,
0.1802978515625,
-0.07452392578125,
-0.328369140625,
-0.36328125,
-0.765625,
-0.1097412109375,
0.853515625,
-0.7724609375,
0.196044921875,
0.07598876953125,
0.164306640625,
-0.783203125,
-0.1883544921875,
-0.1458740234375,
-0.83056640625,
-0.4697265625,
0.50244140625,
-0.252197265625,
0.634765625,
-0.7138671875,
-0.658203125,
0.544921875,
1.0947265625,
-0.285400390625,
0.490966796875,
0.3876953125,
0.349609375,
-0.343505859375,
0.2083740234375,
0.2435302734375,
-0.12646484375,
-0.486572265625,
0.9609375,
0.33154296875,
-0.005214691162109375,
-0.06622314453125,
0.7275390625,
0.48291015625,
0.41748046875,
-0.43798828125,
0.12139892578125,
0.432373046875,
1.3994140625,
0.1397705078125,
0.74853515625,
0.1846923828125,
0.83154296875,
0.64013671875,
0.75537109375,
0.479736328125,
0.214111328125,
0.81005859375,
0.7724609375,
-0.11279296875,
0.3876953125,
0.430908203125,
0.4765625,
0.37744140625,
0.6328125,
0.2958984375,
0.2061767578125,
0.18994140625,
-0.0357666015625,
-0.53515625,
0.3056640625,
-0.44140625,
0.74853515625,
-0.135986328125,
0.35693359375,
-0.2958984375,
-0.4501953125,
0.410888671875,
0.7880859375,
-0.80908203125,
-0.44775390625,
0.26708984375,
0.07049560546875,
0.1387939453125,
-0.0947265625,
0.2880859375,
0.275146484375,
0.46630859375,
0.55859375,
-0.277587890625,
-0.1986083984375,
-1.146484375,
-0.939453125,
-0.98486328125,
-0.5390625,
-0.931640625,
0.0875244140625,
0.07110595703125,
-0.80419921875,
0.306396484375,
-0.68017578125,
-0.168212890625,
0.17333984375,
-0.63818359375,
0.79443359375,
-0.1934814453125,
0.3388671875,
-1.2509765625,
0.8505859375,
0.401123046875,
1.232421875,
-0.69677734375,
0.13134765625,
0.0341796875,
-0.72314453125,
-0.0074462890625,
0.1075439453125,
0.325439453125,
-0.039276123046875,
-0.68212890625,
-0.6083984375,
-0.77734375,
-0.12286376953125,
-0.303955078125,
0.04425048828125,
-0.6025390625,
0.990234375,
0.69384765625,
-0.73681640625,
0.68115234375,
0.8515625,
-0.6162109375,
0.564453125,
0.4423828125,
0.399658203125,
-0.671875,
1.517578125,
0.364501953125,
0.4306640625,
-0.459228515625,
-0.430419921875,
-0.197265625,
-0.0447998046875,
0.1531982421875,
-0.53857421875,
-0.53125,
0.5205078125,
-0.125244140625,
-1.14453125,
0.286376953125,
-0.927734375,
-0.56689453125,
-0.115234375,
-0.935546875,
1.2880859375,
1.1513671875,
-0.04559326171875,
0.01910400390625,
-0.2406005859375,
-0.08087158203125,
0.5947265625,
0.52978515625,
-0.32568359375,
-0.07781982421875,
0.76904296875,
0.1717529296875,
0.238525390625,
0.166748046875,
-0.53564453125,
0.0011005401611328125,
-0.1812744140625,
0.333740234375,
0.5712890625,
0.1591796875,
0.447021484375,
0.208984375,
0.57861328125,
-1.28125,
-0.2008056640625,
-0.38671875,
0.61865234375,
0.39599609375,
0.420654296875,
0.1595458984375,
-0.35107421875,
-0.8623046875,
-0.95947265625,
0.0977783203125,
0.074462890625,
0.75244140625,
-0.61376953125,
0.703125,
0.08636474609375,
-0.403564453125,
0.697265625,
-0.7236328125,
0.1455078125,
0.986328125,
-0.53076171875,
0.77392578125,
-1.1044921875,
0.414306640625,
-0.07470703125,
-0.1116943359375,
0.266357421875,
0.31591796875,
0.5419921875,
-0.4423828125,
-0.330078125,
-0.6015625,
0.1375732421875,
0.02764892578125,
-0.400390625,
-0.03594970703125,
-0.33251953125,
-0.5126953125,
-0.87451171875,
0.43017578125,
0.68896484375,
0.92236328125,
-0.0251007080078125,
0.5185546875,
0.3701171875,
0.33984375,
0.6474609375,
-0.064697265625,
0.2122802734375,
-0.9072265625,
0.7431640625,
0.2431640625,
-0.301025390625,
-0.45263671875,
-0.1932373046875,
-0.280517578125,
0.0286865234375,
-0.14697265625,
-0.2230224609375,
-0.83251953125,
0.548828125,
-0.156982421875,
0.705078125,
-0.59326171875,
-0.055633544921875,
-0.7060546875,
0.298095703125,
0.5673828125,
-0.79443359375,
0.48828125,
-0.90576171875,
0.525390625,
0.62451171875,
-0.28173828125,
-0.399658203125,
-0.5283203125,
-0.89111328125,
-0.73828125,
0.2001953125,
1.0634765625,
-0.1800537109375,
0.463134765625,
-1.419921875,
0.41064453125,
0.40234375,
-0.89990234375,
-0.01554107666015625,
-0.1834716796875,
0.328857421875,
0.20556640625,
0.67919921875,
-0.258544921875,
-0.3251953125,
0.03314208984375,
-1.26171875,
0.42822265625,
-0.6904296875,
0.4521484375,
0.051239013671875,
-0.2088623046875,
0.1190185546875,
0.4208984375,
-0.17333984375,
0.0772705078125,
-0.2012939453125,
0.378173828125,
-1.1064453125,
-0.76318359375,
0.48046875,
-0.08721923828125,
-0.340087890625,
1.01953125,
0.07183837890625,
-0.20703125,
0.1358642578125,
0.3740234375,
-0.495361328125,
0.45068359375,
-0.227783203125,
0.7802734375,
-0.47216796875,
-0.6328125,
-0.47216796875,
-0.29736328125,
0.798828125,
-0.160400390625,
-0.4775390625,
-0.2288818359375,
-1.125,
-0.055694580078125,
0.21826171875,
-0.525390625,
0.1407470703125,
0.053466796875,
0.270751953125,
-0.280517578125,
-0.1357421875,
-0.356689453125,
-0.088134765625,
-0.5302734375,
-0.5888671875,
0.552734375,
0.323974609375,
0.544921875,
0.13720703125,
-0.488037109375,
-0.061981201171875,
0.250732421875,
-0.1409912109375,
-0.69970703125,
-0.280029296875,
-0.26806640625,
-0.298095703125,
-0.6044921875,
0.33203125,
-0.156982421875,
0.37353515625,
1.0166015625,
-0.0081329345703125,
0.5498046875,
0.284423828125,
-0.81884765625,
1.060546875,
0.32080078125,
-0.7890625,
-0.2958984375,
0.35888671875,
-0.03387451171875,
0.74462890625,
0.301513671875,
-0.7314453125,
-0.65576171875,
-0.85693359375,
0.3818359375,
-0.97412109375,
-0.1646728515625,
-0.97998046875,
-0.488037109375,
-0.425048828125,
0.7001953125,
-0.162353515625,
-0.619140625,
0.254150390625,
-0.98974609375,
0.007579803466796875,
-0.9619140625,
-0.218505859375,
-0.70751953125,
-0.623046875,
-0.38671875,
0.9677734375,
-0.0093536376953125,
0.033355712890625,
0.26953125,
0.0723876953125,
0.06463623046875,
0.2215576171875,
-0.77978515625,
-0.283935546875,
0.0214385986328125,
0.0284881591796875,
-0.34521484375,
-0.0202484130859375,
-0.78515625,
0.619140625,
-0.83349609375,
0.1708984375,
-0.125732421875,
-0.057220458984375,
-0.3359375,
-0.18359375,
0.9462890625,
-0.552734375,
0.368896484375,
-0.421875,
0.3349609375,
0.92578125,
-0.61181640625,
-0.328857421875,
-0.8544921875,
-0.6923828125,
-1.4541015625,
0.66357421875,
-0.3486328125,
0.314208984375,
-0.724609375,
-0.72119140625,
1.048828125,
-0.8076171875,
0.315185546875,
1.0869140625,
0.060516357421875,
0.3564453125,
-0.380859375,
0.6328125,
0.479736328125,
-0.66552734375,
0.2257080078125,
0.331298828125,
-0.6162109375,
-0.134033203125,
-0.5673828125,
-0.9736328125,
-0.576171875,
0.40673828125,
1.0048828125,
-0.0238037109375,
0.53271484375,
-0.454833984375,
-1.12109375,
-0.336181640625,
0.60546875,
0.1619873046875,
0.294677734375,
1.099609375,
0.1954345703125,
-0.1383056640625,
0.270751953125,
-0.53955078125,
-0.23583984375,
-0.26953125,
1.1904296875,
-0.29931640625,
-0.61767578125,
1.03125,
0.810546875,
-1.11328125,
-1.01171875,
-0.12493896484375,
-0.053436279296875,
0.06976318359375,
-0.9052734375,
-0.04962158203125,
0.5361328125,
-0.46630859375,
0.1494140625,
0.24267578125,
-0.1614990234375,
0.27978515625,
0.1292724609375,
0.408203125,
-0.29736328125,
0.2039794921875,
1.015625,
-0.345703125,
-0.7880859375,
-0.974609375,
-0.300048828125,
-0.339111328125,
0.2493896484375,
0.61181640625,
-0.252197265625,
0.39599609375,
0.59228515625,
0.030792236328125,
1.0654296875,
-0.272705078125,
-0.290283203125,
0.425048828125,
-0.76806640625,
-0.62548828125,
0.049224853515625,
0.11993408203125,
-0.37548828125,
0.69580078125,
-0.59375,
-0.07940673828125,
0.273193359375,
0.140869140625,
-0.50048828125,
-0.99169921875,
-0.283935546875,
-1.251953125,
-0.434814453125,
-0.37158203125,
-0.884765625,
0.018280029296875,
0.2138671875,
0.2325439453125,
-0.7294921875,
0.09417724609375,
0.54443359375,
-0.295166015625,
0.78271484375,
-0.66748046875,
0.0276641845703125,
-0.453369140625,
-0.337646484375,
-0.50634765625,
-0.0513916015625,
-0.59228515625,
-0.099365234375,
-0.5751953125,
0.147705078125,
-0.1488037109375,
0.56640625,
-0.3525390625,
0.66650390625,
-0.38623046875,
-0.87646484375,
0.2371826171875,
0.1097412109375,
-0.2437744140625,
0.90380859375,
0.3193359375,
0.04681396484375,
0.55810546875,
-0.108642578125,
-0.1865234375,
-0.1834716796875,
0.69140625,
0.52099609375,
-0.197509765625,
-0.2626953125,
-0.0831298828125,
0.007061004638671875,
-1.1298828125,
0.595703125,
-0.62939453125,
0.264404296875,
0.30224609375,
-0.45361328125,
0.3466796875,
1.064453125,
-0.70166015625,
0.41650390625,
0.01076507568359375,
0.116943359375,
0.1861572265625,
0.2432861328125,
-0.12213134765625,
0.72607421875,
-0.205078125,
-0.55322265625,
-0.099365234375,
0.323486328125,
-0.103271484375,
0.42333984375,
-0.2384033203125,
-1.1962890625,
-1.0322265625,
-0.13330078125,
-0.10748291015625,
0.208984375,
0.2001953125,
-0.30615234375,
0.0980224609375,
0.180908203125,
-0.9501953125,
0.33740234375,
-0.9814453125,
-0.919921875,
0.6708984375,
-0.169189453125,
-0.34765625,
0.1602783203125,
-0.263427734375,
-0.174560546875,
0.1978759765625,
0.393310546875,
-0.60205078125,
0.423828125,
-0.06378173828125,
0.66943359375,
-0.28125,
-0.153076171875,
0.0038509368896484375,
0.615234375,
-0.89306640625,
-0.446044921875,
-0.392333984375,
0.8662109375,
0.1197509765625,
-0.525390625,
-0.54541015625,
0.11163330078125,
0.1705322265625,
0.179443359375,
-0.452392578125,
0.1407470703125,
-0.08563232421875,
0.79736328125,
-1.0341796875,
0.08544921875,
0.047821044921875,
0.251953125,
-0.0228729248046875,
-0.425048828125,
-0.740234375,
1.0830078125,
0.509765625,
0.045013427734375,
0.61376953125,
0.040496826171875,
0.52294921875,
-0.06768798828125,
0.0035190582275390625,
-0.280517578125,
0.69287109375,
0.82373046875,
0.69921875,
-0.17138671875,
0.32177734375,
0.81103515625,
0.26171875,
-0.1910400390625,
0.333251953125,
0.06646728515625,
-0.154296875,
0.344482421875,
-0.2374267578125,
-0.2032470703125,
-0.126708984375,
-0.344970703125,
0.5283203125,
-0.5869140625,
-0.003326416015625,
-0.2421875,
-0.7412109375,
0.80029296875,
-0.480712890625,
-0.270263671875,
0.35791015625,
-0.137939453125,
0.344970703125,
0.48828125,
-0.22265625,
-0.352783203125,
1.1748046875,
0.853515625,
0.505859375,
0.75830078125,
0.5556640625,
0.36669921875,
-0.53271484375,
0.36474609375,
0.1373291015625,
-0.015838623046875,
-0.06488037109375,
-0.642578125,
-1.3271484375,
0.68359375,
-0.275390625,
-0.20068359375,
0.343994140625,
-0.72900390625,
0.21875,
-0.6103515625,
1.12890625,
-0.463623046875,
0.29248046875,
0.2216796875,
-0.57763671875,
-0.5986328125,
0.70654296875,
-0.2423095703125,
0.341552734375,
0.134765625,
0.92822265625,
-0.021575927734375,
1.6982421875,
0.75048828125,
-0.1939697265625,
0.0711669921875,
0.58056640625,
-0.327392578125,
-0.28662109375,
-0.64697265625,
-0.36376953125,
-0.046112060546875,
-0.376708984375,
-0.78466796875,
-0.1748046875,
0.8037109375,
0.200927734375,
-0.8740234375,
-0.468505859375,
0.291259765625,
-1.0498046875,
0.55810546875,
0.1937255859375,
0.438232421875,
0.2646484375,
-0.1812744140625,
-0.263671875,
-0.615234375,
0.440185546875,
-0.65185546875,
0.2587890625,
-0.51416015625,
-0.2218017578125,
-0.66650390625,
-0.56298828125,
-0.36279296875,
-0.11346435546875,
-0.5390625,
-0.73876953125,
0.6162109375,
0.225341796875,
0.513671875,
0.429443359375,
-0.385498046875,
0.31787109375,
0.80859375,
0.9443359375,
-0.30078125,
1.1396484375,
0.361083984375,
-0.034210205078125,
0.069580078125,
-0.33251953125,
0.438720703125,
0.054168701171875,
0.309326171875,
-0.59326171875,
-0.1292724609375,
-1.0478515625,
-1.0029296875,
0.28857421875,
0.478759765625,
0.2138671875,
-0.84130859375,
-1.287109375,
-0.28662109375,
-1.125,
-0.2587890625,
-0.658203125,
0.7490234375,
-0.66455078125,
-0.000797271728515625,
0.11065673828125,
-1.017578125,
4.24609375,
0.828125,
0.5009765625,
0.3134765625,
0.203369140625,
0.7998046875,
0.3671875,
-0.395263671875,
-0.26953125,
-0.48095703125,
0.59228515625,
-0.56982421875,
0.10498046875,
1.0234375,
0.487060546875,
0.333984375,
-0.33349609375,
-0.16259765625,
0.28515625,
-0.95068359375,
-0.83740234375,
0.3955078125,
0.1663818359375,
0.377197265625,
0.2349853515625,
0.485595703125,
1.0517578125,
-0.7236328125,
-0.343994140625,
-0.7236328125,
0.173583984375,
-0.395263671875,
0.98828125,
0.242919921875,
-0.0364990234375,
0.8154296875,
0.0157318115234375,
-0.452392578125,
0.07928466796875,
0.277587890625,
-0.1270751953125,
0.317626953125,
0.6103515625,
-0.56494140625,
-0.441162109375,
0.6171875,
-0.58642578125,
0.6630859375,
0.397705078125,
-1.056640625,
1.0009765625,
-0.057769775390625,
0.54736328125,
-0.63916015625,
-0.6181640625,
0.314697265625,
0.1611328125,
0.11163330078125,
-0.360595703125,
0.59375,
0.6142578125,
0.603515625,
-0.1497802734375,
0.74267578125,
-1.0810546875,
0.467529296875,
-0.05889892578125,
0.53515625,
-0.4267578125,
-0.0308685302734375,
-0.40478515625,
-0.3671875,
-0.378173828125,
-0.66845703125,
0.52587890625,
0.146728515625,
-0.3154296875,
0.8310546875,
0.268798828125,
-0.75146484375,
0.2470703125,
-0.386474609375,
-0.0887451171875,
-0.336181640625,
0.732421875,
1.109375,
-0.51904296875,
0.01557159423828125,
-0.25439453125,
0.59912109375,
0.62939453125,
0.84130859375,
-0.0096893310546875,
-0.603515625,
-0.45703125
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
This is the hard version of the problem. The difference between the versions is the constraint on n and the required number of operations. You can make hacks only if all versions of the problem are solved.
There are two binary strings a and b of length n (a binary string is a string consisting of symbols 0 and 1). In an operation, you select a prefix of a, and simultaneously invert the bits in the prefix (0 changes to 1 and 1 changes to 0) and reverse the order of the bits in the prefix.
For example, if a=001011 and you select the prefix of length 3, it becomes 011011. Then if you select the entire string, it becomes 001001.
Your task is to transform the string a into b in at most 2n operations. It can be proved that it is always possible.
Input
The first line contains a single integer t (1≤ t≤ 1000) — the number of test cases. Next 3t lines contain descriptions of test cases.
The first line of each test case contains a single integer n (1≤ n≤ 10^5) — the length of the binary strings.
The next two lines contain two binary strings a and b of length n.
It is guaranteed that the sum of n across all test cases does not exceed 10^5.
Output
For each test case, output an integer k (0≤ k≤ 2n), followed by k integers p_1,…,p_k (1≤ p_i≤ n). Here k is the number of operations you use and p_i is the length of the prefix you flip in the i-th operation.
Example
Input
5
2
01
10
5
01011
11100
2
01
01
10
0110011011
1000110100
1
0
1
Output
3 1 2 1
6 5 2 5 3 1 2
0
9 4 1 2 10 4 1 2 1 5
1 1
Note
In the first test case, we have 01→ 11→ 00→ 10.
In the second test case, we have 01011→ 00101→ 11101→ 01000→ 10100→ 00100→ 11100.
In the third test case, the strings are already the same. Another solution is to flip the prefix of length 2, which will leave a unchanged.
Submitted Solution:
```
from collections import deque
t = int(input())
for _ in range(t):
n = int(input())
a = deque()
b = deque()
for i in input():
a.append(0 if i=='0' else 1)
for i in input():
b.append(0 if i=='0' else 1)
ans = []
rev = 0
while b:
bb = b.pop()
if rev%2==0:
a0 = a[0]
aa = a[-1]
else:
a0 = 1-a[-1]
aa = 1-a[0]
if aa==bb:
if rev%2==0:
a.pop()
else:
a.popleft()
continue
if a0==bb and b:
ans.append(1)
ans.append(len(b)+1)
rev += 1
if rev%2==0:
a.pop()
else:
a.popleft()
print(len(ans), end=' ')
print(*ans)
```
Yes
| 10,135 | [
0.258544921875,
-0.282470703125,
-0.157470703125,
0.0357666015625,
-0.5087890625,
-0.51953125,
-0.01045989990234375,
-0.1474609375,
0.1522216796875,
1.0703125,
0.79150390625,
-0.2257080078125,
0.2166748046875,
-1.00390625,
-0.591796875,
0.2266845703125,
-0.2401123046875,
-0.66845703125,
-0.258544921875,
-0.50732421875,
-0.099853515625,
-0.1719970703125,
-1.361328125,
0.00024962425231933594,
-0.5615234375,
0.78857421875,
0.3740234375,
-0.188720703125,
0.91943359375,
0.9697265625,
-0.4580078125,
-0.49267578125,
0.75048828125,
-0.89990234375,
-0.33349609375,
-0.421142578125,
0.70166015625,
-0.7763671875,
-0.2012939453125,
-0.426513671875,
0.4345703125,
-0.27783203125,
0.2369384765625,
-0.6845703125,
-1.3720703125,
0.0711669921875,
-0.231201171875,
-0.33642578125,
-0.1778564453125,
-0.44921875,
0.05682373046875,
-0.299072265625,
0.6005859375,
-0.04119873046875,
0.08953857421875,
0.27099609375,
0.2122802734375,
-0.4697265625,
-0.478515625,
0.0872802734375,
0.00939178466796875,
0.1566162109375,
0.2269287109375,
-0.7705078125,
0.0240936279296875,
0.37255859375,
-0.2008056640625,
-0.40869140625,
-0.33935546875,
-0.7265625,
-0.278564453125,
-0.119384765625,
-0.70751953125,
-0.1429443359375,
-0.16845703125,
0.2071533203125,
0.11376953125,
-0.1837158203125,
-1.1298828125,
0.83544921875,
-0.3515625,
0.96728515625,
0.2734375,
0.269287109375,
-0.5498046875,
-0.42822265625,
0.130859375,
0.193359375,
0.1317138671875,
-0.0253143310546875,
-0.34326171875,
0.443603515625,
-0.5888671875,
-0.0007305145263671875,
0.4814453125,
0.6494140625,
-0.301025390625,
0.366943359375,
0.474609375,
0.0618896484375,
0.71044921875,
0.982421875,
-0.2476806640625,
1.3837890625,
-0.51123046875,
-0.2205810546875,
-0.0289764404296875,
-0.0162811279296875,
-0.166259765625,
-0.1678466796875,
-0.03228759765625,
-0.35888671875,
0.67431640625,
0.2457275390625,
-0.28662109375,
0.74365234375,
-0.09112548828125,
0.5107421875,
-0.802734375,
0.1719970703125,
0.669921875,
-0.153564453125,
0.826171875,
-0.3193359375,
0.033203125,
-0.240234375,
-0.444091796875,
1.0107421875,
-0.486572265625,
-0.50830078125,
0.230224609375,
-0.03515625,
-0.3759765625,
0.31640625,
-0.111328125,
0.6044921875,
-0.1488037109375,
0.42724609375,
0.697265625,
-0.36279296875,
0.7939453125,
-0.1046142578125,
-0.12451171875,
1.798828125,
0.4375,
-0.042144775390625,
0.7666015625,
0.460693359375,
-0.3779296875,
0.65869140625,
-0.94921875,
0.36474609375,
0.07293701171875,
0.1885986328125,
-0.33984375,
-0.016143798828125,
-0.378662109375,
0.5205078125,
0.25439453125,
0.09100341796875,
-0.1824951171875,
0.292236328125,
-0.00789642333984375,
0.78125,
-0.246337890625,
0.958984375,
-0.416259765625,
-0.399169921875,
-0.18896484375,
-0.49462890625,
0.2132568359375,
-0.1744384765625,
-0.248046875,
0.76708984375,
0.63818359375,
1.1083984375,
1.22265625,
-0.48291015625,
0.2310791015625,
0.354248046875,
-0.63525390625,
0.09820556640625,
0.6083984375,
0.8984375,
-0.1947021484375,
0.30322265625,
-0.07855224609375,
-0.351806640625,
-0.359375,
-0.71923828125,
-0.04022216796875,
0.88134765625,
-0.7490234375,
0.1903076171875,
0.0775146484375,
0.2025146484375,
-0.826171875,
-0.1416015625,
-0.0872802734375,
-0.85693359375,
-0.4130859375,
0.55029296875,
-0.31396484375,
0.5771484375,
-0.69091796875,
-0.646484375,
0.5,
1.13671875,
-0.2344970703125,
0.49609375,
0.4453125,
0.28955078125,
-0.302001953125,
0.26513671875,
0.28125,
-0.19580078125,
-0.44775390625,
0.9345703125,
0.252197265625,
-0.0140533447265625,
-0.173583984375,
0.7412109375,
0.52783203125,
0.466552734375,
-0.339599609375,
0.084716796875,
0.48828125,
1.3154296875,
0.09228515625,
0.76220703125,
0.28564453125,
0.80712890625,
0.59375,
0.79443359375,
0.452392578125,
0.1451416015625,
0.83984375,
0.7431640625,
-0.09002685546875,
0.408447265625,
0.3291015625,
0.53173828125,
0.38916015625,
0.67822265625,
0.2061767578125,
0.192138671875,
0.1346435546875,
-0.06549072265625,
-0.533203125,
0.39794921875,
-0.4267578125,
0.75439453125,
-0.1737060546875,
0.3466796875,
-0.33642578125,
-0.444580078125,
0.35888671875,
0.896484375,
-0.81982421875,
-0.419189453125,
0.16943359375,
0.055511474609375,
0.11669921875,
-0.1597900390625,
0.337158203125,
0.187255859375,
0.434326171875,
0.49462890625,
-0.21875,
-0.1248779296875,
-1.005859375,
-0.88134765625,
-0.95751953125,
-0.464111328125,
-0.90283203125,
0.008575439453125,
0.1082763671875,
-0.7919921875,
0.338134765625,
-0.61865234375,
-0.223876953125,
0.244873046875,
-0.76025390625,
0.76513671875,
-0.2244873046875,
0.346923828125,
-1.2529296875,
0.7236328125,
0.373779296875,
1.1650390625,
-0.7431640625,
0.1474609375,
0.1060791015625,
-0.75,
0.0770263671875,
0.11376953125,
0.344482421875,
0.0261077880859375,
-0.7001953125,
-0.677734375,
-0.689453125,
-0.1455078125,
-0.299072265625,
0.12335205078125,
-0.54833984375,
0.8828125,
0.7197265625,
-0.703125,
0.7041015625,
0.81884765625,
-0.7041015625,
0.5478515625,
0.47998046875,
0.406982421875,
-0.75634765625,
1.51171875,
0.5107421875,
0.43994140625,
-0.5087890625,
-0.32275390625,
-0.26953125,
-0.09649658203125,
0.18359375,
-0.6328125,
-0.56103515625,
0.58056640625,
-0.1976318359375,
-1.046875,
0.308349609375,
-0.93701171875,
-0.5068359375,
-0.2025146484375,
-0.841796875,
1.28515625,
1.072265625,
0.0096893310546875,
-0.0404052734375,
-0.290283203125,
-0.049591064453125,
0.50439453125,
0.5546875,
-0.3388671875,
-0.04534912109375,
0.806640625,
0.26220703125,
0.221435546875,
0.10601806640625,
-0.6640625,
-0.05438232421875,
-0.136962890625,
0.190185546875,
0.56103515625,
0.1219482421875,
0.47021484375,
0.2017822265625,
0.56640625,
-1.236328125,
-0.1915283203125,
-0.412109375,
0.6298828125,
0.56494140625,
0.39111328125,
0.1341552734375,
-0.381591796875,
-0.76806640625,
-0.9443359375,
0.145263671875,
0.10406494140625,
0.74462890625,
-0.6416015625,
0.70068359375,
0.05340576171875,
-0.51611328125,
0.7744140625,
-0.76220703125,
0.11016845703125,
0.966796875,
-0.55419921875,
0.72265625,
-1.0283203125,
0.348876953125,
-0.0548095703125,
-0.1683349609375,
0.290771484375,
0.419189453125,
0.4765625,
-0.408447265625,
-0.29345703125,
-0.5615234375,
0.1055908203125,
0.05328369140625,
-0.40087890625,
0.019500732421875,
-0.386962890625,
-0.469970703125,
-0.8154296875,
0.429931640625,
0.7490234375,
0.9267578125,
-0.08624267578125,
0.5791015625,
0.39111328125,
0.404052734375,
0.6025390625,
-0.07958984375,
0.26123046875,
-0.8818359375,
0.68994140625,
0.303466796875,
-0.1995849609375,
-0.455078125,
-0.262451171875,
-0.2091064453125,
0.04168701171875,
-0.1312255859375,
-0.2568359375,
-0.87744140625,
0.5458984375,
-0.159912109375,
0.7744140625,
-0.59326171875,
-0.024169921875,
-0.67919921875,
0.286376953125,
0.5087890625,
-0.86962890625,
0.42431640625,
-0.91357421875,
0.419189453125,
0.5302734375,
-0.275634765625,
-0.405517578125,
-0.501953125,
-0.89404296875,
-0.76220703125,
0.28125,
1.1142578125,
-0.2138671875,
0.43798828125,
-1.4150390625,
0.35400390625,
0.334716796875,
-0.908203125,
0.0533447265625,
-0.10858154296875,
0.397705078125,
0.1385498046875,
0.70703125,
-0.1744384765625,
-0.2802734375,
0.0350341796875,
-1.1796875,
0.467041015625,
-0.62841796875,
0.54931640625,
0.1419677734375,
-0.209228515625,
0.10186767578125,
0.375,
-0.126953125,
0.0313720703125,
-0.1885986328125,
0.37841796875,
-1.0634765625,
-0.72314453125,
0.58837890625,
-0.15771484375,
-0.347900390625,
1.009765625,
0.058197021484375,
-0.22802734375,
0.250732421875,
0.358642578125,
-0.45751953125,
0.5302734375,
-0.2269287109375,
0.7275390625,
-0.451171875,
-0.62451171875,
-0.3935546875,
-0.296142578125,
0.78857421875,
-0.2261962890625,
-0.41455078125,
-0.19873046875,
-1.1240234375,
-0.1251220703125,
0.2266845703125,
-0.5517578125,
0.1263427734375,
0.113525390625,
0.2222900390625,
-0.21240234375,
-0.043304443359375,
-0.486083984375,
-0.06500244140625,
-0.401123046875,
-0.5458984375,
0.6181640625,
0.41162109375,
0.56494140625,
0.16015625,
-0.5244140625,
-0.11883544921875,
0.2183837890625,
-0.12359619140625,
-0.67236328125,
-0.2763671875,
-0.282958984375,
-0.30908203125,
-0.55224609375,
0.25,
-0.1474609375,
0.309326171875,
0.900390625,
0.00426483154296875,
0.5146484375,
0.283447265625,
-0.83642578125,
1.05078125,
0.238525390625,
-0.8876953125,
-0.301025390625,
0.4609375,
0.049224853515625,
0.7900390625,
0.416748046875,
-0.74609375,
-0.60693359375,
-0.8994140625,
0.421875,
-0.8916015625,
-0.227783203125,
-0.99365234375,
-0.615234375,
-0.393798828125,
0.68408203125,
-0.1881103515625,
-0.63037109375,
0.1923828125,
-1.015625,
0.09320068359375,
-0.89208984375,
-0.232421875,
-0.77587890625,
-0.56103515625,
-0.37841796875,
1.01171875,
0.0035037994384765625,
-0.029541015625,
0.292236328125,
0.059234619140625,
0.12298583984375,
0.32373046875,
-0.79443359375,
-0.29150390625,
0.06005859375,
-0.07733154296875,
-0.33203125,
-0.0086669921875,
-0.72607421875,
0.61083984375,
-0.85498046875,
0.177734375,
-0.1514892578125,
-0.042327880859375,
-0.25439453125,
-0.235595703125,
0.943359375,
-0.60595703125,
0.31005859375,
-0.45458984375,
0.266845703125,
0.86328125,
-0.59521484375,
-0.28564453125,
-0.869140625,
-0.77978515625,
-1.4091796875,
0.671875,
-0.3720703125,
0.247802734375,
-0.66162109375,
-0.6435546875,
1.1279296875,
-0.7978515625,
0.357421875,
1.0859375,
-0.0197906494140625,
0.34033203125,
-0.354736328125,
0.71923828125,
0.36328125,
-0.58740234375,
0.1712646484375,
0.422119140625,
-0.59033203125,
-0.187255859375,
-0.640625,
-0.9970703125,
-0.54052734375,
0.423583984375,
1.0615234375,
-0.1158447265625,
0.5849609375,
-0.38232421875,
-1.23828125,
-0.39794921875,
0.64794921875,
0.2333984375,
0.28857421875,
1.072265625,
0.196533203125,
-0.17333984375,
0.27294921875,
-0.54296875,
-0.258056640625,
-0.30029296875,
1.2138671875,
-0.38134765625,
-0.62841796875,
0.88037109375,
0.72802734375,
-1.0927734375,
-0.984375,
-0.1885986328125,
0.004505157470703125,
-0.0192108154296875,
-0.95166015625,
-0.02496337890625,
0.5439453125,
-0.44287109375,
0.150634765625,
0.244140625,
-0.12890625,
0.2418212890625,
0.1883544921875,
0.463623046875,
-0.168701171875,
0.27392578125,
0.95703125,
-0.379150390625,
-0.7060546875,
-1.0068359375,
-0.443115234375,
-0.292236328125,
0.193359375,
0.7353515625,
-0.3037109375,
0.2998046875,
0.60693359375,
-0.0231170654296875,
1.02734375,
-0.3486328125,
-0.275390625,
0.37353515625,
-0.77490234375,
-0.61083984375,
0.0936279296875,
0.09283447265625,
-0.405029296875,
0.7431640625,
-0.5849609375,
-0.08526611328125,
0.314208984375,
0.1697998046875,
-0.443359375,
-1.0283203125,
-0.267578125,
-1.1787109375,
-0.394287109375,
-0.374755859375,
-0.89013671875,
0.006500244140625,
0.2041015625,
0.2203369140625,
-0.74609375,
0.12481689453125,
0.5556640625,
-0.3173828125,
0.8544921875,
-0.6806640625,
0.00212860107421875,
-0.472900390625,
-0.402587890625,
-0.70556640625,
-0.0806884765625,
-0.556640625,
-0.077880859375,
-0.5244140625,
0.14697265625,
-0.2138671875,
0.5048828125,
-0.269287109375,
0.75,
-0.355712890625,
-0.89990234375,
0.228271484375,
0.061859130859375,
-0.28662109375,
0.8642578125,
0.3720703125,
0.09027099609375,
0.458740234375,
-0.07513427734375,
-0.16259765625,
-0.1871337890625,
0.71484375,
0.4443359375,
-0.1910400390625,
-0.284423828125,
-0.180419921875,
0.0775146484375,
-1.138671875,
0.58154296875,
-0.6435546875,
0.191650390625,
0.26318359375,
-0.32275390625,
0.34326171875,
1.0615234375,
-0.6552734375,
0.4296875,
0.033203125,
0.115234375,
0.232421875,
0.253662109375,
-0.1451416015625,
0.69482421875,
-0.25927734375,
-0.53515625,
-0.1207275390625,
0.274169921875,
-0.162353515625,
0.417724609375,
-0.20068359375,
-1.111328125,
-1.087890625,
-0.221435546875,
0.004047393798828125,
0.177001953125,
0.1805419921875,
-0.224853515625,
0.061187744140625,
0.1953125,
-0.91552734375,
0.288330078125,
-0.9833984375,
-0.9716796875,
0.73046875,
-0.1771240234375,
-0.3203125,
0.156982421875,
-0.258544921875,
-0.16796875,
0.1676025390625,
0.327880859375,
-0.55615234375,
0.472900390625,
-0.1343994140625,
0.625,
-0.3369140625,
-0.21630859375,
-0.0203704833984375,
0.66259765625,
-0.8740234375,
-0.43896484375,
-0.389404296875,
0.86328125,
0.1334228515625,
-0.384033203125,
-0.5576171875,
0.1785888671875,
0.18896484375,
0.24609375,
-0.48779296875,
0.1851806640625,
-0.051971435546875,
0.7822265625,
-0.99853515625,
0.10150146484375,
0.035980224609375,
0.268798828125,
0.00594329833984375,
-0.328125,
-0.77783203125,
1.0068359375,
0.5,
0.1580810546875,
0.67529296875,
0.0975341796875,
0.48291015625,
-0.00038743019104003906,
-0.00836944580078125,
-0.2479248046875,
0.666015625,
0.68408203125,
0.6865234375,
-0.2039794921875,
0.344482421875,
0.78173828125,
0.2496337890625,
-0.2183837890625,
0.339111328125,
0.04669189453125,
-0.11260986328125,
0.299560546875,
-0.215087890625,
-0.2890625,
-0.10003662109375,
-0.3935546875,
0.5947265625,
-0.5693359375,
-0.0226593017578125,
-0.3115234375,
-0.72216796875,
0.810546875,
-0.36328125,
-0.24169921875,
0.330322265625,
-0.189453125,
0.337890625,
0.46923828125,
-0.2005615234375,
-0.295166015625,
1.197265625,
0.76953125,
0.472412109375,
0.77001953125,
0.457763671875,
0.4013671875,
-0.5908203125,
0.3505859375,
0.23046875,
-0.071044921875,
-0.05029296875,
-0.6953125,
-1.314453125,
0.59326171875,
-0.202880859375,
-0.1568603515625,
0.326416015625,
-0.6728515625,
0.22216796875,
-0.560546875,
1.142578125,
-0.53662109375,
0.2294921875,
0.193115234375,
-0.491455078125,
-0.64013671875,
0.751953125,
-0.2196044921875,
0.306884765625,
0.1395263671875,
0.87451171875,
0.08111572265625,
1.6630859375,
0.7431640625,
-0.2200927734375,
0.0178070068359375,
0.5625,
-0.24951171875,
-0.313720703125,
-0.68359375,
-0.3505859375,
-0.005367279052734375,
-0.294921875,
-0.6708984375,
-0.21337890625,
0.74072265625,
0.2169189453125,
-0.88232421875,
-0.42919921875,
0.226806640625,
-1.03515625,
0.59326171875,
0.298828125,
0.44482421875,
0.263916015625,
-0.175537109375,
-0.276611328125,
-0.66796875,
0.415283203125,
-0.7109375,
0.275146484375,
-0.57421875,
-0.24853515625,
-0.6416015625,
-0.5185546875,
-0.3193359375,
-0.08251953125,
-0.53076171875,
-0.77880859375,
0.64990234375,
0.28662109375,
0.43798828125,
0.37548828125,
-0.337158203125,
0.318115234375,
0.76953125,
1.0244140625,
-0.299072265625,
1.1474609375,
0.32373046875,
-0.0101318359375,
0.10247802734375,
-0.289794921875,
0.419189453125,
-0.08575439453125,
0.350341796875,
-0.61181640625,
-0.204833984375,
-0.94921875,
-1,
0.287841796875,
0.472900390625,
0.2435302734375,
-0.93896484375,
-1.2880859375,
-0.2252197265625,
-1.0634765625,
-0.361572265625,
-0.65966796875,
0.75390625,
-0.66015625,
-0.023284912109375,
0.10186767578125,
-1.078125,
4.28125,
0.80078125,
0.55810546875,
0.3251953125,
0.1727294921875,
0.87451171875,
0.393798828125,
-0.4345703125,
-0.2763671875,
-0.421630859375,
0.521484375,
-0.52099609375,
0.10833740234375,
1.0068359375,
0.456298828125,
0.37646484375,
-0.2978515625,
-0.10845947265625,
0.1824951171875,
-0.86572265625,
-0.84765625,
0.356201171875,
0.188232421875,
0.345703125,
0.2247314453125,
0.3486328125,
1,
-0.7138671875,
-0.3037109375,
-0.73583984375,
0.1815185546875,
-0.284912109375,
0.97216796875,
0.2288818359375,
-0.043243408203125,
0.71923828125,
0.01061248779296875,
-0.560546875,
-0.0188751220703125,
0.25048828125,
-0.095458984375,
0.2548828125,
0.650390625,
-0.69921875,
-0.422119140625,
0.6376953125,
-0.6328125,
0.54248046875,
0.408203125,
-1.0087890625,
1.0537109375,
-0.119873046875,
0.60888671875,
-0.763671875,
-0.66455078125,
0.27099609375,
0.104736328125,
0.0201568603515625,
-0.383056640625,
0.58984375,
0.4775390625,
0.63330078125,
-0.08074951171875,
0.68408203125,
-1.03515625,
0.4208984375,
-0.0269012451171875,
0.53271484375,
-0.408447265625,
0.0179443359375,
-0.364990234375,
-0.34619140625,
-0.382568359375,
-0.623046875,
0.58544921875,
0.08721923828125,
-0.37060546875,
0.86767578125,
0.3310546875,
-0.73486328125,
0.2320556640625,
-0.4921875,
-0.1446533203125,
-0.5205078125,
0.7421875,
1.1435546875,
-0.455078125,
0.01788330078125,
-0.2388916015625,
0.56982421875,
0.59326171875,
0.81298828125,
-0.0614013671875,
-0.583984375,
-0.50048828125
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
This is the hard version of the problem. The difference between the versions is the constraint on n and the required number of operations. You can make hacks only if all versions of the problem are solved.
There are two binary strings a and b of length n (a binary string is a string consisting of symbols 0 and 1). In an operation, you select a prefix of a, and simultaneously invert the bits in the prefix (0 changes to 1 and 1 changes to 0) and reverse the order of the bits in the prefix.
For example, if a=001011 and you select the prefix of length 3, it becomes 011011. Then if you select the entire string, it becomes 001001.
Your task is to transform the string a into b in at most 2n operations. It can be proved that it is always possible.
Input
The first line contains a single integer t (1≤ t≤ 1000) — the number of test cases. Next 3t lines contain descriptions of test cases.
The first line of each test case contains a single integer n (1≤ n≤ 10^5) — the length of the binary strings.
The next two lines contain two binary strings a and b of length n.
It is guaranteed that the sum of n across all test cases does not exceed 10^5.
Output
For each test case, output an integer k (0≤ k≤ 2n), followed by k integers p_1,…,p_k (1≤ p_i≤ n). Here k is the number of operations you use and p_i is the length of the prefix you flip in the i-th operation.
Example
Input
5
2
01
10
5
01011
11100
2
01
01
10
0110011011
1000110100
1
0
1
Output
3 1 2 1
6 5 2 5 3 1 2
0
9 4 1 2 10 4 1 2 1 5
1 1
Note
In the first test case, we have 01→ 11→ 00→ 10.
In the second test case, we have 01011→ 00101→ 11101→ 01000→ 10100→ 00100→ 11100.
In the third test case, the strings are already the same. Another solution is to flip the prefix of length 2, which will leave a unchanged.
Submitted Solution:
```
def helper(s):
ans = []
s = '0' + s
for i in range(1,len(s)):
if s[i]!=s[i-1]:
ans.append(i)
return ans
t = int(input())
for l in range(t):
n = int(input())
a = input()
b = input()
a1 = helper(a)
a2 = helper(b)
a = a1+a2[::-1]
print(len(a),end = " ")
for i in a:
print(i,end=" ")
print()
```
No
| 10,136 | [
0.28857421875,
-0.34912109375,
-0.152099609375,
0.062744140625,
-0.521484375,
-0.60400390625,
0.00437164306640625,
-0.1041259765625,
0.096435546875,
1.0556640625,
0.814453125,
-0.252197265625,
0.239990234375,
-1.0517578125,
-0.5830078125,
0.20361328125,
-0.277099609375,
-0.68505859375,
-0.189697265625,
-0.572265625,
-0.1041259765625,
-0.194580078125,
-1.3310546875,
0.002407073974609375,
-0.48876953125,
0.7568359375,
0.431884765625,
-0.1358642578125,
0.8818359375,
0.94873046875,
-0.50244140625,
-0.51123046875,
0.7685546875,
-0.884765625,
-0.338134765625,
-0.38623046875,
0.7197265625,
-0.77783203125,
-0.2509765625,
-0.455810546875,
0.417724609375,
-0.27978515625,
0.27783203125,
-0.72021484375,
-1.376953125,
0.1070556640625,
-0.272705078125,
-0.318359375,
-0.1903076171875,
-0.419921875,
0.050689697265625,
-0.28955078125,
0.60888671875,
-0.050018310546875,
0.1353759765625,
0.31689453125,
0.29931640625,
-0.4453125,
-0.4931640625,
0.119140625,
0.034332275390625,
0.164306640625,
0.2171630859375,
-0.77978515625,
0.0960693359375,
0.41943359375,
-0.2216796875,
-0.43701171875,
-0.2900390625,
-0.80908203125,
-0.282958984375,
-0.099853515625,
-0.65966796875,
-0.1650390625,
-0.070556640625,
0.1893310546875,
0.1640625,
-0.12646484375,
-1.048828125,
0.88037109375,
-0.42626953125,
1.021484375,
0.299072265625,
0.2269287109375,
-0.5498046875,
-0.44677734375,
0.1749267578125,
0.232177734375,
0.1968994140625,
-0.078857421875,
-0.310546875,
0.47216796875,
-0.603515625,
-0.0180511474609375,
0.437744140625,
0.6591796875,
-0.350341796875,
0.336181640625,
0.404296875,
0.04150390625,
0.75244140625,
0.955078125,
-0.2099609375,
1.357421875,
-0.5263671875,
-0.222900390625,
-0.03863525390625,
-0.01349639892578125,
-0.1243896484375,
-0.07513427734375,
-0.05029296875,
-0.37353515625,
0.697265625,
0.271484375,
-0.34326171875,
0.73193359375,
-0.05792236328125,
0.51806640625,
-0.8759765625,
0.3056640625,
0.6552734375,
-0.2254638671875,
0.7861328125,
-0.2880859375,
-0.0033416748046875,
-0.281982421875,
-0.47705078125,
1.0361328125,
-0.478759765625,
-0.53076171875,
0.2191162109375,
-0.07025146484375,
-0.38720703125,
0.31982421875,
-0.162353515625,
0.58544921875,
-0.109619140625,
0.35546875,
0.7041015625,
-0.403564453125,
0.796875,
-0.128662109375,
-0.14990234375,
1.826171875,
0.419677734375,
-0.0648193359375,
0.7998046875,
0.434814453125,
-0.400634765625,
0.61669921875,
-1.00390625,
0.42626953125,
0.07135009765625,
0.205078125,
-0.311767578125,
-0.01497650146484375,
-0.387939453125,
0.456298828125,
0.248291015625,
0.07373046875,
-0.09344482421875,
0.30517578125,
-0.08636474609375,
0.85009765625,
-0.205322265625,
0.9375,
-0.428466796875,
-0.375732421875,
-0.218994140625,
-0.53076171875,
0.265380859375,
-0.1998291015625,
-0.25634765625,
0.72119140625,
0.6435546875,
1.1630859375,
1.244140625,
-0.464599609375,
0.259765625,
0.35546875,
-0.701171875,
0.016326904296875,
0.6123046875,
0.91796875,
-0.2034912109375,
0.251708984375,
-0.06195068359375,
-0.2978515625,
-0.314208984375,
-0.78515625,
-0.044036865234375,
0.84619140625,
-0.73486328125,
0.248046875,
0.07623291015625,
0.186767578125,
-0.79833984375,
-0.1759033203125,
-0.1168212890625,
-0.837890625,
-0.412841796875,
0.50634765625,
-0.328125,
0.59716796875,
-0.75146484375,
-0.6611328125,
0.5302734375,
1.169921875,
-0.2138671875,
0.501953125,
0.459716796875,
0.345947265625,
-0.273193359375,
0.2059326171875,
0.225341796875,
-0.1907958984375,
-0.4970703125,
0.97265625,
0.27978515625,
-0.054412841796875,
-0.09832763671875,
0.6943359375,
0.4912109375,
0.43701171875,
-0.393310546875,
0.007080078125,
0.483154296875,
1.376953125,
0.0233917236328125,
0.7763671875,
0.2314453125,
0.775390625,
0.64208984375,
0.83154296875,
0.4267578125,
0.2054443359375,
0.8876953125,
0.73828125,
-0.05419921875,
0.373779296875,
0.3759765625,
0.45751953125,
0.37646484375,
0.6728515625,
0.287109375,
0.189208984375,
0.1322021484375,
-0.06201171875,
-0.50927734375,
0.293212890625,
-0.44677734375,
0.79443359375,
-0.1588134765625,
0.419677734375,
-0.3056640625,
-0.413330078125,
0.421875,
0.85888671875,
-0.8369140625,
-0.469970703125,
0.1937255859375,
0.047088623046875,
0.1268310546875,
-0.189697265625,
0.369140625,
0.2362060546875,
0.446533203125,
0.5205078125,
-0.270263671875,
-0.1866455078125,
-1.0732421875,
-0.88671875,
-0.986328125,
-0.52001953125,
-0.92431640625,
0.008392333984375,
0.049835205078125,
-0.81298828125,
0.288818359375,
-0.63916015625,
-0.1805419921875,
0.265869140625,
-0.73095703125,
0.7333984375,
-0.253173828125,
0.318115234375,
-1.2685546875,
0.78271484375,
0.372314453125,
1.1845703125,
-0.7724609375,
0.1829833984375,
0.092529296875,
-0.7275390625,
0.054046630859375,
0.1083984375,
0.3310546875,
0.07879638671875,
-0.736328125,
-0.64453125,
-0.708984375,
-0.1610107421875,
-0.29736328125,
0.1053466796875,
-0.5625,
0.92236328125,
0.7724609375,
-0.7265625,
0.7177734375,
0.87939453125,
-0.68359375,
0.6259765625,
0.456787109375,
0.3642578125,
-0.73046875,
1.509765625,
0.466064453125,
0.413330078125,
-0.443359375,
-0.414306640625,
-0.1953125,
-0.09063720703125,
0.1787109375,
-0.50927734375,
-0.5712890625,
0.552734375,
-0.1612548828125,
-1.0673828125,
0.354248046875,
-0.92138671875,
-0.54345703125,
-0.2169189453125,
-0.9208984375,
1.2861328125,
1.06640625,
-0.0209808349609375,
-0.01064300537109375,
-0.287109375,
-0.0975341796875,
0.52587890625,
0.53369140625,
-0.34326171875,
0.01395416259765625,
0.8310546875,
0.294189453125,
0.218994140625,
0.1944580078125,
-0.61083984375,
-0.0570068359375,
-0.133544921875,
0.335205078125,
0.6220703125,
0.13720703125,
0.456298828125,
0.2314453125,
0.5791015625,
-1.2294921875,
-0.195068359375,
-0.42724609375,
0.59619140625,
0.488525390625,
0.383056640625,
0.18603515625,
-0.355224609375,
-0.77734375,
-0.9931640625,
0.103515625,
0.062103271484375,
0.7548828125,
-0.61767578125,
0.69384765625,
0.006992340087890625,
-0.515625,
0.7158203125,
-0.7060546875,
0.1387939453125,
0.962890625,
-0.496337890625,
0.796875,
-1.076171875,
0.391845703125,
-0.0128326416015625,
-0.180419921875,
0.254150390625,
0.32080078125,
0.54248046875,
-0.447265625,
-0.3583984375,
-0.62060546875,
0.0804443359375,
0.06640625,
-0.35791015625,
-0.03887939453125,
-0.358642578125,
-0.417724609375,
-0.88232421875,
0.4267578125,
0.68994140625,
0.94482421875,
0.01751708984375,
0.58056640625,
0.3232421875,
0.4033203125,
0.634765625,
-0.074951171875,
0.2369384765625,
-0.9658203125,
0.8232421875,
0.273681640625,
-0.212646484375,
-0.5517578125,
-0.2333984375,
-0.2137451171875,
0.03021240234375,
-0.2047119140625,
-0.261474609375,
-0.86767578125,
0.49853515625,
-0.169921875,
0.7412109375,
-0.642578125,
-0.0810546875,
-0.6953125,
0.3623046875,
0.564453125,
-0.8681640625,
0.471923828125,
-0.908203125,
0.4541015625,
0.59619140625,
-0.276611328125,
-0.413330078125,
-0.5888671875,
-0.8662109375,
-0.744140625,
0.25244140625,
1.0166015625,
-0.24267578125,
0.498779296875,
-1.380859375,
0.420654296875,
0.379150390625,
-0.97021484375,
0.0286102294921875,
-0.1641845703125,
0.404052734375,
0.20654296875,
0.77197265625,
-0.2159423828125,
-0.341796875,
-0.004558563232421875,
-1.2001953125,
0.44775390625,
-0.64404296875,
0.576171875,
0.14013671875,
-0.217529296875,
0.1220703125,
0.37841796875,
-0.093505859375,
0.0780029296875,
-0.21728515625,
0.357421875,
-1.0751953125,
-0.7314453125,
0.49951171875,
-0.0693359375,
-0.373046875,
1.0283203125,
0.07379150390625,
-0.2032470703125,
0.1689453125,
0.37451171875,
-0.436279296875,
0.5361328125,
-0.275390625,
0.7490234375,
-0.5078125,
-0.607421875,
-0.50048828125,
-0.324462890625,
0.732421875,
-0.1920166015625,
-0.444091796875,
-0.1824951171875,
-1.166015625,
-0.1016845703125,
0.2269287109375,
-0.5693359375,
0.2279052734375,
0.11590576171875,
0.282470703125,
-0.2509765625,
-0.11810302734375,
-0.44091796875,
-0.0675048828125,
-0.45654296875,
-0.61328125,
0.5703125,
0.3779296875,
0.5986328125,
0.1474609375,
-0.453125,
-0.08868408203125,
0.18798828125,
-0.1317138671875,
-0.6708984375,
-0.28271484375,
-0.289794921875,
-0.282470703125,
-0.54296875,
0.303466796875,
-0.12152099609375,
0.423828125,
0.98779296875,
-0.0401611328125,
0.5654296875,
0.26513671875,
-0.8642578125,
1.12109375,
0.308837890625,
-0.82666015625,
-0.29248046875,
0.40869140625,
0.0282440185546875,
0.81689453125,
0.30712890625,
-0.76416015625,
-0.611328125,
-0.91455078125,
0.424072265625,
-0.955078125,
-0.226806640625,
-0.9736328125,
-0.5771484375,
-0.433837890625,
0.71533203125,
-0.1514892578125,
-0.64306640625,
0.1788330078125,
-0.9951171875,
-0.0015811920166015625,
-0.96044921875,
-0.2286376953125,
-0.76416015625,
-0.57568359375,
-0.314208984375,
1.0009765625,
-0.01629638671875,
-0.034637451171875,
0.290771484375,
0.0738525390625,
0.07318115234375,
0.25341796875,
-0.77685546875,
-0.308349609375,
0.05413818359375,
-0.06121826171875,
-0.334228515625,
-0.050537109375,
-0.7763671875,
0.62451171875,
-0.86474609375,
0.2197265625,
-0.129638671875,
-0.043731689453125,
-0.318359375,
-0.23583984375,
1.0078125,
-0.59716796875,
0.327392578125,
-0.4365234375,
0.3076171875,
0.92236328125,
-0.5703125,
-0.354248046875,
-0.88623046875,
-0.7734375,
-1.4306640625,
0.6181640625,
-0.345947265625,
0.263671875,
-0.658203125,
-0.6865234375,
1.08203125,
-0.75390625,
0.352783203125,
1.09375,
0.0728759765625,
0.33837890625,
-0.37158203125,
0.697265625,
0.465576171875,
-0.634765625,
0.2435302734375,
0.355712890625,
-0.671875,
-0.1614990234375,
-0.59765625,
-0.9599609375,
-0.572265625,
0.353759765625,
1.0146484375,
-0.05126953125,
0.5751953125,
-0.44482421875,
-1.208984375,
-0.34814453125,
0.6845703125,
0.1729736328125,
0.31005859375,
1.0576171875,
0.2099609375,
-0.15869140625,
0.254638671875,
-0.60009765625,
-0.227783203125,
-0.290771484375,
1.2431640625,
-0.372314453125,
-0.59130859375,
0.9609375,
0.80029296875,
-1.0712890625,
-0.97607421875,
-0.1201171875,
-0.0107269287109375,
-0.0196990966796875,
-0.93115234375,
-0.05914306640625,
0.477294921875,
-0.43994140625,
0.103271484375,
0.207275390625,
-0.11773681640625,
0.29638671875,
0.1658935546875,
0.40771484375,
-0.2222900390625,
0.292236328125,
1.0517578125,
-0.351318359375,
-0.7470703125,
-1.001953125,
-0.4189453125,
-0.361328125,
0.2479248046875,
0.6943359375,
-0.220703125,
0.32861328125,
0.6728515625,
-0.029205322265625,
1.052734375,
-0.32763671875,
-0.2529296875,
0.369873046875,
-0.70361328125,
-0.59130859375,
0.091796875,
0.1173095703125,
-0.3642578125,
0.70556640625,
-0.625,
-0.067138671875,
0.280029296875,
0.1534423828125,
-0.41748046875,
-1.0107421875,
-0.27294921875,
-1.1953125,
-0.44775390625,
-0.45947265625,
-0.89501953125,
-0.0079345703125,
0.1365966796875,
0.24072265625,
-0.7265625,
0.07342529296875,
0.52880859375,
-0.375732421875,
0.80810546875,
-0.689453125,
0.03656005859375,
-0.462890625,
-0.420166015625,
-0.6416015625,
-0.07696533203125,
-0.5966796875,
-0.08148193359375,
-0.560546875,
0.191162109375,
-0.1578369140625,
0.5361328125,
-0.302978515625,
0.64013671875,
-0.400390625,
-0.798828125,
0.29931640625,
0.0823974609375,
-0.258544921875,
0.89990234375,
0.36865234375,
0.04864501953125,
0.515625,
-0.1029052734375,
-0.1212158203125,
-0.180419921875,
0.72998046875,
0.498046875,
-0.25048828125,
-0.281005859375,
-0.10235595703125,
0.08612060546875,
-1.173828125,
0.591796875,
-0.60205078125,
0.1839599609375,
0.26220703125,
-0.355224609375,
0.3515625,
1.1181640625,
-0.62841796875,
0.39404296875,
0.04827880859375,
0.1431884765625,
0.2203369140625,
0.256103515625,
-0.1016845703125,
0.71142578125,
-0.259521484375,
-0.54150390625,
-0.1048583984375,
0.245849609375,
-0.11676025390625,
0.400634765625,
-0.2493896484375,
-1.1767578125,
-1.0810546875,
-0.1668701171875,
-0.1146240234375,
0.251220703125,
0.2193603515625,
-0.269775390625,
0.037139892578125,
0.1912841796875,
-0.93212890625,
0.308349609375,
-1.087890625,
-0.96142578125,
0.74169921875,
-0.151123046875,
-0.376708984375,
0.1915283203125,
-0.2529296875,
-0.1287841796875,
0.1727294921875,
0.366455078125,
-0.55908203125,
0.416748046875,
-0.1572265625,
0.64697265625,
-0.287353515625,
-0.1817626953125,
-0.00885772705078125,
0.71923828125,
-0.923828125,
-0.400146484375,
-0.381103515625,
0.7900390625,
0.1048583984375,
-0.455322265625,
-0.56103515625,
0.132568359375,
0.18505859375,
0.2315673828125,
-0.45849609375,
0.1800537109375,
-0.059722900390625,
0.794921875,
-1.0400390625,
0.1048583984375,
-0.0112762451171875,
0.25146484375,
-0.0219879150390625,
-0.364501953125,
-0.76025390625,
1.052734375,
0.54833984375,
0.09796142578125,
0.6435546875,
0.0269622802734375,
0.50341796875,
-0.039520263671875,
0.0015554428100585938,
-0.266845703125,
0.71826171875,
0.75341796875,
0.69287109375,
-0.1875,
0.375732421875,
0.8251953125,
0.29150390625,
-0.2198486328125,
0.389892578125,
0.0224609375,
-0.08709716796875,
0.299072265625,
-0.2294921875,
-0.259033203125,
-0.114013671875,
-0.39501953125,
0.55419921875,
-0.56982421875,
0.0035037994384765625,
-0.3125,
-0.76904296875,
0.82177734375,
-0.4326171875,
-0.2215576171875,
0.36669921875,
-0.181640625,
0.381103515625,
0.49658203125,
-0.255126953125,
-0.3564453125,
1.169921875,
0.80224609375,
0.517578125,
0.75048828125,
0.43115234375,
0.421630859375,
-0.59033203125,
0.303466796875,
0.1842041015625,
-0.0875244140625,
0.00853729248046875,
-0.68359375,
-1.3134765625,
0.580078125,
-0.1927490234375,
-0.1845703125,
0.342041015625,
-0.728515625,
0.272705078125,
-0.5322265625,
1.11328125,
-0.52197265625,
0.265380859375,
0.285888671875,
-0.5615234375,
-0.6416015625,
0.72021484375,
-0.236083984375,
0.279296875,
0.1390380859375,
0.9287109375,
0.08575439453125,
1.712890625,
0.7353515625,
-0.1927490234375,
0.07623291015625,
0.61572265625,
-0.268798828125,
-0.312744140625,
-0.5888671875,
-0.3779296875,
-0.046234130859375,
-0.3583984375,
-0.73193359375,
-0.1904296875,
0.7509765625,
0.21044921875,
-0.90771484375,
-0.440673828125,
0.3017578125,
-1.0146484375,
0.556640625,
0.2083740234375,
0.42333984375,
0.29296875,
-0.2166748046875,
-0.296142578125,
-0.6357421875,
0.431640625,
-0.65185546875,
0.30908203125,
-0.55712890625,
-0.22705078125,
-0.69091796875,
-0.5517578125,
-0.354736328125,
-0.0809326171875,
-0.5439453125,
-0.72265625,
0.634765625,
0.268798828125,
0.455810546875,
0.427490234375,
-0.3623046875,
0.287841796875,
0.841796875,
0.9775390625,
-0.300537109375,
1.1611328125,
0.3623046875,
-0.040435791015625,
0.061248779296875,
-0.362060546875,
0.39306640625,
-0.01922607421875,
0.313720703125,
-0.56494140625,
-0.1429443359375,
-0.9912109375,
-1.052734375,
0.307861328125,
0.467041015625,
0.222412109375,
-0.81884765625,
-1.2978515625,
-0.2408447265625,
-1.119140625,
-0.338134765625,
-0.697265625,
0.79638671875,
-0.65380859375,
-0.03912353515625,
0.08551025390625,
-1.0302734375,
4.21875,
0.83349609375,
0.4951171875,
0.290283203125,
0.250244140625,
0.8583984375,
0.3828125,
-0.435546875,
-0.2447509765625,
-0.493408203125,
0.55419921875,
-0.5419921875,
0.0260772705078125,
1.0361328125,
0.50537109375,
0.391357421875,
-0.332275390625,
-0.1578369140625,
0.241943359375,
-0.95263671875,
-0.84033203125,
0.34814453125,
0.1778564453125,
0.371826171875,
0.2166748046875,
0.381103515625,
1.0078125,
-0.6533203125,
-0.3359375,
-0.78515625,
0.2320556640625,
-0.357666015625,
0.97216796875,
0.284423828125,
-0.07763671875,
0.771484375,
-0.00042819976806640625,
-0.5546875,
-0.03948974609375,
0.2132568359375,
-0.131591796875,
0.2388916015625,
0.58984375,
-0.6357421875,
-0.44677734375,
0.68115234375,
-0.5947265625,
0.6259765625,
0.467529296875,
-1.0703125,
1.0146484375,
-0.1107177734375,
0.59814453125,
-0.77734375,
-0.64208984375,
0.30419921875,
0.16064453125,
0.0748291015625,
-0.357177734375,
0.5517578125,
0.55517578125,
0.67626953125,
-0.1236572265625,
0.6962890625,
-1.068359375,
0.407958984375,
-0.063232421875,
0.53466796875,
-0.45947265625,
0.0677490234375,
-0.429443359375,
-0.3828125,
-0.31005859375,
-0.6611328125,
0.60986328125,
0.10760498046875,
-0.35595703125,
0.8115234375,
0.31494140625,
-0.74560546875,
0.2147216796875,
-0.42724609375,
-0.0743408203125,
-0.39892578125,
0.6943359375,
1.1552734375,
-0.473388671875,
0.0762939453125,
-0.240234375,
0.60888671875,
0.58740234375,
0.81591796875,
-0.1014404296875,
-0.59912109375,
-0.484130859375
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
This is the hard version of the problem. The difference between the versions is the constraint on n and the required number of operations. You can make hacks only if all versions of the problem are solved.
There are two binary strings a and b of length n (a binary string is a string consisting of symbols 0 and 1). In an operation, you select a prefix of a, and simultaneously invert the bits in the prefix (0 changes to 1 and 1 changes to 0) and reverse the order of the bits in the prefix.
For example, if a=001011 and you select the prefix of length 3, it becomes 011011. Then if you select the entire string, it becomes 001001.
Your task is to transform the string a into b in at most 2n operations. It can be proved that it is always possible.
Input
The first line contains a single integer t (1≤ t≤ 1000) — the number of test cases. Next 3t lines contain descriptions of test cases.
The first line of each test case contains a single integer n (1≤ n≤ 10^5) — the length of the binary strings.
The next two lines contain two binary strings a and b of length n.
It is guaranteed that the sum of n across all test cases does not exceed 10^5.
Output
For each test case, output an integer k (0≤ k≤ 2n), followed by k integers p_1,…,p_k (1≤ p_i≤ n). Here k is the number of operations you use and p_i is the length of the prefix you flip in the i-th operation.
Example
Input
5
2
01
10
5
01011
11100
2
01
01
10
0110011011
1000110100
1
0
1
Output
3 1 2 1
6 5 2 5 3 1 2
0
9 4 1 2 10 4 1 2 1 5
1 1
Note
In the first test case, we have 01→ 11→ 00→ 10.
In the second test case, we have 01011→ 00101→ 11101→ 01000→ 10100→ 00100→ 11100.
In the third test case, the strings are already the same. Another solution is to flip the prefix of length 2, which will leave a unchanged.
Submitted Solution:
```
def solve(s):
new = ""
for i in s:
if i=="1":
new += "0"
else:
new += "1"
return new[::-1]
for nt in range(int(input())):
n = int(input())
a = input()
b = input()
ans = []
i = 1
count = 0
while i<n:
if i+1<n:
if a[i]!=b[i] and a[i+1]!=b[i+1]:
if a[i]==a[i+1]:
ans.append(i+2)
ans.append(2)
ans.append(i+2)
else:
ans.append(i+2)
ans.append(1)
ans.append(2)
ans.append(1)
ans.append(i+2)
i += 2
elif a[i]==b[i] and a[i+1]!=b[i+1]:
i += 1
elif a[i]!=b[i] and a[i+1]==b[i+1]:
ans.append(i+1)
ans.append(1)
ans.append(i+1)
i += 2
else:
i += 2
else:
if a[i]!=b[i]:
ans.append(i+1)
ans.append(1)
ans.append(i+1)
break
if a[0]!=b[0]:
ans.append(1)
print (len(ans),end = " ")
print (*ans)
# def solve(s):
# new = ""
# for i in s:
# if i=="1":
# new += "0"
# else:
# new += "1"
# return new[::-1]
# for nt in range(int(input())):
# n = int(input())
# a = input()
# b = input()
# ans = []
# for i in range(n-1,-1,-1):
# print (a,i,a[i])
# if a[i]!=b[i]:
# if a[i]==a[0]:
# ans.append(i+1)
# a = solve(a[0:i+1]) + a[i+1:]
# else:
# ans.append(1)
# ans.append(i+1)
# a = solve(a[i]+a[1:i+1]) + a[i+1:]
# print (len(ans),end = " ")
# print (*ans)
```
No
| 10,137 | [
0.2763671875,
-0.330810546875,
-0.1551513671875,
0.07672119140625,
-0.5322265625,
-0.6044921875,
-0.03057861328125,
-0.09906005859375,
0.09320068359375,
1.03125,
0.79296875,
-0.2479248046875,
0.2337646484375,
-0.99755859375,
-0.58203125,
0.218994140625,
-0.2802734375,
-0.67919921875,
-0.1943359375,
-0.53515625,
-0.08905029296875,
-0.1939697265625,
-1.353515625,
0.036956787109375,
-0.498046875,
0.779296875,
0.387939453125,
-0.129150390625,
0.853515625,
0.96826171875,
-0.49072265625,
-0.5068359375,
0.76513671875,
-0.88525390625,
-0.306396484375,
-0.3818359375,
0.7119140625,
-0.76171875,
-0.271484375,
-0.464599609375,
0.37548828125,
-0.2452392578125,
0.25830078125,
-0.7138671875,
-1.37109375,
0.076171875,
-0.25341796875,
-0.307861328125,
-0.21142578125,
-0.4013671875,
0.053131103515625,
-0.296142578125,
0.62255859375,
-0.07501220703125,
0.1689453125,
0.3447265625,
0.276123046875,
-0.433349609375,
-0.50830078125,
0.08709716796875,
0.04833984375,
0.1690673828125,
0.196533203125,
-0.75439453125,
0.07855224609375,
0.383544921875,
-0.2093505859375,
-0.41259765625,
-0.263427734375,
-0.7294921875,
-0.27099609375,
-0.08697509765625,
-0.63671875,
-0.12091064453125,
-0.102294921875,
0.1883544921875,
0.1368408203125,
-0.1033935546875,
-1.0556640625,
0.87255859375,
-0.4345703125,
1.0498046875,
0.262451171875,
0.200439453125,
-0.53076171875,
-0.429931640625,
0.1649169921875,
0.23974609375,
0.235107421875,
-0.08502197265625,
-0.3193359375,
0.465576171875,
-0.609375,
0.0105438232421875,
0.45849609375,
0.64599609375,
-0.349365234375,
0.344970703125,
0.405517578125,
0.04107666015625,
0.75146484375,
0.96337890625,
-0.246337890625,
1.357421875,
-0.53369140625,
-0.232177734375,
-0.08056640625,
0.01371002197265625,
-0.1041259765625,
-0.0487060546875,
-0.04730224609375,
-0.390869140625,
0.67041015625,
0.2498779296875,
-0.315673828125,
0.68798828125,
-0.08526611328125,
0.53076171875,
-0.85302734375,
0.2496337890625,
0.65087890625,
-0.2374267578125,
0.78271484375,
-0.2442626953125,
0.007801055908203125,
-0.2744140625,
-0.52685546875,
1.048828125,
-0.480712890625,
-0.51611328125,
0.254150390625,
-0.05596923828125,
-0.37548828125,
0.29443359375,
-0.168212890625,
0.60986328125,
-0.135009765625,
0.383056640625,
0.7001953125,
-0.394287109375,
0.7919921875,
-0.126220703125,
-0.1256103515625,
1.8173828125,
0.403564453125,
-0.051666259765625,
0.81201171875,
0.44580078125,
-0.4208984375,
0.58154296875,
-0.9638671875,
0.413330078125,
0.046539306640625,
0.2030029296875,
-0.305419921875,
-0.00984954833984375,
-0.38818359375,
0.427001953125,
0.27783203125,
0.07208251953125,
-0.0927734375,
0.311279296875,
-0.08807373046875,
0.8349609375,
-0.214111328125,
0.93359375,
-0.403564453125,
-0.3876953125,
-0.233154296875,
-0.51953125,
0.282958984375,
-0.2119140625,
-0.2529296875,
0.7587890625,
0.6025390625,
1.138671875,
1.2685546875,
-0.43310546875,
0.267578125,
0.3154296875,
-0.64208984375,
0.0002034902572631836,
0.65771484375,
0.9375,
-0.1922607421875,
0.2861328125,
-0.08648681640625,
-0.277587890625,
-0.346435546875,
-0.7578125,
-0.046875,
0.818359375,
-0.77197265625,
0.28515625,
0.07171630859375,
0.1798095703125,
-0.80810546875,
-0.2142333984375,
-0.0911865234375,
-0.83837890625,
-0.40625,
0.517578125,
-0.342529296875,
0.60009765625,
-0.74951171875,
-0.66015625,
0.521484375,
1.1748046875,
-0.2178955078125,
0.488525390625,
0.450439453125,
0.2880859375,
-0.273193359375,
0.2003173828125,
0.2705078125,
-0.2021484375,
-0.465087890625,
0.95654296875,
0.267333984375,
-0.044586181640625,
-0.09857177734375,
0.69580078125,
0.461181640625,
0.458251953125,
-0.404052734375,
-0.0350341796875,
0.490966796875,
1.3505859375,
0.0269775390625,
0.783203125,
0.256103515625,
0.7880859375,
0.65283203125,
0.810546875,
0.42724609375,
0.19580078125,
0.85595703125,
0.7421875,
-0.0648193359375,
0.399169921875,
0.38720703125,
0.438720703125,
0.38232421875,
0.6845703125,
0.294677734375,
0.206298828125,
0.0921630859375,
-0.0662841796875,
-0.53125,
0.298583984375,
-0.423583984375,
0.74169921875,
-0.11883544921875,
0.42529296875,
-0.309326171875,
-0.3955078125,
0.40478515625,
0.85205078125,
-0.80615234375,
-0.468994140625,
0.1690673828125,
0.03668212890625,
0.13720703125,
-0.15625,
0.3515625,
0.2386474609375,
0.471923828125,
0.491455078125,
-0.2880859375,
-0.1490478515625,
-1.0927734375,
-0.92919921875,
-1.0263671875,
-0.53466796875,
-0.919921875,
0.0006837844848632812,
0.041900634765625,
-0.7783203125,
0.285888671875,
-0.615234375,
-0.173095703125,
0.288330078125,
-0.685546875,
0.77099609375,
-0.2366943359375,
0.35205078125,
-1.2509765625,
0.77001953125,
0.411865234375,
1.1611328125,
-0.7783203125,
0.1519775390625,
0.1129150390625,
-0.7490234375,
0.044281005859375,
0.0712890625,
0.345947265625,
0.04254150390625,
-0.72314453125,
-0.64111328125,
-0.6982421875,
-0.1346435546875,
-0.275634765625,
0.08062744140625,
-0.5517578125,
0.95458984375,
0.6923828125,
-0.74267578125,
0.7001953125,
0.84716796875,
-0.6904296875,
0.638671875,
0.459716796875,
0.370361328125,
-0.72119140625,
1.525390625,
0.467041015625,
0.421630859375,
-0.45068359375,
-0.447509765625,
-0.1826171875,
-0.066650390625,
0.18603515625,
-0.525390625,
-0.58251953125,
0.54248046875,
-0.1572265625,
-1.0517578125,
0.3349609375,
-0.96533203125,
-0.55078125,
-0.185546875,
-0.9287109375,
1.2890625,
1.07421875,
-0.00881195068359375,
0.029388427734375,
-0.28759765625,
-0.10870361328125,
0.55126953125,
0.52978515625,
-0.367919921875,
-0.00023496150970458984,
0.87060546875,
0.270263671875,
0.2117919921875,
0.211181640625,
-0.58349609375,
-0.05035400390625,
-0.149658203125,
0.31298828125,
0.60791015625,
0.130126953125,
0.43701171875,
0.2103271484375,
0.56884765625,
-1.224609375,
-0.1826171875,
-0.40380859375,
0.59375,
0.501953125,
0.41552734375,
0.1771240234375,
-0.366943359375,
-0.8037109375,
-1.0205078125,
0.139892578125,
0.0537109375,
0.74267578125,
-0.60107421875,
0.69482421875,
0.0168609619140625,
-0.5029296875,
0.72900390625,
-0.68310546875,
0.1568603515625,
0.93896484375,
-0.4443359375,
0.77294921875,
-1.0869140625,
0.424072265625,
-0.021270751953125,
-0.1595458984375,
0.243896484375,
0.351318359375,
0.537109375,
-0.45751953125,
-0.366943359375,
-0.56787109375,
0.08233642578125,
0.06304931640625,
-0.39892578125,
-0.04852294921875,
-0.366455078125,
-0.416259765625,
-0.9150390625,
0.457763671875,
0.68798828125,
0.92578125,
-0.009857177734375,
0.62841796875,
0.300537109375,
0.42333984375,
0.6591796875,
-0.022247314453125,
0.2388916015625,
-0.92041015625,
0.78076171875,
0.286376953125,
-0.20703125,
-0.5146484375,
-0.2440185546875,
-0.2125244140625,
-0.00444793701171875,
-0.1744384765625,
-0.25537109375,
-0.85888671875,
0.494873046875,
-0.144775390625,
0.73046875,
-0.66015625,
-0.0191497802734375,
-0.6923828125,
0.314697265625,
0.52001953125,
-0.91064453125,
0.462646484375,
-0.923828125,
0.45849609375,
0.60302734375,
-0.246826171875,
-0.39990234375,
-0.5830078125,
-0.87939453125,
-0.74755859375,
0.21044921875,
1.0087890625,
-0.226318359375,
0.50537109375,
-1.4228515625,
0.424560546875,
0.424560546875,
-0.921875,
0.050750732421875,
-0.18359375,
0.406982421875,
0.195556640625,
0.76171875,
-0.20068359375,
-0.287109375,
-0.033660888671875,
-1.1728515625,
0.408447265625,
-0.64599609375,
0.52392578125,
0.1463623046875,
-0.19970703125,
0.1270751953125,
0.3984375,
-0.11700439453125,
0.054046630859375,
-0.2449951171875,
0.33740234375,
-1.0595703125,
-0.734375,
0.5068359375,
-0.06298828125,
-0.350341796875,
1.015625,
0.09625244140625,
-0.235595703125,
0.160888671875,
0.388916015625,
-0.45263671875,
0.53466796875,
-0.263671875,
0.755859375,
-0.479736328125,
-0.61376953125,
-0.463623046875,
-0.361572265625,
0.728515625,
-0.23046875,
-0.4580078125,
-0.17822265625,
-1.1767578125,
-0.0689697265625,
0.2320556640625,
-0.58203125,
0.2509765625,
0.1356201171875,
0.238037109375,
-0.27685546875,
-0.0885009765625,
-0.426513671875,
-0.09271240234375,
-0.4287109375,
-0.6005859375,
0.5927734375,
0.360595703125,
0.587890625,
0.162353515625,
-0.4736328125,
-0.0709228515625,
0.2305908203125,
-0.1224365234375,
-0.703125,
-0.26708984375,
-0.248779296875,
-0.313720703125,
-0.55810546875,
0.312744140625,
-0.1065673828125,
0.419921875,
0.99072265625,
-0.0283660888671875,
0.54833984375,
0.284423828125,
-0.828125,
1.1044921875,
0.304443359375,
-0.8837890625,
-0.31298828125,
0.3974609375,
0.01386260986328125,
0.8291015625,
0.32177734375,
-0.77685546875,
-0.630859375,
-0.88671875,
0.395751953125,
-0.970703125,
-0.244873046875,
-0.9599609375,
-0.578125,
-0.43798828125,
0.7041015625,
-0.173095703125,
-0.640625,
0.1695556640625,
-1.017578125,
0.0079345703125,
-0.9619140625,
-0.2030029296875,
-0.80029296875,
-0.5830078125,
-0.317626953125,
0.99755859375,
-0.003482818603515625,
-0.03912353515625,
0.30078125,
0.038787841796875,
0.09246826171875,
0.2464599609375,
-0.7724609375,
-0.300537109375,
0.08770751953125,
-0.067138671875,
-0.348876953125,
-0.04071044921875,
-0.80126953125,
0.65771484375,
-0.85595703125,
0.2008056640625,
-0.119873046875,
-0.05096435546875,
-0.308349609375,
-0.255126953125,
1.0361328125,
-0.5693359375,
0.330322265625,
-0.470703125,
0.270263671875,
0.962890625,
-0.58984375,
-0.364013671875,
-0.86181640625,
-0.7412109375,
-1.4482421875,
0.64599609375,
-0.334716796875,
0.249755859375,
-0.640625,
-0.65283203125,
1.064453125,
-0.77099609375,
0.3505859375,
1.0908203125,
0.06103515625,
0.3359375,
-0.35302734375,
0.66650390625,
0.468994140625,
-0.62353515625,
0.24169921875,
0.366455078125,
-0.63525390625,
-0.1376953125,
-0.56787109375,
-0.96240234375,
-0.58154296875,
0.369384765625,
0.99853515625,
-0.0821533203125,
0.6103515625,
-0.473876953125,
-1.2236328125,
-0.333251953125,
0.6484375,
0.1767578125,
0.292236328125,
1.044921875,
0.2037353515625,
-0.156005859375,
0.258056640625,
-0.54541015625,
-0.215087890625,
-0.32568359375,
1.23046875,
-0.37744140625,
-0.6171875,
0.9765625,
0.83447265625,
-1.0732421875,
-0.9912109375,
-0.1268310546875,
-0.0011320114135742188,
0.01555633544921875,
-0.92919921875,
-0.0193023681640625,
0.496826171875,
-0.488037109375,
0.1392822265625,
0.2271728515625,
-0.0955810546875,
0.317138671875,
0.15869140625,
0.4482421875,
-0.253173828125,
0.33251953125,
1.0322265625,
-0.3505859375,
-0.74365234375,
-0.9970703125,
-0.377197265625,
-0.3466796875,
0.2322998046875,
0.7314453125,
-0.265380859375,
0.34228515625,
0.68994140625,
-0.05804443359375,
1.044921875,
-0.349365234375,
-0.27197265625,
0.35400390625,
-0.75537109375,
-0.607421875,
0.08795166015625,
0.1512451171875,
-0.36181640625,
0.68408203125,
-0.58740234375,
-0.0625,
0.2607421875,
0.173828125,
-0.4365234375,
-0.9794921875,
-0.318359375,
-1.1806640625,
-0.453125,
-0.450927734375,
-0.87646484375,
-0.028045654296875,
0.1920166015625,
0.2230224609375,
-0.7041015625,
0.058074951171875,
0.55615234375,
-0.39453125,
0.8388671875,
-0.68505859375,
0.01323699951171875,
-0.51416015625,
-0.423828125,
-0.60888671875,
-0.09332275390625,
-0.60986328125,
-0.09600830078125,
-0.55419921875,
0.203857421875,
-0.2108154296875,
0.57666015625,
-0.2802734375,
0.65673828125,
-0.366943359375,
-0.8056640625,
0.2978515625,
0.0897216796875,
-0.3232421875,
0.92431640625,
0.375244140625,
0.046173095703125,
0.4384765625,
-0.1126708984375,
-0.136962890625,
-0.1759033203125,
0.7412109375,
0.4521484375,
-0.222412109375,
-0.30419921875,
-0.11151123046875,
0.06585693359375,
-1.181640625,
0.56005859375,
-0.619140625,
0.19775390625,
0.2484130859375,
-0.365234375,
0.338623046875,
1.0703125,
-0.65869140625,
0.426513671875,
0.042388916015625,
0.132080078125,
0.220703125,
0.237548828125,
-0.1126708984375,
0.703125,
-0.244873046875,
-0.5263671875,
-0.1328125,
0.2744140625,
-0.1356201171875,
0.398193359375,
-0.2237548828125,
-1.1416015625,
-1.08984375,
-0.1573486328125,
-0.1461181640625,
0.22607421875,
0.2315673828125,
-0.287353515625,
0.026092529296875,
0.203125,
-0.9775390625,
0.268798828125,
-1.0693359375,
-0.95703125,
0.7685546875,
-0.1622314453125,
-0.37255859375,
0.2021484375,
-0.27734375,
-0.1392822265625,
0.1934814453125,
0.370849609375,
-0.5849609375,
0.427490234375,
-0.158203125,
0.66552734375,
-0.3046875,
-0.18994140625,
-0.008758544921875,
0.67626953125,
-0.91748046875,
-0.374267578125,
-0.378173828125,
0.833984375,
0.136474609375,
-0.442138671875,
-0.57275390625,
0.1365966796875,
0.2135009765625,
0.1893310546875,
-0.446044921875,
0.218994140625,
-0.0670166015625,
0.77880859375,
-1.015625,
0.10308837890625,
-0.00994110107421875,
0.277099609375,
-0.0533447265625,
-0.37451171875,
-0.7431640625,
1.00390625,
0.5419921875,
0.08380126953125,
0.63330078125,
0.02740478515625,
0.478515625,
-0.022308349609375,
-0.0068206787109375,
-0.27099609375,
0.728515625,
0.7568359375,
0.703125,
-0.21484375,
0.38720703125,
0.84521484375,
0.28955078125,
-0.17333984375,
0.3818359375,
0.0092926025390625,
-0.050811767578125,
0.2578125,
-0.24462890625,
-0.2587890625,
-0.060211181640625,
-0.413330078125,
0.54736328125,
-0.59033203125,
-0.0257110595703125,
-0.303466796875,
-0.7705078125,
0.8125,
-0.4482421875,
-0.1864013671875,
0.331787109375,
-0.2030029296875,
0.36083984375,
0.494140625,
-0.265625,
-0.337890625,
1.1455078125,
0.8173828125,
0.5224609375,
0.77587890625,
0.421142578125,
0.4248046875,
-0.5615234375,
0.26953125,
0.19384765625,
-0.0648193359375,
0.023956298828125,
-0.68798828125,
-1.2841796875,
0.57958984375,
-0.1978759765625,
-0.1605224609375,
0.354248046875,
-0.74658203125,
0.2127685546875,
-0.5546875,
1.0888671875,
-0.53759765625,
0.2493896484375,
0.26171875,
-0.5947265625,
-0.64208984375,
0.7060546875,
-0.2259521484375,
0.297607421875,
0.1446533203125,
0.93994140625,
0.0777587890625,
1.7236328125,
0.73095703125,
-0.1597900390625,
0.034332275390625,
0.60205078125,
-0.270751953125,
-0.307861328125,
-0.58984375,
-0.375244140625,
-0.06829833984375,
-0.41845703125,
-0.77001953125,
-0.1865234375,
0.7392578125,
0.16259765625,
-0.92919921875,
-0.431884765625,
0.31005859375,
-0.974609375,
0.53173828125,
0.1849365234375,
0.426025390625,
0.298095703125,
-0.20068359375,
-0.276611328125,
-0.61767578125,
0.415771484375,
-0.6591796875,
0.2978515625,
-0.529296875,
-0.230712890625,
-0.67578125,
-0.52001953125,
-0.36474609375,
-0.09552001953125,
-0.580078125,
-0.71728515625,
0.62353515625,
0.264404296875,
0.460205078125,
0.4306640625,
-0.297119140625,
0.28662109375,
0.83837890625,
1.029296875,
-0.309326171875,
1.1826171875,
0.321533203125,
-0.035400390625,
0.0899658203125,
-0.378173828125,
0.394287109375,
-0.02117919921875,
0.3388671875,
-0.6064453125,
-0.1527099609375,
-0.9970703125,
-1.0400390625,
0.283203125,
0.47119140625,
0.265380859375,
-0.83935546875,
-1.3486328125,
-0.234130859375,
-1.0986328125,
-0.33935546875,
-0.69091796875,
0.8154296875,
-0.64013671875,
-0.047576904296875,
0.059295654296875,
-1.0087890625,
4.23046875,
0.85546875,
0.5068359375,
0.3173828125,
0.265380859375,
0.8134765625,
0.405029296875,
-0.46044921875,
-0.246337890625,
-0.5009765625,
0.544921875,
-0.52099609375,
0.0638427734375,
1.0146484375,
0.48291015625,
0.379638671875,
-0.29736328125,
-0.0958251953125,
0.2275390625,
-0.97216796875,
-0.86572265625,
0.366943359375,
0.1656494140625,
0.322998046875,
0.22119140625,
0.39599609375,
1.0048828125,
-0.65771484375,
-0.34814453125,
-0.75732421875,
0.204345703125,
-0.3369140625,
0.98583984375,
0.27392578125,
-0.057861328125,
0.78173828125,
-0.027130126953125,
-0.529296875,
-0.0217132568359375,
0.2275390625,
-0.147216796875,
0.21533203125,
0.6025390625,
-0.63134765625,
-0.4189453125,
0.6806640625,
-0.5771484375,
0.59326171875,
0.427001953125,
-1.0517578125,
1.0244140625,
-0.110107421875,
0.5849609375,
-0.7578125,
-0.61181640625,
0.30029296875,
0.1636962890625,
0.0836181640625,
-0.34228515625,
0.57080078125,
0.57373046875,
0.658203125,
-0.1566162109375,
0.7080078125,
-1.0537109375,
0.43115234375,
-0.051544189453125,
0.5166015625,
-0.450439453125,
0.042083740234375,
-0.42822265625,
-0.390380859375,
-0.34912109375,
-0.6787109375,
0.619140625,
0.1021728515625,
-0.378173828125,
0.8037109375,
0.29443359375,
-0.732421875,
0.24169921875,
-0.427001953125,
-0.06298828125,
-0.43017578125,
0.70458984375,
1.1591796875,
-0.4462890625,
0.0372314453125,
-0.214599609375,
0.6357421875,
0.6171875,
0.8408203125,
-0.09228515625,
-0.662109375,
-0.481689453125
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
This is the hard version of the problem. The difference between the versions is the constraint on n and the required number of operations. You can make hacks only if all versions of the problem are solved.
There are two binary strings a and b of length n (a binary string is a string consisting of symbols 0 and 1). In an operation, you select a prefix of a, and simultaneously invert the bits in the prefix (0 changes to 1 and 1 changes to 0) and reverse the order of the bits in the prefix.
For example, if a=001011 and you select the prefix of length 3, it becomes 011011. Then if you select the entire string, it becomes 001001.
Your task is to transform the string a into b in at most 2n operations. It can be proved that it is always possible.
Input
The first line contains a single integer t (1≤ t≤ 1000) — the number of test cases. Next 3t lines contain descriptions of test cases.
The first line of each test case contains a single integer n (1≤ n≤ 10^5) — the length of the binary strings.
The next two lines contain two binary strings a and b of length n.
It is guaranteed that the sum of n across all test cases does not exceed 10^5.
Output
For each test case, output an integer k (0≤ k≤ 2n), followed by k integers p_1,…,p_k (1≤ p_i≤ n). Here k is the number of operations you use and p_i is the length of the prefix you flip in the i-th operation.
Example
Input
5
2
01
10
5
01011
11100
2
01
01
10
0110011011
1000110100
1
0
1
Output
3 1 2 1
6 5 2 5 3 1 2
0
9 4 1 2 10 4 1 2 1 5
1 1
Note
In the first test case, we have 01→ 11→ 00→ 10.
In the second test case, we have 01011→ 00101→ 11101→ 01000→ 10100→ 00100→ 11100.
In the third test case, the strings are already the same. Another solution is to flip the prefix of length 2, which will leave a unchanged.
Submitted Solution:
```
for _ in range (int(input())):
n = int(input())
a = list(input())
b = list(input())
ans = []
for i in range (n-1,-1,-1):
if b[i]!=a[0]:
ans.append(i+1)
if a[i]=='0':
a[0]='1'
else:
a[0] = '0'
else:
ans.append(1)
if a[0]=='0':
a[0]='1'
else:
a[0] = '0'
ans.append(i+1)
if a[i]=='0':
a[0]='1'
else:
a[0] = '0'
print(len(ans),end=" ")
print(*ans)
```
No
| 10,138 | [
0.25830078125,
-0.380615234375,
-0.14697265625,
0.08056640625,
-0.5380859375,
-0.60107421875,
-0.016265869140625,
-0.114013671875,
0.06341552734375,
1.0712890625,
0.8232421875,
-0.25927734375,
0.194091796875,
-1.02734375,
-0.55810546875,
0.2159423828125,
-0.304443359375,
-0.708984375,
-0.2147216796875,
-0.5244140625,
-0.0767822265625,
-0.208251953125,
-1.36328125,
0.039398193359375,
-0.4755859375,
0.7744140625,
0.401123046875,
-0.1304931640625,
0.83544921875,
0.974609375,
-0.4716796875,
-0.496337890625,
0.79248046875,
-0.85986328125,
-0.3701171875,
-0.4013671875,
0.6708984375,
-0.7607421875,
-0.2056884765625,
-0.39990234375,
0.4208984375,
-0.2276611328125,
0.27099609375,
-0.71435546875,
-1.3818359375,
0.0606689453125,
-0.25732421875,
-0.33935546875,
-0.215087890625,
-0.3955078125,
0.04302978515625,
-0.286376953125,
0.60888671875,
-0.07373046875,
0.1480712890625,
0.303955078125,
0.2880859375,
-0.467529296875,
-0.50244140625,
0.0943603515625,
-0.01345062255859375,
0.141357421875,
0.1904296875,
-0.76123046875,
0.11614990234375,
0.384521484375,
-0.190673828125,
-0.4130859375,
-0.26708984375,
-0.81103515625,
-0.293212890625,
-0.10919189453125,
-0.68701171875,
-0.1417236328125,
-0.09271240234375,
0.2008056640625,
0.1317138671875,
-0.1026611328125,
-1.064453125,
0.86962890625,
-0.431396484375,
1.01171875,
0.2822265625,
0.200439453125,
-0.57080078125,
-0.4267578125,
0.1326904296875,
0.20849609375,
0.2210693359375,
-0.09014892578125,
-0.306396484375,
0.455078125,
-0.57373046875,
-0.03411865234375,
0.440185546875,
0.619140625,
-0.374267578125,
0.32568359375,
0.4248046875,
0.0231170654296875,
0.751953125,
0.97802734375,
-0.2183837890625,
1.3427734375,
-0.53271484375,
-0.19970703125,
-0.060943603515625,
0.00574493408203125,
-0.117919921875,
-0.07879638671875,
-0.05328369140625,
-0.362060546875,
0.701171875,
0.26416015625,
-0.3271484375,
0.703125,
-0.07745361328125,
0.5478515625,
-0.83154296875,
0.3193359375,
0.65771484375,
-0.2230224609375,
0.8212890625,
-0.2685546875,
0.035003662109375,
-0.291259765625,
-0.47802734375,
0.99267578125,
-0.51171875,
-0.4951171875,
0.2227783203125,
-0.07733154296875,
-0.400634765625,
0.31982421875,
-0.13916015625,
0.595703125,
-0.1600341796875,
0.389892578125,
0.68310546875,
-0.40625,
0.8193359375,
-0.139892578125,
-0.12396240234375,
1.8037109375,
0.414306640625,
-0.049591064453125,
0.80712890625,
0.466064453125,
-0.372802734375,
0.55712890625,
-0.97509765625,
0.42724609375,
0.08526611328125,
0.1907958984375,
-0.255615234375,
0.00484466552734375,
-0.3759765625,
0.42529296875,
0.2083740234375,
0.11517333984375,
-0.09112548828125,
0.284912109375,
-0.07415771484375,
0.83935546875,
-0.1844482421875,
0.9521484375,
-0.421875,
-0.390869140625,
-0.2357177734375,
-0.5224609375,
0.27880859375,
-0.202392578125,
-0.2724609375,
0.73193359375,
0.6015625,
1.15234375,
1.2783203125,
-0.454833984375,
0.25048828125,
0.321044921875,
-0.666015625,
0.064697265625,
0.63037109375,
0.90478515625,
-0.2149658203125,
0.2607421875,
-0.067626953125,
-0.27685546875,
-0.346435546875,
-0.75732421875,
-0.0654296875,
0.82861328125,
-0.703125,
0.271728515625,
0.0860595703125,
0.220458984375,
-0.8017578125,
-0.166259765625,
-0.12322998046875,
-0.85107421875,
-0.410400390625,
0.4775390625,
-0.28515625,
0.5791015625,
-0.73388671875,
-0.66552734375,
0.5224609375,
1.1943359375,
-0.2298583984375,
0.4765625,
0.41357421875,
0.2462158203125,
-0.28076171875,
0.232666015625,
0.24609375,
-0.203125,
-0.470458984375,
0.98486328125,
0.29296875,
-0.022216796875,
-0.08184814453125,
0.685546875,
0.477783203125,
0.43408203125,
-0.380615234375,
-0.00836944580078125,
0.431640625,
1.333984375,
0.057861328125,
0.78369140625,
0.2320556640625,
0.79736328125,
0.64208984375,
0.7958984375,
0.425537109375,
0.1522216796875,
0.86181640625,
0.7666015625,
-0.095947265625,
0.402099609375,
0.344482421875,
0.480224609375,
0.3955078125,
0.6279296875,
0.24072265625,
0.243896484375,
0.118408203125,
-0.059326171875,
-0.485107421875,
0.322021484375,
-0.4716796875,
0.7802734375,
-0.1529541015625,
0.410888671875,
-0.30517578125,
-0.411865234375,
0.397705078125,
0.82666015625,
-0.81298828125,
-0.444580078125,
0.206787109375,
0.028045654296875,
0.1480712890625,
-0.13818359375,
0.375244140625,
0.26708984375,
0.478759765625,
0.48974609375,
-0.26123046875,
-0.1591796875,
-1.0537109375,
-0.8798828125,
-0.986328125,
-0.498291015625,
-0.88671875,
0.0275115966796875,
0.061065673828125,
-0.80126953125,
0.312744140625,
-0.6396484375,
-0.159912109375,
0.276123046875,
-0.72216796875,
0.76025390625,
-0.251220703125,
0.30322265625,
-1.2412109375,
0.787109375,
0.39794921875,
1.150390625,
-0.76318359375,
0.1807861328125,
0.11065673828125,
-0.7275390625,
0.0244598388671875,
0.069091796875,
0.353759765625,
0.0596923828125,
-0.7119140625,
-0.64697265625,
-0.666015625,
-0.1488037109375,
-0.30419921875,
0.107666015625,
-0.57275390625,
0.912109375,
0.740234375,
-0.759765625,
0.6953125,
0.82568359375,
-0.67236328125,
0.619140625,
0.447265625,
0.392333984375,
-0.69189453125,
1.51171875,
0.46826171875,
0.432861328125,
-0.48388671875,
-0.4658203125,
-0.2047119140625,
-0.0919189453125,
0.161865234375,
-0.49560546875,
-0.5966796875,
0.54833984375,
-0.1517333984375,
-1.0625,
0.3310546875,
-0.9423828125,
-0.51611328125,
-0.1964111328125,
-0.8994140625,
1.302734375,
1.068359375,
-0.01532745361328125,
-0.01004791259765625,
-0.307861328125,
-0.106689453125,
0.53564453125,
0.5205078125,
-0.30810546875,
-0.00269317626953125,
0.8642578125,
0.28857421875,
0.2344970703125,
0.1876220703125,
-0.58447265625,
-0.06976318359375,
-0.164794921875,
0.3193359375,
0.6044921875,
0.13330078125,
0.451416015625,
0.2064208984375,
0.611328125,
-1.2177734375,
-0.179443359375,
-0.391845703125,
0.60546875,
0.50537109375,
0.399169921875,
0.166748046875,
-0.35400390625,
-0.79052734375,
-1.0498046875,
0.1290283203125,
0.025360107421875,
0.7421875,
-0.62255859375,
0.69970703125,
0.00518035888671875,
-0.51025390625,
0.72265625,
-0.6708984375,
0.1719970703125,
0.96142578125,
-0.4697265625,
0.76611328125,
-1.0712890625,
0.4248046875,
-0.01280975341796875,
-0.20556640625,
0.2939453125,
0.36328125,
0.53515625,
-0.4443359375,
-0.36181640625,
-0.56396484375,
0.07177734375,
0.0220489501953125,
-0.35693359375,
-0.04644775390625,
-0.364013671875,
-0.420166015625,
-0.89892578125,
0.440185546875,
0.69287109375,
0.91455078125,
0.05413818359375,
0.57275390625,
0.314453125,
0.371826171875,
0.63232421875,
-0.0225830078125,
0.2344970703125,
-0.91552734375,
0.83251953125,
0.256103515625,
-0.2178955078125,
-0.483642578125,
-0.2279052734375,
-0.191650390625,
0.01812744140625,
-0.2257080078125,
-0.2333984375,
-0.88525390625,
0.4853515625,
-0.1573486328125,
0.759765625,
-0.619140625,
-0.058349609375,
-0.69873046875,
0.344970703125,
0.53759765625,
-0.908203125,
0.4765625,
-0.9140625,
0.478515625,
0.55029296875,
-0.2666015625,
-0.426513671875,
-0.58544921875,
-0.896484375,
-0.767578125,
0.2279052734375,
1.005859375,
-0.26123046875,
0.5205078125,
-1.3994140625,
0.323974609375,
0.36474609375,
-0.89990234375,
0.063232421875,
-0.2020263671875,
0.392822265625,
0.192626953125,
0.7392578125,
-0.2418212890625,
-0.303466796875,
-0.00872039794921875,
-1.234375,
0.429931640625,
-0.646484375,
0.521484375,
0.1446533203125,
-0.210205078125,
0.1260986328125,
0.3798828125,
-0.09930419921875,
0.0938720703125,
-0.234619140625,
0.371337890625,
-1.060546875,
-0.75146484375,
0.50146484375,
-0.0738525390625,
-0.3701171875,
0.98779296875,
0.07427978515625,
-0.1876220703125,
0.1600341796875,
0.35107421875,
-0.443359375,
0.54296875,
-0.24658203125,
0.76416015625,
-0.49755859375,
-0.56640625,
-0.50390625,
-0.33154296875,
0.73095703125,
-0.257080078125,
-0.43310546875,
-0.219970703125,
-1.15625,
-0.11968994140625,
0.244140625,
-0.5322265625,
0.228759765625,
0.119873046875,
0.239013671875,
-0.26220703125,
-0.09381103515625,
-0.3798828125,
-0.10968017578125,
-0.456787109375,
-0.62744140625,
0.6357421875,
0.37939453125,
0.55810546875,
0.142578125,
-0.459716796875,
-0.06292724609375,
0.1976318359375,
-0.1322021484375,
-0.66943359375,
-0.2489013671875,
-0.2734375,
-0.306640625,
-0.54541015625,
0.28125,
-0.137451171875,
0.419189453125,
0.974609375,
-0.02606201171875,
0.54541015625,
0.33056640625,
-0.83154296875,
1.07421875,
0.29931640625,
-0.81396484375,
-0.287841796875,
0.4140625,
-0.009979248046875,
0.81396484375,
0.317138671875,
-0.76220703125,
-0.623046875,
-0.87841796875,
0.401123046875,
-0.9140625,
-0.2232666015625,
-0.97705078125,
-0.60888671875,
-0.423828125,
0.66845703125,
-0.1671142578125,
-0.65185546875,
0.19580078125,
-0.994140625,
0.052154541015625,
-0.9580078125,
-0.2259521484375,
-0.7607421875,
-0.59375,
-0.337890625,
0.96484375,
-0.03265380859375,
-0.0311737060546875,
0.317626953125,
0.03424072265625,
0.096435546875,
0.209228515625,
-0.7724609375,
-0.2880859375,
0.0587158203125,
-0.048980712890625,
-0.31640625,
-0.033782958984375,
-0.7880859375,
0.66845703125,
-0.81494140625,
0.189453125,
-0.11962890625,
-0.0226898193359375,
-0.32958984375,
-0.261962890625,
0.98779296875,
-0.55224609375,
0.34326171875,
-0.4345703125,
0.31201171875,
0.9140625,
-0.60791015625,
-0.3134765625,
-0.88037109375,
-0.74609375,
-1.4169921875,
0.630859375,
-0.34912109375,
0.228759765625,
-0.63916015625,
-0.6474609375,
1.09375,
-0.75634765625,
0.34521484375,
1.08984375,
0.0447998046875,
0.351318359375,
-0.3681640625,
0.66064453125,
0.46826171875,
-0.60009765625,
0.25537109375,
0.34716796875,
-0.63232421875,
-0.1463623046875,
-0.5517578125,
-0.99267578125,
-0.5556640625,
0.365234375,
1.0556640625,
-0.05279541015625,
0.556640625,
-0.4736328125,
-1.201171875,
-0.303955078125,
0.662109375,
0.1748046875,
0.297119140625,
1.0654296875,
0.2030029296875,
-0.153564453125,
0.301025390625,
-0.5751953125,
-0.2308349609375,
-0.295654296875,
1.2236328125,
-0.37158203125,
-0.58837890625,
0.9599609375,
0.7919921875,
-1.0537109375,
-0.96630859375,
-0.1441650390625,
-0.02972412109375,
0.04888916015625,
-0.91259765625,
-0.06463623046875,
0.478271484375,
-0.450927734375,
0.12457275390625,
0.234619140625,
-0.09295654296875,
0.3115234375,
0.165283203125,
0.428955078125,
-0.236328125,
0.31494140625,
1.041015625,
-0.371826171875,
-0.740234375,
-0.9990234375,
-0.402099609375,
-0.32568359375,
0.25537109375,
0.70654296875,
-0.2548828125,
0.3271484375,
0.66162109375,
-0.023651123046875,
0.98583984375,
-0.30908203125,
-0.2464599609375,
0.368408203125,
-0.72119140625,
-0.60595703125,
0.10687255859375,
0.141357421875,
-0.37060546875,
0.7080078125,
-0.59423828125,
-0.0780029296875,
0.287353515625,
0.124755859375,
-0.449462890625,
-1.017578125,
-0.2578125,
-1.1796875,
-0.441162109375,
-0.40283203125,
-0.89111328125,
-0.0153656005859375,
0.176025390625,
0.23779296875,
-0.7568359375,
0.053192138671875,
0.533203125,
-0.361572265625,
0.79345703125,
-0.6748046875,
0.03570556640625,
-0.436279296875,
-0.42578125,
-0.63330078125,
-0.08258056640625,
-0.5927734375,
-0.1368408203125,
-0.58642578125,
0.1859130859375,
-0.1705322265625,
0.52392578125,
-0.28173828125,
0.681640625,
-0.3583984375,
-0.7919921875,
0.28466796875,
0.049468994140625,
-0.27294921875,
0.9130859375,
0.362060546875,
0.049835205078125,
0.496826171875,
-0.0689697265625,
-0.146484375,
-0.1802978515625,
0.73095703125,
0.494140625,
-0.2327880859375,
-0.298095703125,
-0.11181640625,
0.08251953125,
-1.1728515625,
0.56201171875,
-0.64013671875,
0.2099609375,
0.2763671875,
-0.351318359375,
0.360107421875,
1.0458984375,
-0.60986328125,
0.392333984375,
0.035797119140625,
0.1427001953125,
0.257080078125,
0.258056640625,
-0.11553955078125,
0.76416015625,
-0.2261962890625,
-0.56982421875,
-0.09417724609375,
0.272705078125,
-0.1317138671875,
0.38818359375,
-0.249755859375,
-1.1455078125,
-1.0712890625,
-0.1446533203125,
-0.1392822265625,
0.253662109375,
0.2476806640625,
-0.29150390625,
0.037872314453125,
0.1873779296875,
-0.939453125,
0.26416015625,
-1.080078125,
-0.91943359375,
0.740234375,
-0.1622314453125,
-0.368408203125,
0.174072265625,
-0.2880859375,
-0.1524658203125,
0.148193359375,
0.343017578125,
-0.59130859375,
0.451416015625,
-0.161865234375,
0.6328125,
-0.284912109375,
-0.1976318359375,
0.01136016845703125,
0.68115234375,
-0.921875,
-0.3916015625,
-0.391357421875,
0.79736328125,
0.08941650390625,
-0.421142578125,
-0.56591796875,
0.1175537109375,
0.21875,
0.22314453125,
-0.4794921875,
0.14599609375,
-0.057342529296875,
0.74365234375,
-1.0478515625,
0.07830810546875,
-0.023223876953125,
0.255126953125,
-0.053741455078125,
-0.384765625,
-0.76953125,
1.0380859375,
0.541015625,
0.105224609375,
0.642578125,
0.0010137557983398438,
0.494140625,
-0.05731201171875,
0.002849578857421875,
-0.273681640625,
0.71337890625,
0.7626953125,
0.6982421875,
-0.1275634765625,
0.388916015625,
0.80615234375,
0.2286376953125,
-0.20068359375,
0.380615234375,
0.03326416015625,
-0.1038818359375,
0.30029296875,
-0.272705078125,
-0.27001953125,
-0.09814453125,
-0.3837890625,
0.57373046875,
-0.55810546875,
-0.032501220703125,
-0.287109375,
-0.7705078125,
0.7900390625,
-0.448486328125,
-0.238525390625,
0.357177734375,
-0.2171630859375,
0.36181640625,
0.50390625,
-0.2529296875,
-0.33544921875,
1.1611328125,
0.794921875,
0.50146484375,
0.73974609375,
0.442626953125,
0.404296875,
-0.56787109375,
0.305908203125,
0.1639404296875,
-0.07257080078125,
-0.0217437744140625,
-0.6787109375,
-1.2666015625,
0.58447265625,
-0.192138671875,
-0.1568603515625,
0.34130859375,
-0.6953125,
0.2281494140625,
-0.5439453125,
1.123046875,
-0.5390625,
0.263671875,
0.2978515625,
-0.572265625,
-0.642578125,
0.70361328125,
-0.19677734375,
0.268310546875,
0.147216796875,
0.91650390625,
0.05023193359375,
1.7099609375,
0.7099609375,
-0.1502685546875,
0.0341796875,
0.5927734375,
-0.25732421875,
-0.308837890625,
-0.61279296875,
-0.354736328125,
-0.053741455078125,
-0.340087890625,
-0.720703125,
-0.1832275390625,
0.72412109375,
0.218994140625,
-0.896484375,
-0.43115234375,
0.269775390625,
-0.98388671875,
0.5400390625,
0.1658935546875,
0.399169921875,
0.293212890625,
-0.20947265625,
-0.30419921875,
-0.6396484375,
0.40869140625,
-0.6357421875,
0.314208984375,
-0.54736328125,
-0.2496337890625,
-0.673828125,
-0.541015625,
-0.35400390625,
-0.08135986328125,
-0.5439453125,
-0.7099609375,
0.61767578125,
0.270751953125,
0.48974609375,
0.436279296875,
-0.357177734375,
0.26025390625,
0.82470703125,
0.97998046875,
-0.283935546875,
1.1220703125,
0.31103515625,
-0.01342010498046875,
0.10845947265625,
-0.373779296875,
0.380615234375,
0.022857666015625,
0.322509765625,
-0.56787109375,
-0.136962890625,
-0.97998046875,
-1.017578125,
0.300048828125,
0.44091796875,
0.2244873046875,
-0.84716796875,
-1.3212890625,
-0.2666015625,
-1.0908203125,
-0.30078125,
-0.720703125,
0.810546875,
-0.65869140625,
-0.0193328857421875,
0.0643310546875,
-0.97998046875,
4.265625,
0.8427734375,
0.482421875,
0.29833984375,
0.230712890625,
0.8486328125,
0.39794921875,
-0.456298828125,
-0.250732421875,
-0.50390625,
0.58154296875,
-0.55322265625,
0.0714111328125,
1.041015625,
0.5380859375,
0.381103515625,
-0.320556640625,
-0.166015625,
0.234130859375,
-0.96435546875,
-0.830078125,
0.373291015625,
0.1923828125,
0.378173828125,
0.2100830078125,
0.38134765625,
1.0009765625,
-0.67724609375,
-0.304443359375,
-0.7841796875,
0.228271484375,
-0.341796875,
0.97900390625,
0.279052734375,
-0.05267333984375,
0.78076171875,
-0.04095458984375,
-0.51416015625,
0.03021240234375,
0.2332763671875,
-0.1484375,
0.1973876953125,
0.59033203125,
-0.6240234375,
-0.4365234375,
0.65869140625,
-0.59619140625,
0.58984375,
0.426513671875,
-1.033203125,
1.0107421875,
-0.1505126953125,
0.54345703125,
-0.7314453125,
-0.6611328125,
0.3154296875,
0.1728515625,
0.052520751953125,
-0.356201171875,
0.6005859375,
0.53857421875,
0.64013671875,
-0.1339111328125,
0.72314453125,
-1.015625,
0.457763671875,
-0.0792236328125,
0.51904296875,
-0.434814453125,
0.035400390625,
-0.405517578125,
-0.3544921875,
-0.348876953125,
-0.671875,
0.568359375,
0.0782470703125,
-0.339111328125,
0.810546875,
0.29296875,
-0.74072265625,
0.2027587890625,
-0.41162109375,
-0.046234130859375,
-0.401123046875,
0.70458984375,
1.158203125,
-0.481201171875,
0.075439453125,
-0.228271484375,
0.61474609375,
0.537109375,
0.830078125,
-0.104736328125,
-0.65283203125,
-0.50830078125
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
This is the hard version of the problem. The difference between the versions is the constraint on n and the required number of operations. You can make hacks only if all versions of the problem are solved.
There are two binary strings a and b of length n (a binary string is a string consisting of symbols 0 and 1). In an operation, you select a prefix of a, and simultaneously invert the bits in the prefix (0 changes to 1 and 1 changes to 0) and reverse the order of the bits in the prefix.
For example, if a=001011 and you select the prefix of length 3, it becomes 011011. Then if you select the entire string, it becomes 001001.
Your task is to transform the string a into b in at most 2n operations. It can be proved that it is always possible.
Input
The first line contains a single integer t (1≤ t≤ 1000) — the number of test cases. Next 3t lines contain descriptions of test cases.
The first line of each test case contains a single integer n (1≤ n≤ 10^5) — the length of the binary strings.
The next two lines contain two binary strings a and b of length n.
It is guaranteed that the sum of n across all test cases does not exceed 10^5.
Output
For each test case, output an integer k (0≤ k≤ 2n), followed by k integers p_1,…,p_k (1≤ p_i≤ n). Here k is the number of operations you use and p_i is the length of the prefix you flip in the i-th operation.
Example
Input
5
2
01
10
5
01011
11100
2
01
01
10
0110011011
1000110100
1
0
1
Output
3 1 2 1
6 5 2 5 3 1 2
0
9 4 1 2 10 4 1 2 1 5
1 1
Note
In the first test case, we have 01→ 11→ 00→ 10.
In the second test case, we have 01011→ 00101→ 11101→ 01000→ 10100→ 00100→ 11100.
In the third test case, the strings are already the same. Another solution is to flip the prefix of length 2, which will leave a unchanged.
Submitted Solution:
```
"""for _ in range(int(input())):
n,m=map(int,input().split())
l1=list(map(int,input().split()))
l2=list(map(int,input().split()))
f=0
for i in range(n):
if l1[i] in l2:
f=1
ans=l1[i]
break
if(f==0):
print("NO")
else:
print("YES")
print(1, ans)"""
"""for _ in range(int(input())):
n=int(input())
l=list(map(int,input().split()))
x=l.count(1)
if(x==0):
print("First")
else:
if(x==n):
if(n%2==0):
print("Second")
else:
print("First")
else:
c=0
for i in range(n):
if(l[i]==1):
c+=1
else:
break
if(c%2==0):
print("First")
else:
print("Second")"""
for _ in range(int(input())):
n=int(input())
la=str(input())
lb=str(input())
ans=n
l=[]
a=list(la)
b=list(lb)
left=0
right=n-1
for i in range(n-1,-1,-1):
temp=n-i+1
if(temp%2==0):
if(a[left]==b[i]):
l.append(1)
left+=1
l.append(i+1)
else:
if(a[right]!=b[i]):
l.append(1)
right-=1
l.append(i+1)
print(len(l),end=" ")
for i in range(len(l)):
print(l[i],end=" ")
print()
```
No
| 10,139 | [
0.272705078125,
-0.32373046875,
-0.175537109375,
0.082275390625,
-0.52392578125,
-0.58203125,
-0.016571044921875,
-0.1129150390625,
0.08209228515625,
1.068359375,
0.82861328125,
-0.241943359375,
0.22900390625,
-1.021484375,
-0.5849609375,
0.211181640625,
-0.27734375,
-0.705078125,
-0.1978759765625,
-0.51806640625,
-0.08642578125,
-0.180419921875,
-1.3779296875,
0.044708251953125,
-0.493896484375,
0.77490234375,
0.408447265625,
-0.1331787109375,
0.8408203125,
0.94580078125,
-0.501953125,
-0.52685546875,
0.77294921875,
-0.8623046875,
-0.351318359375,
-0.379150390625,
0.7021484375,
-0.74560546875,
-0.240478515625,
-0.440185546875,
0.38623046875,
-0.261474609375,
0.28662109375,
-0.72509765625,
-1.373046875,
0.064208984375,
-0.260498046875,
-0.324951171875,
-0.2120361328125,
-0.406005859375,
0.07525634765625,
-0.285888671875,
0.6279296875,
-0.06341552734375,
0.181396484375,
0.330322265625,
0.271240234375,
-0.42822265625,
-0.51611328125,
0.11810302734375,
0.009429931640625,
0.152587890625,
0.185791015625,
-0.7705078125,
0.0909423828125,
0.4169921875,
-0.21826171875,
-0.421875,
-0.275634765625,
-0.77734375,
-0.275146484375,
-0.09979248046875,
-0.6884765625,
-0.12261962890625,
-0.0908203125,
0.170166015625,
0.1273193359375,
-0.09979248046875,
-1.0908203125,
0.8642578125,
-0.4091796875,
1.0205078125,
0.26171875,
0.2110595703125,
-0.5439453125,
-0.435546875,
0.15673828125,
0.2337646484375,
0.2509765625,
-0.084228515625,
-0.2919921875,
0.451416015625,
-0.60498046875,
-0.062255859375,
0.448486328125,
0.63330078125,
-0.35595703125,
0.369384765625,
0.41650390625,
0.0343017578125,
0.7490234375,
0.962890625,
-0.216552734375,
1.3427734375,
-0.53466796875,
-0.2188720703125,
-0.057586669921875,
0.00476837158203125,
-0.10284423828125,
-0.0965576171875,
-0.028533935546875,
-0.375732421875,
0.705078125,
0.262939453125,
-0.34521484375,
0.705078125,
-0.09112548828125,
0.5322265625,
-0.83251953125,
0.27685546875,
0.6396484375,
-0.2548828125,
0.796875,
-0.267578125,
0.048492431640625,
-0.302734375,
-0.481201171875,
1.0283203125,
-0.47119140625,
-0.498779296875,
0.2291259765625,
-0.05426025390625,
-0.386962890625,
0.30712890625,
-0.1590576171875,
0.583984375,
-0.1343994140625,
0.379638671875,
0.67529296875,
-0.4609375,
0.79150390625,
-0.1297607421875,
-0.1024169921875,
1.818359375,
0.426025390625,
-0.03070068359375,
0.7978515625,
0.435302734375,
-0.40380859375,
0.59033203125,
-0.9619140625,
0.3955078125,
0.0662841796875,
0.1981201171875,
-0.32080078125,
0.01410675048828125,
-0.365966796875,
0.44580078125,
0.24462890625,
0.10174560546875,
-0.055877685546875,
0.32421875,
-0.05926513671875,
0.84375,
-0.196044921875,
0.939453125,
-0.400146484375,
-0.40869140625,
-0.2330322265625,
-0.52783203125,
0.251708984375,
-0.1917724609375,
-0.255615234375,
0.74267578125,
0.634765625,
1.1650390625,
1.25390625,
-0.430908203125,
0.252685546875,
0.3193359375,
-0.6669921875,
0.03314208984375,
0.63037109375,
0.9140625,
-0.1915283203125,
0.285400390625,
-0.0648193359375,
-0.282470703125,
-0.34521484375,
-0.75927734375,
-0.069580078125,
0.8525390625,
-0.75439453125,
0.3037109375,
0.0797119140625,
0.197021484375,
-0.796875,
-0.171142578125,
-0.09429931640625,
-0.865234375,
-0.41845703125,
0.483642578125,
-0.293701171875,
0.60302734375,
-0.70947265625,
-0.693359375,
0.5078125,
1.1865234375,
-0.2318115234375,
0.5,
0.4423828125,
0.278564453125,
-0.272705078125,
0.2034912109375,
0.24951171875,
-0.2003173828125,
-0.492431640625,
0.9853515625,
0.27587890625,
-0.0292816162109375,
-0.07073974609375,
0.71435546875,
0.490234375,
0.42529296875,
-0.417724609375,
-0.01204681396484375,
0.463623046875,
1.3759765625,
0.0758056640625,
0.76171875,
0.251953125,
0.82373046875,
0.6416015625,
0.84375,
0.453125,
0.2049560546875,
0.89453125,
0.7548828125,
-0.0965576171875,
0.42724609375,
0.333740234375,
0.46142578125,
0.3701171875,
0.6611328125,
0.247802734375,
0.237060546875,
0.09521484375,
-0.0782470703125,
-0.52392578125,
0.305908203125,
-0.42626953125,
0.77294921875,
-0.12347412109375,
0.427978515625,
-0.32470703125,
-0.434326171875,
0.419189453125,
0.84130859375,
-0.82470703125,
-0.489013671875,
0.150390625,
0.0654296875,
0.1136474609375,
-0.1414794921875,
0.361328125,
0.2401123046875,
0.444580078125,
0.479248046875,
-0.269287109375,
-0.1617431640625,
-1.0791015625,
-0.9130859375,
-1.0078125,
-0.5419921875,
-0.91796875,
0.0268707275390625,
0.069580078125,
-0.82763671875,
0.285400390625,
-0.63427734375,
-0.1634521484375,
0.258056640625,
-0.69921875,
0.76953125,
-0.2435302734375,
0.315185546875,
-1.2353515625,
0.80859375,
0.4150390625,
1.1806640625,
-0.76220703125,
0.1551513671875,
0.07269287109375,
-0.71044921875,
0.038818359375,
0.0859375,
0.357177734375,
0.05926513671875,
-0.7373046875,
-0.66943359375,
-0.68408203125,
-0.1458740234375,
-0.31982421875,
0.08001708984375,
-0.57470703125,
0.93017578125,
0.71875,
-0.771484375,
0.7099609375,
0.86279296875,
-0.68994140625,
0.61962890625,
0.437744140625,
0.38134765625,
-0.7041015625,
1.525390625,
0.447509765625,
0.427734375,
-0.481201171875,
-0.425048828125,
-0.1846923828125,
-0.06134033203125,
0.1856689453125,
-0.50634765625,
-0.5986328125,
0.5400390625,
-0.1475830078125,
-1.0625,
0.34912109375,
-0.95458984375,
-0.52978515625,
-0.210205078125,
-0.912109375,
1.3017578125,
1.087890625,
-0.025177001953125,
-0.00933074951171875,
-0.335205078125,
-0.11181640625,
0.5439453125,
0.5048828125,
-0.337890625,
-0.00693511962890625,
0.86328125,
0.225341796875,
0.2274169921875,
0.193603515625,
-0.630859375,
-0.0499267578125,
-0.176025390625,
0.326416015625,
0.61962890625,
0.12939453125,
0.4521484375,
0.187255859375,
0.62744140625,
-1.2353515625,
-0.2161865234375,
-0.399658203125,
0.57861328125,
0.5029296875,
0.4208984375,
0.218994140625,
-0.369140625,
-0.81982421875,
-1.0361328125,
0.14697265625,
-0.00775909423828125,
0.77392578125,
-0.59765625,
0.69921875,
0.01177978515625,
-0.52099609375,
0.72802734375,
-0.69140625,
0.1629638671875,
0.96826171875,
-0.50439453125,
0.76220703125,
-1.05859375,
0.42138671875,
-0.0257720947265625,
-0.20556640625,
0.297607421875,
0.325439453125,
0.55517578125,
-0.45263671875,
-0.382080078125,
-0.57177734375,
0.06573486328125,
0.052001953125,
-0.3798828125,
-0.07012939453125,
-0.366455078125,
-0.431396484375,
-0.90283203125,
0.448486328125,
0.689453125,
0.908203125,
0.035552978515625,
0.54296875,
0.31591796875,
0.403076171875,
0.623046875,
-0.00913238525390625,
0.246826171875,
-0.904296875,
0.84033203125,
0.322021484375,
-0.2093505859375,
-0.49560546875,
-0.2294921875,
-0.2152099609375,
0.032745361328125,
-0.2347412109375,
-0.2408447265625,
-0.8779296875,
0.51806640625,
-0.162109375,
0.72412109375,
-0.6357421875,
-0.05426025390625,
-0.69775390625,
0.337646484375,
0.5673828125,
-0.89404296875,
0.48046875,
-0.9208984375,
0.457763671875,
0.58544921875,
-0.2548828125,
-0.44580078125,
-0.56103515625,
-0.8974609375,
-0.77880859375,
0.22216796875,
1.064453125,
-0.21826171875,
0.5107421875,
-1.423828125,
0.393798828125,
0.4267578125,
-0.91015625,
0.063232421875,
-0.2061767578125,
0.399658203125,
0.173583984375,
0.759765625,
-0.23095703125,
-0.309814453125,
-0.0179443359375,
-1.2177734375,
0.41357421875,
-0.67041015625,
0.513671875,
0.137939453125,
-0.1966552734375,
0.1387939453125,
0.416015625,
-0.137939453125,
0.0660400390625,
-0.2227783203125,
0.36572265625,
-1.091796875,
-0.71484375,
0.497802734375,
-0.05908203125,
-0.413818359375,
1.021484375,
0.10162353515625,
-0.1851806640625,
0.151123046875,
0.3701171875,
-0.465576171875,
0.53125,
-0.280517578125,
0.76220703125,
-0.48291015625,
-0.556640625,
-0.52685546875,
-0.3349609375,
0.75390625,
-0.2017822265625,
-0.458740234375,
-0.224365234375,
-1.166015625,
-0.10052490234375,
0.216552734375,
-0.5751953125,
0.2430419921875,
0.125732421875,
0.269287109375,
-0.269287109375,
-0.097412109375,
-0.43798828125,
-0.06756591796875,
-0.455322265625,
-0.60791015625,
0.630859375,
0.40283203125,
0.5703125,
0.11395263671875,
-0.479736328125,
-0.0562744140625,
0.1722412109375,
-0.121826171875,
-0.677734375,
-0.25537109375,
-0.268310546875,
-0.30029296875,
-0.525390625,
0.293701171875,
-0.1297607421875,
0.404296875,
0.9794921875,
-0.04693603515625,
0.56494140625,
0.287109375,
-0.85498046875,
1.1240234375,
0.297119140625,
-0.85107421875,
-0.29638671875,
0.418701171875,
0.00373077392578125,
0.84619140625,
0.33056640625,
-0.78564453125,
-0.658203125,
-0.89208984375,
0.408447265625,
-0.9326171875,
-0.240966796875,
-0.95703125,
-0.60595703125,
-0.425537109375,
0.7392578125,
-0.1741943359375,
-0.66796875,
0.200927734375,
-0.9970703125,
0.0036411285400390625,
-0.9990234375,
-0.2012939453125,
-0.7578125,
-0.57568359375,
-0.3671875,
0.9609375,
-0.006137847900390625,
-0.0192108154296875,
0.29638671875,
0.040191650390625,
0.06842041015625,
0.2181396484375,
-0.771484375,
-0.322021484375,
0.055389404296875,
-0.035888671875,
-0.357177734375,
-0.041168212890625,
-0.7919921875,
0.6357421875,
-0.828125,
0.2012939453125,
-0.1673583984375,
-0.031524658203125,
-0.345458984375,
-0.250244140625,
0.97412109375,
-0.591796875,
0.35546875,
-0.429443359375,
0.298583984375,
0.95556640625,
-0.57861328125,
-0.338134765625,
-0.86669921875,
-0.77099609375,
-1.41796875,
0.63427734375,
-0.344970703125,
0.2479248046875,
-0.671875,
-0.62744140625,
1.064453125,
-0.75927734375,
0.350830078125,
1.0703125,
0.049041748046875,
0.343994140625,
-0.384033203125,
0.67822265625,
0.47021484375,
-0.61865234375,
0.2406005859375,
0.36279296875,
-0.65478515625,
-0.1419677734375,
-0.56982421875,
-0.9599609375,
-0.56494140625,
0.3720703125,
1.017578125,
-0.07208251953125,
0.5947265625,
-0.46435546875,
-1.2021484375,
-0.3203125,
0.70849609375,
0.1632080078125,
0.3125,
1.0654296875,
0.2264404296875,
-0.160888671875,
0.28662109375,
-0.58544921875,
-0.253662109375,
-0.283935546875,
1.2470703125,
-0.353515625,
-0.58349609375,
0.9453125,
0.7861328125,
-1.0751953125,
-0.9892578125,
-0.13525390625,
-0.0090179443359375,
0.0033702850341796875,
-0.96435546875,
-0.005290985107421875,
0.472412109375,
-0.467041015625,
0.15625,
0.24072265625,
-0.0931396484375,
0.319091796875,
0.1856689453125,
0.4140625,
-0.24755859375,
0.306884765625,
1.0458984375,
-0.364013671875,
-0.7392578125,
-0.99560546875,
-0.37451171875,
-0.309814453125,
0.2464599609375,
0.708984375,
-0.255615234375,
0.362548828125,
0.69189453125,
-0.03887939453125,
1.03125,
-0.341064453125,
-0.252685546875,
0.381103515625,
-0.72607421875,
-0.60986328125,
0.068603515625,
0.1414794921875,
-0.390380859375,
0.7099609375,
-0.62890625,
-0.057647705078125,
0.27001953125,
0.1514892578125,
-0.4482421875,
-0.9873046875,
-0.26318359375,
-1.1904296875,
-0.4384765625,
-0.44580078125,
-0.89990234375,
-0.025054931640625,
0.193115234375,
0.226806640625,
-0.7646484375,
0.03289794921875,
0.546875,
-0.34765625,
0.80322265625,
-0.70849609375,
0.0288238525390625,
-0.50341796875,
-0.46923828125,
-0.62841796875,
-0.07745361328125,
-0.6298828125,
-0.154541015625,
-0.53564453125,
0.1947021484375,
-0.181884765625,
0.54833984375,
-0.2802734375,
0.63232421875,
-0.351318359375,
-0.79833984375,
0.28125,
0.0738525390625,
-0.291748046875,
0.8994140625,
0.376953125,
0.0635986328125,
0.5244140625,
-0.0968017578125,
-0.1658935546875,
-0.18505859375,
0.77099609375,
0.49169921875,
-0.21484375,
-0.335693359375,
-0.10906982421875,
0.07952880859375,
-1.1708984375,
0.55908203125,
-0.6318359375,
0.215576171875,
0.260498046875,
-0.36474609375,
0.348388671875,
1.0654296875,
-0.62353515625,
0.398681640625,
0.050201416015625,
0.1585693359375,
0.28173828125,
0.251708984375,
-0.1259765625,
0.7158203125,
-0.23583984375,
-0.541015625,
-0.09649658203125,
0.276123046875,
-0.1395263671875,
0.3857421875,
-0.2479248046875,
-1.166015625,
-1.0869140625,
-0.11785888671875,
-0.12188720703125,
0.252197265625,
0.256591796875,
-0.261962890625,
0.0404052734375,
0.1998291015625,
-0.92431640625,
0.275634765625,
-1.068359375,
-0.94384765625,
0.78271484375,
-0.128173828125,
-0.38623046875,
0.220703125,
-0.273193359375,
-0.1697998046875,
0.172119140625,
0.345947265625,
-0.58203125,
0.442138671875,
-0.1456298828125,
0.671875,
-0.298828125,
-0.17431640625,
-0.01200103759765625,
0.66796875,
-0.95263671875,
-0.40380859375,
-0.3828125,
0.79443359375,
0.09759521484375,
-0.46533203125,
-0.57666015625,
0.1435546875,
0.205078125,
0.20556640625,
-0.45263671875,
0.1529541015625,
-0.043548583984375,
0.7646484375,
-0.99658203125,
0.10797119140625,
0.0019588470458984375,
0.2626953125,
-0.026031494140625,
-0.397216796875,
-0.744140625,
1.0361328125,
0.54248046875,
0.08740234375,
0.64501953125,
0.006214141845703125,
0.49853515625,
-0.031463623046875,
0.0120849609375,
-0.270263671875,
0.73828125,
0.75341796875,
0.7177734375,
-0.14990234375,
0.413818359375,
0.833984375,
0.2568359375,
-0.193359375,
0.37060546875,
0.01300811767578125,
-0.07855224609375,
0.30029296875,
-0.2626953125,
-0.264892578125,
-0.07745361328125,
-0.367919921875,
0.52880859375,
-0.57568359375,
-0.034423828125,
-0.3251953125,
-0.76171875,
0.8115234375,
-0.46337890625,
-0.210693359375,
0.33837890625,
-0.203857421875,
0.35791015625,
0.490234375,
-0.26025390625,
-0.326416015625,
1.169921875,
0.82177734375,
0.496337890625,
0.75634765625,
0.443603515625,
0.4013671875,
-0.58154296875,
0.295654296875,
0.1884765625,
-0.08770751953125,
-0.025054931640625,
-0.654296875,
-1.3046875,
0.607421875,
-0.1961669921875,
-0.1488037109375,
0.33642578125,
-0.74169921875,
0.2462158203125,
-0.548828125,
1.12109375,
-0.53759765625,
0.266357421875,
0.267822265625,
-0.5703125,
-0.65185546875,
0.71728515625,
-0.2418212890625,
0.2978515625,
0.13037109375,
0.927734375,
0.06402587890625,
1.677734375,
0.75,
-0.15087890625,
0.068603515625,
0.61083984375,
-0.278076171875,
-0.317138671875,
-0.541015625,
-0.3798828125,
-0.0743408203125,
-0.36376953125,
-0.7548828125,
-0.2010498046875,
0.7470703125,
0.227783203125,
-0.908203125,
-0.41845703125,
0.2978515625,
-1.0068359375,
0.5625,
0.1751708984375,
0.415771484375,
0.2763671875,
-0.2115478515625,
-0.298095703125,
-0.6376953125,
0.3974609375,
-0.642578125,
0.31591796875,
-0.53271484375,
-0.2242431640625,
-0.68896484375,
-0.56298828125,
-0.35498046875,
-0.08056640625,
-0.54150390625,
-0.716796875,
0.6396484375,
0.272216796875,
0.44384765625,
0.4375,
-0.36181640625,
0.2763671875,
0.845703125,
0.9990234375,
-0.3037109375,
1.138671875,
0.31201171875,
0.004970550537109375,
0.10107421875,
-0.386474609375,
0.392578125,
0.0261077880859375,
0.3310546875,
-0.60498046875,
-0.1131591796875,
-1.00390625,
-1.01171875,
0.2841796875,
0.4453125,
0.2342529296875,
-0.84619140625,
-1.333984375,
-0.26953125,
-1.0859375,
-0.341796875,
-0.705078125,
0.818359375,
-0.6279296875,
-0.04339599609375,
0.08685302734375,
-0.99951171875,
4.21875,
0.82080078125,
0.51123046875,
0.25830078125,
0.271240234375,
0.86181640625,
0.41455078125,
-0.406005859375,
-0.266845703125,
-0.52685546875,
0.57861328125,
-0.548828125,
0.0589599609375,
1.0693359375,
0.53076171875,
0.404541015625,
-0.330322265625,
-0.173828125,
0.264404296875,
-0.9619140625,
-0.86767578125,
0.346435546875,
0.1961669921875,
0.393310546875,
0.181884765625,
0.39990234375,
1.01953125,
-0.66015625,
-0.35302734375,
-0.7490234375,
0.2327880859375,
-0.33544921875,
0.98046875,
0.28173828125,
-0.0992431640625,
0.7783203125,
-0.0171661376953125,
-0.54736328125,
-0.0086822509765625,
0.238037109375,
-0.146728515625,
0.255126953125,
0.61181640625,
-0.63232421875,
-0.435791015625,
0.69384765625,
-0.60107421875,
0.599609375,
0.4482421875,
-1.076171875,
1.0283203125,
-0.10272216796875,
0.6015625,
-0.759765625,
-0.62939453125,
0.30322265625,
0.182861328125,
0.05426025390625,
-0.35595703125,
0.57080078125,
0.5439453125,
0.6494140625,
-0.1429443359375,
0.73583984375,
-1.0498046875,
0.43994140625,
-0.077392578125,
0.49609375,
-0.47802734375,
0.053985595703125,
-0.4296875,
-0.3515625,
-0.36279296875,
-0.689453125,
0.5556640625,
0.102783203125,
-0.35107421875,
0.79345703125,
0.3173828125,
-0.73876953125,
0.1964111328125,
-0.4287109375,
-0.0469970703125,
-0.416259765625,
0.7001953125,
1.16015625,
-0.480712890625,
0.06695556640625,
-0.2081298828125,
0.623046875,
0.57373046875,
0.837890625,
-0.09759521484375,
-0.6455078125,
-0.5361328125
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
We have a string of letters 'a' and 'b'. We want to perform some operations on it. On each step we choose one of substrings "ab" in the string and replace it with the string "bba". If we have no "ab" as a substring, our job is done. Print the minimum number of steps we should perform to make our job done modulo 109 + 7.
The string "ab" appears as a substring if there is a letter 'b' right after the letter 'a' somewhere in the string.
Input
The first line contains the initial string consisting of letters 'a' and 'b' only with length from 1 to 106.
Output
Print the minimum number of steps modulo 109 + 7.
Examples
Input
ab
Output
1
Input
aab
Output
3
Note
The first example: "ab" → "bba".
The second example: "aab" → "abba" → "bbaba" → "bbbbaa".
Tags: combinatorics, greedy, implementation, math
Correct Solution:
```
##############--->>>>> Deepcoder Amit Kumar Bhuyan <<<<<---##############
"""
Perfection is achieved not when there is nothing more to add, but rather when there is nothing more to take away.
"""
from __future__ import division, print_function
import os,sys
from io import BytesIO, IOBase
if sys.version_info[0] < 3:
from __builtin__ import xrange as range
from future_builtins import ascii, filter, hex, map, oct, zip
def ii(): return int(input())
def si(): return input()
def mi(): return map(int,input().strip().split(" "))
def msi(): return map(str,input().strip().split(" "))
def li(): return list(mi())
def dmain():
sys.setrecursionlimit(1000000)
threading.stack_size(1024000)
thread = threading.Thread(target=main)
thread.start()
#from collections import deque, Counter, OrderedDict,defaultdict
#from heapq import nsmallest, nlargest, heapify,heappop ,heappush, heapreplace
#from math import log,sqrt,factorial,cos,tan,sin,radians
#from bisect import bisect,bisect_left,bisect_right,insort,insort_left,insort_right
#from decimal import *
#import threading
#from itertools import permutations
#Copy 2D list m = [x[:] for x in mark] .. Avoid Using Deepcopy
import sys
input = sys.stdin.readline
scanner = lambda: int(input())
string = lambda: input().rstrip()
get_list = lambda: list(read())
read = lambda: map(int, input().split())
get_float = lambda: map(float, input().split())
# from bisect import bisect_left as lower_bound;
# from bisect import bisect_right as upper_bound;
# from math import ceil, factorial;
def ceil(x):
if x != int(x):
x = int(x) + 1
return x
def factorial(x, m):
val = 1
while x>0:
val = (val * x) % m
x -= 1
return val
def fact(x):
val = 1
while x > 0:
val *= x
x -= 1
return val
# swap_array function
def swaparr(arr, a,b):
temp = arr[a];
arr[a] = arr[b];
arr[b] = temp;
## gcd function
def gcd(a,b):
if b == 0:
return a;
return gcd(b, a % b);
## lcm function
def lcm(a, b):
return (a * b) // math.gcd(a, b)
def is_integer(n):
return math.ceil(n) == math.floor(n)
## nCr function efficient using Binomial Cofficient
def nCr(n, k):
if k > n:
return 0
if(k > n - k):
k = n - k
res = 1
for i in range(k):
res = res * (n - i)
res = res / (i + 1)
return int(res)
## upper bound function code -- such that e in a[:i] e < x;
## prime factorization
def primefs(n):
## if n == 1 ## calculating primes
primes = {}
while(n%2 == 0 and n > 0):
primes[2] = primes.get(2, 0) + 1
n = n//2
for i in range(3, int(n**0.5)+2, 2):
while(n%i == 0 and n > 0):
primes[i] = primes.get(i, 0) + 1
n = n//i
if n > 2:
primes[n] = primes.get(n, 0) + 1
## prime factoriazation of n is stored in dictionary
## primes and can be accesed. O(sqrt n)
return primes
## MODULAR EXPONENTIATION FUNCTION
def power(x, y, p):
res = 1
x = x % p
if (x == 0) :
return 0
while (y > 0) :
if ((y & 1) == 1) :
res = (res * x) % p
y = y >> 1
x = (x * x) % p
return res
## DISJOINT SET UNINON FUNCTIONS
def swap(a,b):
temp = a
a = b
b = temp
return a,b;
# find function with path compression included (recursive)
# def find(x, link):
# if link[x] == x:
# return x
# link[x] = find(link[x], link);
# return link[x];
# find function with path compression (ITERATIVE)
def find(x, link):
p = x;
while( p != link[p]):
p = link[p];
while( x != p):
nex = link[x];
link[x] = p;
x = nex;
return p;
# the union function which makes union(x,y)
# of two nodes x and y
def union(x, y, link, size):
x = find(x, link)
y = find(y, link)
if size[x] < size[y]:
x,y = swap(x,y)
if x != y:
size[x] += size[y]
link[y] = x
## returns an array of boolean if primes or not USING SIEVE OF ERATOSTHANES
def sieve(n):
prime = [True for i in range(n+1)]
prime[0], prime[1] = False, False
p = 2
while (p * p <= n):
if (prime[p] == True):
for i in range(p * p, n+1, p):
prime[i] = False
p += 1
return prime
# Euler's Toitent Function phi
def phi(n) :
result = n
p = 2
while(p * p<= n) :
if (n % p == 0) :
while (n % p == 0) :
n = n // p
result = result * (1.0 - (1.0 / (float) (p)))
p = p + 1
if (n > 1) :
result = result * (1.0 - (1.0 / (float)(n)))
return (int)(result)
def is_prime(n):
if n == 0:
return False
if n == 1:
return True
for i in range(2, int(n ** (1 / 2)) + 1):
if not n % i:
return False
return True
def next_prime(n, primes):
while primes[n] != True:
n += 1
return n
#### PRIME FACTORIZATION IN O(log n) using Sieve ####
MAXN = int(1e5 + 5)
def spf_sieve():
spf[1] = 1;
for i in range(2, MAXN):
spf[i] = i;
for i in range(4, MAXN, 2):
spf[i] = 2;
for i in range(3, ceil(MAXN ** 0.5), 2):
if spf[i] == i:
for j in range(i*i, MAXN, i):
if spf[j] == j:
spf[j] = i;
## function for storing smallest prime factors (spf) in the array
################## un-comment below 2 lines when using factorization #################
spf = [0 for i in range(MAXN)]
# spf_sieve();
def factoriazation(x):
res = []
for i in range(2, int(x ** 0.5) + 1):
while x % i == 0:
res.append(i)
x //= i
if x != 1:
res.append(x)
return res
## this function is useful for multiple queries only, o/w use
## primefs function above. complexity O(log n)
def factors(n):
res = []
for i in range(1, int(n ** 0.5) + 1):
if n % i == 0:
res.append(i)
res.append(n // i)
return list(set(res))
## taking integer array input
def int_array():
return list(map(int, input().strip().split()));
def float_array():
return list(map(float, input().strip().split()));
## taking string array input
def str_array():
return input().strip().split();
def binary_search(low, high, w, h, n):
while low < high:
mid = low + (high - low) // 2
# print(low, mid, high)
if check(mid, w, h, n):
low = mid + 1
else:
high = mid
return low
## for checking any conditions
def check(beauty, s, n, count):
pass
#defining a couple constants
MOD = int(1e9)+7;
CMOD = 998244353;
INF = float('inf'); NINF = -float('inf');
alphs = "abcdefghijklmnopqrstuvwxyz"
################### ---------------- TEMPLATE ENDS HERE ---------------- ###################
from itertools import permutations
import math
import bisect as bis
import random
import sys
import collections as collect
def solve():
s = string()
l = len(s)
i = 0
j = l - 1
ans = 0
while j >= 0:
if s[j] == 'b':
i += 1
else:
ans += i % MOD
i *= 2
i %= MOD
ans %= MOD
j -= 1
print(ans)
# region fastio
# template taken from https://github.com/cheran-senthil/PyRival/blob/master/templates/template.py
BUFSIZE = 8192
class FastIO(IOBase):
newlines = 0
def __init__(self, file):
self._fd = file.fileno()
self.buffer = BytesIO()
self.writable = "x" in file.mode or "r" not in file.mode
self.write = self.buffer.write if self.writable else None
def read(self):
while True:
b = os.read(self._fd, max(os.fstat(self._fd).st_size, BUFSIZE))
if not b:
break
ptr = self.buffer.tell()
self.buffer.seek(0, 2), self.buffer.write(b), self.buffer.seek(ptr)
self.newlines = 0
return self.buffer.read()
def readline(self):
while self.newlines == 0:
b = os.read(self._fd, max(os.fstat(self._fd).st_size, BUFSIZE))
self.newlines = b.count(b"\n") + (not b)
ptr = self.buffer.tell()
self.buffer.seek(0, 2), self.buffer.write(b), self.buffer.seek(ptr)
self.newlines -= 1
return self.buffer.readline()
def flush(self):
if self.writable:
os.write(self._fd, self.buffer.getvalue())
self.buffer.truncate(0), self.buffer.seek(0)
class IOWrapper(IOBase):
def __init__(self, file):
self.buffer = FastIO(file)
self.flush = self.buffer.flush
self.writable = self.buffer.writable
self.write = lambda s: self.buffer.write(s.encode("ascii"))
self.read = lambda: self.buffer.read().decode("ascii")
self.readline = lambda: self.buffer.readline().decode("ascii")
def print(*args, **kwargs):
"""Prints the values to a stream, or to sys.stdout by default."""
sep, file = kwargs.pop("sep", " "), kwargs.pop("file", sys.stdout)
at_start = True
for x in args:
if not at_start:
file.write(sep)
file.write(str(x))
at_start = False
file.write(kwargs.pop("end", "\n"))
if kwargs.pop("flush", False):
file.flush()
if sys.version_info[0] < 3:
sys.stdin, sys.stdout = FastIO(sys.stdin), FastIO(sys.stdout)
else:
sys.stdin, sys.stdout = IOWrapper(sys.stdin), IOWrapper(sys.stdout)
input = lambda: sys.stdin.readline().rstrip("\r\n")
# endregion
if __name__ == "__main__":
#read()
for i in range(1):
solve()
#dmain()
# Comment Read()
# fin_time = datetime.now()
# print("Execution time (for loop): ", (fin_time-init_time))
```
| 10,461 | [
0.3681640625,
-0.1297607421875,
-0.1331787109375,
-0.038330078125,
-0.7529296875,
-0.54248046875,
-0.1044921875,
-0.146484375,
0.17431640625,
0.80029296875,
0.54248046875,
-0.251220703125,
-0.08367919921875,
-0.87158203125,
-0.328369140625,
-0.0296783447265625,
-0.51025390625,
-0.71142578125,
-0.488037109375,
-0.28466796875,
0.228271484375,
-0.33154296875,
-1.1923828125,
-0.1214599609375,
-0.41748046875,
1.09765625,
0.6201171875,
0.061920166015625,
1.017578125,
1.15234375,
-0.15380859375,
-0.09954833984375,
0.50927734375,
-1.1826171875,
-0.1868896484375,
-0.425048828125,
0.62451171875,
-0.787109375,
-0.28564453125,
-0.4384765625,
0.1773681640625,
-0.529296875,
0.54296875,
-0.96923828125,
-1.4365234375,
0.012176513671875,
-0.05718994140625,
-0.307373046875,
-0.0780029296875,
-0.61474609375,
-0.1728515625,
-0.1519775390625,
0.42822265625,
0.06298828125,
0.07183837890625,
0.11651611328125,
0.177734375,
-0.328369140625,
-0.7890625,
-0.07476806640625,
0.4541015625,
0.100830078125,
0.06622314453125,
-0.9375,
0.05419921875,
0.186767578125,
-0.309814453125,
0.0517578125,
-0.29638671875,
-0.83251953125,
-0.06646728515625,
0.2064208984375,
-0.3994140625,
-0.650390625,
-0.1112060546875,
0.10479736328125,
0.26611328125,
-0.32666015625,
-0.67236328125,
0.9775390625,
-0.236328125,
0.81982421875,
0.1337890625,
0.06005859375,
-0.305908203125,
-0.63037109375,
-0.028564453125,
0.1600341796875,
-0.0201263427734375,
-0.2147216796875,
-0.298828125,
0.60400390625,
-0.3935546875,
0.08074951171875,
0.2276611328125,
0.53955078125,
-0.3125,
0.1126708984375,
0.33642578125,
0.4619140625,
0.64208984375,
1.2705078125,
-0.499267578125,
0.951171875,
-0.51123046875,
-0.061920166015625,
0.0645751953125,
-0.1270751953125,
-0.2381591796875,
0.2427978515625,
-0.1689453125,
-0.298828125,
0.426025390625,
0.4931640625,
-0.388671875,
1.080078125,
0.1932373046875,
0.336669921875,
-0.74951171875,
0.5859375,
0.35302734375,
0.093505859375,
0.66748046875,
-0.2352294921875,
-0.1622314453125,
-0.2763671875,
-0.509765625,
1,
-0.63623046875,
-0.1141357421875,
0.3798828125,
0.15966796875,
-0.09783935546875,
0.276611328125,
-0.15234375,
0.56201171875,
-0.1068115234375,
0.17626953125,
0.595703125,
-0.283447265625,
0.505859375,
-0.273681640625,
-0.1434326171875,
1.7900390625,
0.259521484375,
-0.0246124267578125,
0.83984375,
0.34375,
-0.76806640625,
0.294189453125,
-0.93798828125,
0.791015625,
0.53466796875,
0.3173828125,
-0.08258056640625,
-0.012115478515625,
-0.424072265625,
0.444580078125,
0.10467529296875,
0.0160675048828125,
-0.32080078125,
-0.064208984375,
-0.39453125,
1.14453125,
-0.54931640625,
1.0537109375,
-0.27685546875,
-0.3671875,
-0.0218048095703125,
-0.3896484375,
0.376708984375,
-0.2052001953125,
-0.292236328125,
0.8876953125,
0.1705322265625,
1.0048828125,
1.2939453125,
-0.179443359375,
0.5771484375,
0.2103271484375,
-0.36767578125,
0.241943359375,
0.29150390625,
1.0537109375,
0.432861328125,
0.278564453125,
-0.08428955078125,
-0.1107177734375,
-0.5966796875,
-0.55224609375,
0.2059326171875,
0.65234375,
-0.85400390625,
0.450927734375,
-0.0234222412109375,
0.1624755859375,
-0.65576171875,
-0.313232421875,
-0.06512451171875,
-0.9365234375,
-0.026824951171875,
0.50048828125,
-0.10540771484375,
0.5458984375,
-0.572265625,
-0.297119140625,
0.36767578125,
1.224609375,
-0.382080078125,
-0.0123443603515625,
0.37109375,
-0.2763671875,
-0.274169921875,
0.36474609375,
0.2578125,
-0.274169921875,
-0.6298828125,
0.75244140625,
0.06610107421875,
-0.181640625,
-0.272705078125,
0.54931640625,
0.5810546875,
0.486083984375,
-0.1322021484375,
-0.56787109375,
0.397216796875,
0.78759765625,
-0.0660400390625,
0.288818359375,
0.1282958984375,
0.712890625,
0.7568359375,
0.79345703125,
0.74951171875,
-0.01029205322265625,
0.31103515625,
0.8046875,
0.105712890625,
0.258056640625,
0.50927734375,
0.4658203125,
0.1322021484375,
0.1961669921875,
0.27587890625,
0.428955078125,
0.1336669921875,
-0.2076416015625,
-0.246826171875,
-0.07415771484375,
-0.5166015625,
0.73095703125,
0.1871337890625,
0.77685546875,
-0.185302734375,
-0.33349609375,
0.25390625,
1.134765625,
-1.0703125,
-0.447998046875,
-0.1907958984375,
0.1331787109375,
0.12255859375,
0.018096923828125,
0.74951171875,
0.57470703125,
0.63916015625,
0.3662109375,
-0.32861328125,
-0.307373046875,
-0.82177734375,
-0.716796875,
-0.77880859375,
-0.248779296875,
-0.76318359375,
-0.1688232421875,
-0.00469207763671875,
-0.98095703125,
0.189453125,
-0.372802734375,
-0.08349609375,
0.2369384765625,
-0.417724609375,
0.82275390625,
0.1715087890625,
0.447265625,
-0.59375,
0.6103515625,
0.170166015625,
1.201171875,
-0.654296875,
-0.236572265625,
-0.1815185546875,
-0.65673828125,
0.0809326171875,
0.3486328125,
0.396484375,
-0.0253143310546875,
-0.8984375,
-0.68994140625,
-0.3125,
0.1348876953125,
-0.410888671875,
0.1783447265625,
-0.467041015625,
0.7998046875,
0.53564453125,
-0.416748046875,
0.72314453125,
0.923828125,
-0.873046875,
0.6044921875,
0.08892822265625,
-0.323486328125,
-0.75732421875,
1.193359375,
0.452392578125,
0.515625,
-0.47900390625,
-0.69580078125,
-0.44091796875,
-0.02716064453125,
0.224609375,
-0.818359375,
-0.1019287109375,
0.67578125,
0.08795166015625,
-0.97265625,
0.431884765625,
-1.1328125,
-0.484619140625,
-0.44287109375,
-0.26953125,
1.05078125,
0.94482421875,
0.2039794921875,
0.10211181640625,
0.207763671875,
-0.034088134765625,
0.5390625,
0.60302734375,
-0.5576171875,
0.317626953125,
0.91064453125,
-0.009613037109375,
0.09051513671875,
0.1470947265625,
-0.429931640625,
0.078125,
0.07928466796875,
-0.0021419525146484375,
0.57470703125,
-0.1392822265625,
0.318603515625,
0.45947265625,
0.42138671875,
-0.80859375,
0.0789794921875,
-0.1087646484375,
0.63818359375,
0.475830078125,
0.6396484375,
-0.0197601318359375,
-0.37939453125,
-0.63720703125,
-1.1435546875,
0.10723876953125,
0.373291015625,
0.7998046875,
-0.5517578125,
0.93408203125,
0.2080078125,
-0.703125,
0.337158203125,
-0.650390625,
0.150146484375,
0.904296875,
0.12396240234375,
0.98828125,
-0.65380859375,
0.313720703125,
0.3203125,
0.1875,
0.347900390625,
0.74560546875,
0.48291015625,
-0.654296875,
-0.5244140625,
-0.46484375,
-0.1658935546875,
-0.1981201171875,
-0.479248046875,
0.272705078125,
-0.357177734375,
-0.0791015625,
-0.916015625,
0.5185546875,
0.63623046875,
0.86767578125,
0.05670166015625,
0.39794921875,
0.253662109375,
0.31982421875,
0.65380859375,
-0.160400390625,
0.3203125,
-0.55859375,
0.6962890625,
0.2421875,
-0.316650390625,
-0.587890625,
-0.427001953125,
0.13134765625,
0.06988525390625,
-0.482666015625,
-0.162353515625,
-1.1123046875,
0.20654296875,
-0.466552734375,
0.76708984375,
-0.59033203125,
-0.275146484375,
-0.2861328125,
0.302490234375,
0.303466796875,
-1.0146484375,
0.56005859375,
-0.75537109375,
0.79931640625,
0.49072265625,
0.03387451171875,
-0.25146484375,
-0.36181640625,
-0.6123046875,
-0.560546875,
-0.00885772705078125,
0.8125,
-0.2080078125,
0.52587890625,
-1.111328125,
0.448486328125,
0.06536865234375,
-0.4296875,
0.046844482421875,
-0.31640625,
0.73291015625,
-0.11627197265625,
0.78564453125,
-0.47314453125,
-0.70263671875,
0.418212890625,
-1.283203125,
0.671875,
-0.357177734375,
0.61962890625,
0.032745361328125,
-0.1878662109375,
0.186279296875,
0.220947265625,
-0.1358642578125,
0.1707763671875,
-0.203125,
0.6171875,
-0.88916015625,
-1.048828125,
0.5908203125,
-0.1778564453125,
-0.3427734375,
0.69873046875,
-0.0736083984375,
-0.509765625,
-0.07177734375,
0.4736328125,
-0.525390625,
0.244873046875,
-0.1337890625,
0.75830078125,
-0.23046875,
-0.7548828125,
-0.11529541015625,
-0.5498046875,
0.8759765625,
0.08050537109375,
-0.5634765625,
-0.055419921875,
-1.3994140625,
-0.250244140625,
0.0225372314453125,
-0.4619140625,
0.10015869140625,
0.329833984375,
-0.1258544921875,
-0.378662109375,
-0.024810791015625,
-0.328369140625,
-0.28759765625,
-0.57421875,
-0.18896484375,
0.357177734375,
0.71923828125,
1.0283203125,
-0.03643798828125,
-0.425537109375,
0.08465576171875,
-0.0928955078125,
0.22900390625,
-0.564453125,
-0.01047515869140625,
-0.2763671875,
-0.100341796875,
-0.25830078125,
0.03662109375,
0.0767822265625,
0.34130859375,
0.69482421875,
0.0352783203125,
0.056060791015625,
0.32666015625,
-0.72607421875,
1.25390625,
0.11151123046875,
-0.95849609375,
-0.9716796875,
0.599609375,
0.062103271484375,
0.623046875,
0.53271484375,
-0.92724609375,
-0.66748046875,
-0.974609375,
0.2489013671875,
-0.8291015625,
-0.12274169921875,
-1.2802734375,
-0.6728515625,
-0.51708984375,
0.365966796875,
0.1593017578125,
-0.61962890625,
0.309814453125,
-0.78466796875,
0.177490234375,
-0.7802734375,
0.08587646484375,
-0.87841796875,
-0.58203125,
0.12030029296875,
0.71337890625,
0.260009765625,
0.1466064453125,
-0.0419921875,
-0.4169921875,
0.44091796875,
-0.2705078125,
-0.806640625,
-0.13916015625,
-0.287841796875,
0.1572265625,
0.01461029052734375,
-0.140625,
-0.7568359375,
0.681640625,
-0.626953125,
0.376708984375,
-0.09942626953125,
-0.23583984375,
-0.08099365234375,
-0.263916015625,
0.8818359375,
-0.39306640625,
0.12213134765625,
-0.06365966796875,
0.48193359375,
0.5947265625,
-0.347900390625,
-0.40771484375,
-0.77880859375,
-0.7197265625,
-0.998046875,
0.439453125,
-0.3583984375,
0.043121337890625,
-0.6650390625,
-0.2008056640625,
1.2880859375,
-0.541015625,
0.44873046875,
1.0126953125,
0.06982421875,
-0.1029052734375,
-0.2880859375,
0.541015625,
0.271728515625,
-0.275634765625,
0.1015625,
-0.2138671875,
-0.57666015625,
0.018157958984375,
-0.304443359375,
-0.8115234375,
-0.556640625,
0.27978515625,
1.4150390625,
-0.578125,
0.654296875,
-0.2122802734375,
-1.314453125,
-0.60498046875,
0.42822265625,
0.47119140625,
0.1304931640625,
0.51708984375,
-0.04376220703125,
0.06634521484375,
0.04559326171875,
-0.263916015625,
-0.455078125,
-0.822265625,
1.2509765625,
-0.5390625,
-0.43994140625,
0.84619140625,
1.01953125,
-1.1103515625,
-1.015625,
0.283447265625,
0.125,
-0.334228515625,
-0.5048828125,
-0.112548828125,
0.5185546875,
-0.572265625,
0.07452392578125,
0.331787109375,
0.08978271484375,
0.089111328125,
0.2293701171875,
0.433349609375,
-0.391845703125,
0.57763671875,
0.8115234375,
-0.53125,
-0.473388671875,
-0.93212890625,
-0.407470703125,
-0.43701171875,
-0.06561279296875,
0.783203125,
0.046173095703125,
0.0986328125,
0.52734375,
-0.0860595703125,
0.8857421875,
-0.35986328125,
-0.287841796875,
0.0413818359375,
-0.54443359375,
-0.67333984375,
0.19189453125,
0.5439453125,
-0.10235595703125,
0.28076171875,
-0.54296875,
0.1356201171875,
0.440673828125,
0.44775390625,
-0.161865234375,
-0.8974609375,
-0.07330322265625,
-1.3291015625,
-0.4951171875,
-0.6572265625,
-0.84814453125,
-0.322998046875,
0.445068359375,
0.07373046875,
-0.58984375,
0.1629638671875,
0.41748046875,
-0.689453125,
0.50439453125,
-0.358154296875,
0.2059326171875,
-0.58740234375,
-0.572265625,
-0.81298828125,
-0.0177001953125,
-0.409423828125,
-0.2294921875,
-0.9697265625,
0.7470703125,
0.1470947265625,
0.467529296875,
-0.0711669921875,
0.8740234375,
-0.38623046875,
-0.69189453125,
0.0772705078125,
0.018280029296875,
-0.09771728515625,
1.154296875,
0.459228515625,
-0.07611083984375,
0.08404541015625,
-0.126220703125,
-0.1011962890625,
-0.5517578125,
0.414794921875,
0.416259765625,
-0.4140625,
-0.041534423828125,
-0.09033203125,
0.425048828125,
-0.7646484375,
0.274658203125,
-0.09405517578125,
-0.03106689453125,
0.113037109375,
-0.0252532958984375,
0.4384765625,
1.0654296875,
-0.2724609375,
0.0256195068359375,
0.03607177734375,
0.291748046875,
0.2020263671875,
0.1824951171875,
0.10272216796875,
0.28369140625,
-0.23388671875,
-0.58056640625,
-0.349853515625,
0.599609375,
-0.047027587890625,
0.2022705078125,
-0.447509765625,
-0.74755859375,
-0.68017578125,
-0.446533203125,
0.16162109375,
0.421142578125,
0.5126953125,
-0.52880859375,
-0.0980224609375,
0.126708984375,
-0.55322265625,
0.018829345703125,
-0.99560546875,
-1.04296875,
0.5771484375,
-0.055450439453125,
-0.6923828125,
-0.295166015625,
-0.25390625,
-0.3095703125,
0.1856689453125,
0.67822265625,
-0.3994140625,
0.37109375,
0.1221923828125,
0.3603515625,
-0.24462890625,
-0.26611328125,
0.08233642578125,
0.7333984375,
-0.68310546875,
-0.5244140625,
0.248779296875,
0.97705078125,
0.1717529296875,
-0.376220703125,
-0.4072265625,
0.51513671875,
-0.201171875,
0.308837890625,
-0.75439453125,
0.08819580078125,
0.032379150390625,
0.857421875,
-0.7353515625,
0.24853515625,
-0.0266265869140625,
0.31640625,
0.0439453125,
-0.65283203125,
-0.56103515625,
0.95849609375,
0.56787109375,
-0.249755859375,
0.8037109375,
-0.05438232421875,
0.294189453125,
-0.041534423828125,
-0.0288238525390625,
0.116455078125,
0.67919921875,
0.77294921875,
0.61474609375,
-0.33935546875,
0.4013671875,
0.8720703125,
-0.2880859375,
-0.47119140625,
0.2215576171875,
0.11798095703125,
-0.031524658203125,
-0.11456298828125,
-0.24658203125,
-0.287353515625,
-0.297607421875,
-0.6875,
0.55859375,
-0.2303466796875,
0.0175628662109375,
-0.1273193359375,
-0.8740234375,
0.767578125,
-0.190185546875,
-0.4111328125,
0.2069091796875,
-0.50537109375,
0.3583984375,
0.57275390625,
-0.26416015625,
-0.42431640625,
0.57568359375,
0.6044921875,
0.671875,
0.7705078125,
-0.0272216796875,
0.38916015625,
-0.4345703125,
0.2467041015625,
-0.0628662109375,
-0.176513671875,
-0.09619140625,
-0.603515625,
-1.1376953125,
0.53271484375,
-0.591796875,
-0.65576171875,
0.65869140625,
-0.583984375,
0.1488037109375,
-0.351806640625,
0.76220703125,
-0.52490234375,
0.1285400390625,
0.389404296875,
-0.284423828125,
-0.771484375,
0.7255859375,
-0.287109375,
0.13916015625,
-0.1461181640625,
1.2275390625,
-0.139892578125,
1.56640625,
0.6875,
-0.16845703125,
0.181396484375,
0.43017578125,
-0.3642578125,
-0.64111328125,
-0.47119140625,
-0.42236328125,
-0.10345458984375,
-0.64697265625,
-0.52783203125,
0.277099609375,
0.40478515625,
0.061614990234375,
-0.775390625,
-0.1661376953125,
0.2303466796875,
-0.765625,
0.39697265625,
0.328857421875,
-0.0105133056640625,
0.1207275390625,
0.051666259765625,
-0.1470947265625,
-0.3115234375,
0.1341552734375,
-0.9384765625,
0.4970703125,
-0.88916015625,
-0.463623046875,
-0.59228515625,
-0.83349609375,
-0.2978515625,
0.07684326171875,
-0.31787109375,
-0.69775390625,
0.27099609375,
0.533203125,
0.1990966796875,
0.5888671875,
-0.2386474609375,
0.1971435546875,
1.13671875,
1.0390625,
0.279052734375,
0.73291015625,
0.1888427734375,
-0.1470947265625,
0.0997314453125,
-0.2152099609375,
0.324951171875,
0.068115234375,
0.41064453125,
-0.160888671875,
0.1597900390625,
-0.58837890625,
-1.5341796875,
0.499267578125,
0.480224609375,
0.366455078125,
-0.68798828125,
-0.98779296875,
-0.07305908203125,
-1.2685546875,
-0.27001953125,
-0.6787109375,
0.94091796875,
-0.474365234375,
-0.03680419921875,
-0.138427734375,
-1.14453125,
4.3984375,
1.1552734375,
0.974609375,
0.6201171875,
0.27001953125,
0.9638671875,
0.043487548828125,
-0.2054443359375,
0.007183074951171875,
-0.338623046875,
0.79638671875,
-0.485107421875,
-0.050628662109375,
0.6728515625,
0.158935546875,
0.424072265625,
-0.439208984375,
0.61328125,
-0.253662109375,
-0.80224609375,
-1.0205078125,
0.334716796875,
-0.11480712890625,
0.37451171875,
0.05059814453125,
0.1761474609375,
0.74267578125,
-1.0234375,
-0.00753021240234375,
-0.69921875,
0.09259033203125,
-0.4892578125,
1.142578125,
-0.07647705078125,
0.1546630859375,
0.52197265625,
-0.00746917724609375,
-0.489501953125,
0.1123046875,
-0.049468994140625,
-0.250244140625,
-0.34619140625,
0.412841796875,
-0.912109375,
-0.004024505615234375,
0.560546875,
-0.50390625,
0.421875,
-0.11834716796875,
-0.98486328125,
0.6591796875,
-0.272216796875,
0.27783203125,
-1.0048828125,
-0.1483154296875,
-0.10797119140625,
0.1900634765625,
-0.05926513671875,
-0.34814453125,
0.353759765625,
0.5419921875,
0.435302734375,
0.1412353515625,
0.405029296875,
-0.95361328125,
0.296630859375,
-0.1610107421875,
0.58203125,
-0.560546875,
-0.0826416015625,
-0.472412109375,
-0.194091796875,
-0.2398681640625,
-0.331787109375,
0.49365234375,
-0.0239715576171875,
-0.055877685546875,
0.43701171875,
0.49365234375,
-0.6142578125,
0.123046875,
-0.04833984375,
-0.09210205078125,
-0.57421875,
0.83837890625,
1.1962890625,
-0.453369140625,
-0.360107421875,
-0.49365234375,
0.525390625,
0.6376953125,
0.471435546875,
-0.12310791015625,
-0.82470703125,
-0.045379638671875
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
We have a string of letters 'a' and 'b'. We want to perform some operations on it. On each step we choose one of substrings "ab" in the string and replace it with the string "bba". If we have no "ab" as a substring, our job is done. Print the minimum number of steps we should perform to make our job done modulo 109 + 7.
The string "ab" appears as a substring if there is a letter 'b' right after the letter 'a' somewhere in the string.
Input
The first line contains the initial string consisting of letters 'a' and 'b' only with length from 1 to 106.
Output
Print the minimum number of steps modulo 109 + 7.
Examples
Input
ab
Output
1
Input
aab
Output
3
Note
The first example: "ab" → "bba".
The second example: "aab" → "abba" → "bbaba" → "bbbbaa".
Tags: combinatorics, greedy, implementation, math
Correct Solution:
```
s = input()
cnt = 0
ans = 0
mod = 1000000007
for i in reversed(range(len(s))):
if(s[i] is 'a'):
ans = (ans + cnt) % mod
cnt = (cnt * 2) % mod
else:
cnt += 1
print(ans)
```
| 10,462 | [
0.394287109375,
-0.173583984375,
0.0469970703125,
0.06646728515625,
-0.71728515625,
-0.66748046875,
0.07904052734375,
-0.1405029296875,
0.225830078125,
0.96826171875,
0.6982421875,
-0.316650390625,
-0.2198486328125,
-0.8603515625,
-0.496337890625,
-0.01406097412109375,
-0.474853515625,
-0.76025390625,
-0.385498046875,
-0.334228515625,
0.08709716796875,
-0.2330322265625,
-1.1669921875,
-0.099853515625,
-0.2176513671875,
0.970703125,
0.7177734375,
-0.08575439453125,
1.021484375,
1.25390625,
-0.20361328125,
-0.2218017578125,
0.489990234375,
-1.0615234375,
-0.407958984375,
-0.494384765625,
0.5390625,
-0.90966796875,
-0.12115478515625,
-0.29296875,
0.260498046875,
-0.6845703125,
0.51611328125,
-0.81494140625,
-1.458984375,
0.06744384765625,
-0.130126953125,
-0.4541015625,
-0.02215576171875,
-0.59228515625,
-0.132080078125,
-0.345458984375,
0.420166015625,
0.06365966796875,
0.0445556640625,
0.158203125,
0.275146484375,
-0.379150390625,
-0.84375,
0.1649169921875,
0.44970703125,
0.0197601318359375,
0.10369873046875,
-0.916015625,
-0.0806884765625,
0.190673828125,
-0.3759765625,
0.062042236328125,
-0.1806640625,
-0.994140625,
-0.04400634765625,
0.2457275390625,
-0.328125,
-0.53173828125,
-0.1292724609375,
0.1363525390625,
0.417236328125,
-0.2408447265625,
-0.6611328125,
1.1552734375,
-0.279052734375,
0.6884765625,
0.1878662109375,
0.2081298828125,
-0.268310546875,
-0.465087890625,
0.0386962890625,
0.257080078125,
-0.12469482421875,
-0.1236572265625,
-0.3349609375,
0.7275390625,
-0.31591796875,
-0.06182861328125,
0.28564453125,
0.50634765625,
-0.3818359375,
0.1719970703125,
0.63720703125,
0.281982421875,
0.8359375,
1.1025390625,
-0.5537109375,
0.775390625,
-0.54541015625,
-0.07196044921875,
0.0325927734375,
-0.117431640625,
-0.2861328125,
0.035736083984375,
-0.27734375,
-0.26904296875,
0.611328125,
0.3203125,
-0.556640625,
1.095703125,
0.23779296875,
0.41015625,
-0.59326171875,
0.65185546875,
0.4306640625,
0.11798095703125,
0.71728515625,
-0.2177734375,
-0.227783203125,
-0.04034423828125,
-0.55859375,
1.0986328125,
-0.86376953125,
-0.2012939453125,
0.167236328125,
0.121826171875,
0.06756591796875,
0.36767578125,
-0.2320556640625,
0.67578125,
-0.06146240234375,
0.2451171875,
0.7431640625,
-0.50732421875,
0.6689453125,
-0.324462890625,
-0.169189453125,
1.728515625,
0.148681640625,
-0.1058349609375,
0.82373046875,
0.4150390625,
-0.8447265625,
0.33544921875,
-1.0986328125,
0.796875,
0.31787109375,
0.3974609375,
-0.018585205078125,
0.175537109375,
-0.348388671875,
0.5,
0.08673095703125,
-0.1728515625,
-0.576171875,
0.0023212432861328125,
-0.368408203125,
1.05859375,
-0.5224609375,
0.8662109375,
-0.262939453125,
-0.1966552734375,
-0.1451416015625,
-0.5302734375,
0.172607421875,
-0.281494140625,
-0.214111328125,
0.94091796875,
0.35400390625,
1.087890625,
1.2119140625,
-0.281982421875,
0.48828125,
0.359619140625,
-0.38623046875,
0.20947265625,
0.3330078125,
0.90185546875,
0.275146484375,
0.40283203125,
-0.320556640625,
-0.0196685791015625,
-0.669921875,
-0.39013671875,
0.262939453125,
0.7021484375,
-0.76123046875,
0.5009765625,
-0.1436767578125,
-0.078857421875,
-0.73388671875,
-0.2061767578125,
-0.119384765625,
-0.96533203125,
-0.1776123046875,
0.55029296875,
-0.08160400390625,
0.3095703125,
-0.525390625,
-0.5283203125,
0.4130859375,
1.103515625,
-0.451416015625,
0.1263427734375,
0.382568359375,
-0.10357666015625,
-0.10540771484375,
0.45263671875,
0.0699462890625,
-0.278564453125,
-0.5810546875,
0.73828125,
0.031402587890625,
-0.1634521484375,
-0.1846923828125,
0.646484375,
0.4755859375,
0.79638671875,
-0.0888671875,
-0.46435546875,
0.548828125,
1.0361328125,
0.002277374267578125,
0.66650390625,
0.18359375,
0.79443359375,
0.97705078125,
0.8720703125,
0.7275390625,
0.1968994140625,
0.349609375,
0.84765625,
0.06903076171875,
0.284423828125,
0.55419921875,
0.69287109375,
0.2841796875,
0.279052734375,
0.428466796875,
0.60205078125,
0.262451171875,
-0.12493896484375,
-0.051055908203125,
-0.01910400390625,
-0.3642578125,
0.85546875,
0.0762939453125,
0.60009765625,
0.022979736328125,
-0.2464599609375,
0.2078857421875,
1.0732421875,
-1.0537109375,
-0.472900390625,
-0.082763671875,
-0.0677490234375,
-0.05560302734375,
-0.047607421875,
0.90234375,
0.68994140625,
0.75830078125,
0.46484375,
-0.278564453125,
-0.28173828125,
-0.7236328125,
-0.79443359375,
-0.8525390625,
-0.2406005859375,
-0.75732421875,
-0.100830078125,
-0.114501953125,
-0.99462890625,
-0.0166015625,
-0.283447265625,
-0.1671142578125,
0.273681640625,
-0.62060546875,
0.8076171875,
-0.02685546875,
0.2430419921875,
-0.6142578125,
0.6396484375,
0.0673828125,
1.1171875,
-0.79345703125,
0.049896240234375,
-0.0838623046875,
-0.7265625,
0.0011129379272460938,
0.365966796875,
0.30712890625,
-0.00632476806640625,
-0.80712890625,
-0.89453125,
-0.54541015625,
0.271484375,
-0.31005859375,
0.3994140625,
-0.402587890625,
0.62060546875,
0.537109375,
-0.52783203125,
0.603515625,
1.0556640625,
-0.900390625,
0.58544921875,
0.060302734375,
-0.3955078125,
-0.80517578125,
1.095703125,
0.57470703125,
0.6044921875,
-0.372314453125,
-0.65966796875,
-0.39599609375,
-0.01477813720703125,
0.2305908203125,
-0.791015625,
-0.2320556640625,
0.63623046875,
0.0206298828125,
-0.9248046875,
0.54052734375,
-0.9619140625,
-0.6484375,
-0.6279296875,
-0.423583984375,
1.17578125,
0.88134765625,
0.06805419921875,
0.06964111328125,
0.12188720703125,
0.046295166015625,
0.413330078125,
0.56591796875,
-0.611328125,
0.204833984375,
0.91455078125,
0.01389312744140625,
-0.0265350341796875,
0.2041015625,
-0.379150390625,
-0.2132568359375,
0.1705322265625,
0.1353759765625,
0.609375,
0.0098876953125,
0.447021484375,
0.364013671875,
0.53369140625,
-0.775390625,
0.03656005859375,
-0.2279052734375,
0.7099609375,
0.58203125,
0.64404296875,
-0.06243896484375,
-0.398193359375,
-0.61181640625,
-1.3037109375,
0.048065185546875,
0.2471923828125,
0.74853515625,
-0.5361328125,
1.138671875,
0.21044921875,
-0.5625,
0.23291015625,
-0.7265625,
0.320556640625,
0.83544921875,
0.1236572265625,
0.99169921875,
-0.84912109375,
0.465087890625,
0.1334228515625,
0.035003662109375,
0.44189453125,
0.65283203125,
0.261474609375,
-0.6435546875,
-0.828125,
-0.50537109375,
-0.12548828125,
-0.2578125,
-0.50341796875,
0.2822265625,
-0.494873046875,
-0.1488037109375,
-0.97509765625,
0.490234375,
0.70361328125,
0.80078125,
0.027374267578125,
0.263671875,
0.34716796875,
0.315673828125,
0.64404296875,
-0.1038818359375,
0.175048828125,
-0.6064453125,
0.80908203125,
0.2039794921875,
-0.353271484375,
-0.7197265625,
-0.36572265625,
0.07830810546875,
0.1712646484375,
-0.56298828125,
-0.1380615234375,
-1.0546875,
0.2208251953125,
-0.418212890625,
0.63671875,
-0.65087890625,
-0.2196044921875,
-0.2237548828125,
0.403076171875,
0.244873046875,
-1.037109375,
0.57421875,
-0.990234375,
0.89208984375,
0.61083984375,
0.103759765625,
-0.11053466796875,
-0.341064453125,
-0.7724609375,
-0.452880859375,
-0.10845947265625,
0.80419921875,
-0.223876953125,
0.439697265625,
-1.3212890625,
0.59033203125,
0.037628173828125,
-0.51513671875,
0.1529541015625,
-0.2060546875,
0.8134765625,
-0.21484375,
0.82568359375,
-0.44482421875,
-0.72021484375,
0.1451416015625,
-1.373046875,
0.74609375,
-0.462890625,
0.87060546875,
0.1654052734375,
-0.1748046875,
0.29443359375,
0.183837890625,
-0.2364501953125,
0.275146484375,
-0.258544921875,
0.475830078125,
-0.83935546875,
-0.95068359375,
0.57470703125,
-0.1683349609375,
-0.347900390625,
0.7685546875,
0.04833984375,
-0.51513671875,
-0.08587646484375,
0.60595703125,
-0.54345703125,
0.195556640625,
-0.08514404296875,
0.7275390625,
-0.45068359375,
-0.771484375,
-0.2056884765625,
-0.54248046875,
0.78857421875,
0.0275421142578125,
-0.5869140625,
-0.125,
-1.2939453125,
-0.2493896484375,
0.138671875,
-0.335693359375,
0.26416015625,
0.32958984375,
-0.06951904296875,
-0.261474609375,
-0.046356201171875,
-0.38671875,
-0.440673828125,
-0.77099609375,
-0.1661376953125,
0.106689453125,
0.71533203125,
0.94287109375,
-0.046630859375,
-0.286376953125,
-0.00513458251953125,
0.08624267578125,
0.162353515625,
-0.53076171875,
-0.1884765625,
-0.303955078125,
-0.0628662109375,
-0.398681640625,
0.185791015625,
0.1630859375,
0.321044921875,
0.935546875,
-0.0265655517578125,
0.0780029296875,
0.344970703125,
-0.625,
1.34765625,
0.05902099609375,
-0.88623046875,
-0.90234375,
0.57470703125,
-0.06365966796875,
0.5966796875,
0.51953125,
-1.046875,
-0.65576171875,
-0.9111328125,
0.2091064453125,
-0.96484375,
-0.34765625,
-1.1533203125,
-0.7724609375,
-0.69189453125,
0.359375,
0.09088134765625,
-0.51611328125,
0.55615234375,
-0.771484375,
0.308349609375,
-0.86181640625,
0.1015625,
-0.63720703125,
-0.7880859375,
0.1937255859375,
0.9443359375,
0.1959228515625,
0.365478515625,
0.02642822265625,
-0.418212890625,
0.46923828125,
-0.2144775390625,
-0.78857421875,
-0.2130126953125,
-0.2467041015625,
0.25634765625,
0.0289154052734375,
-0.142822265625,
-0.62451171875,
1.0185546875,
-0.6337890625,
0.423828125,
0.132568359375,
-0.294921875,
-0.302490234375,
-0.2705078125,
0.869140625,
-0.30078125,
0.080322265625,
0.0638427734375,
0.320068359375,
0.751953125,
-0.51904296875,
-0.50146484375,
-0.7822265625,
-0.6923828125,
-1.001953125,
0.6337890625,
-0.244873046875,
0.2484130859375,
-0.78662109375,
-0.33447265625,
1.369140625,
-0.55615234375,
0.430419921875,
0.96044921875,
-0.002197265625,
0.2198486328125,
-0.31494140625,
0.662109375,
0.419189453125,
-0.2783203125,
0.125244140625,
-0.115478515625,
-0.69580078125,
-0.0928955078125,
-0.175537109375,
-0.80859375,
-0.72900390625,
0.322998046875,
1.30859375,
-0.421630859375,
0.5859375,
-0.378662109375,
-1.314453125,
-0.74609375,
0.52099609375,
0.296630859375,
0.327880859375,
0.74951171875,
-0.09515380859375,
0.0810546875,
-0.0745849609375,
-0.4345703125,
-0.53955078125,
-0.76611328125,
1.2587890625,
-0.60791015625,
-0.457275390625,
0.8505859375,
0.90673828125,
-1.150390625,
-0.98779296875,
0.2181396484375,
-0.08697509765625,
-0.397705078125,
-0.51123046875,
-0.05072021484375,
0.7724609375,
-0.53515625,
0.1553955078125,
0.348876953125,
-0.0828857421875,
0.183837890625,
0.03765869140625,
0.572265625,
-0.26513671875,
0.6962890625,
0.546875,
-0.462890625,
-0.468505859375,
-0.99560546875,
-0.354736328125,
-0.32080078125,
-0.00119781494140625,
0.82421875,
-0.031585693359375,
0.2200927734375,
0.5244140625,
0.1435546875,
0.71875,
-0.421875,
-0.350341796875,
0.2327880859375,
-0.57373046875,
-0.478759765625,
0.1514892578125,
0.423828125,
-0.06494140625,
0.37060546875,
-0.6162109375,
-0.10595703125,
0.314208984375,
0.48486328125,
-0.35107421875,
-0.85107421875,
-0.2220458984375,
-1.4677734375,
-0.5537109375,
-0.66064453125,
-0.9130859375,
-0.143798828125,
0.387939453125,
0.053558349609375,
-0.6669921875,
0.0240325927734375,
0.2216796875,
-0.70361328125,
0.52197265625,
-0.28955078125,
0.26708984375,
-0.34912109375,
-0.66748046875,
-0.98974609375,
-0.1781005859375,
-0.409423828125,
-0.375244140625,
-1.0654296875,
0.69921875,
0.1708984375,
0.288330078125,
-0.3037109375,
0.8544921875,
-0.349609375,
-0.8486328125,
0.25537109375,
0.168701171875,
0.0132904052734375,
1.2666015625,
0.4609375,
0.168701171875,
0.060302734375,
-0.1083984375,
-0.2283935546875,
-0.426513671875,
0.61328125,
0.410888671875,
-0.4970703125,
-0.1429443359375,
-0.0751953125,
0.325927734375,
-0.8720703125,
0.336181640625,
-0.2442626953125,
0.08465576171875,
0.12493896484375,
-0.1524658203125,
0.2474365234375,
1.41015625,
-0.22314453125,
0.1142578125,
0.01934814453125,
0.1568603515625,
0.12060546875,
0.330078125,
-0.0211181640625,
0.51025390625,
-0.10321044921875,
-0.44287109375,
-0.365478515625,
0.517578125,
0.078125,
-0.00675201416015625,
-0.3095703125,
-0.892578125,
-0.62109375,
-0.318115234375,
-0.0187835693359375,
0.3740234375,
0.61962890625,
-0.46875,
-0.0701904296875,
0.040435791015625,
-0.64599609375,
-0.06549072265625,
-1.0771484375,
-0.966796875,
0.4951171875,
-0.017120361328125,
-0.6484375,
-0.1448974609375,
-0.26953125,
-0.31982421875,
-0.09918212890625,
0.70654296875,
-0.469482421875,
0.430908203125,
0.03704833984375,
0.314453125,
-0.14990234375,
-0.2196044921875,
0.10394287109375,
0.720703125,
-0.60791015625,
-0.67236328125,
0.0926513671875,
0.8759765625,
0.19775390625,
-0.461181640625,
-0.10833740234375,
0.3798828125,
-0.1578369140625,
0.324951171875,
-0.61767578125,
-0.06268310546875,
0.1240234375,
1.0009765625,
-0.75390625,
0.0364990234375,
-0.184814453125,
0.10211181640625,
-0.071533203125,
-0.640625,
-0.587890625,
1.0615234375,
0.61474609375,
-0.173583984375,
0.7216796875,
0.043975830078125,
0.28125,
-0.0582275390625,
-0.0183258056640625,
0.255859375,
0.52197265625,
0.75537109375,
0.548828125,
-0.056549072265625,
0.2548828125,
0.87646484375,
-0.30615234375,
-0.464599609375,
0.360595703125,
-0.032562255859375,
-0.0272216796875,
-0.09869384765625,
-0.011138916015625,
-0.2255859375,
-0.238037109375,
-0.83203125,
0.8017578125,
-0.20068359375,
0.317626953125,
-0.115478515625,
-0.79638671875,
0.91064453125,
-0.34619140625,
-0.359375,
0.314208984375,
-0.6865234375,
0.2393798828125,
0.5615234375,
-0.3427734375,
-0.306640625,
0.6875,
0.58203125,
0.67041015625,
0.748046875,
0.1591796875,
0.45458984375,
-0.47705078125,
0.2000732421875,
-0.198486328125,
-0.19677734375,
-0.1494140625,
-0.61376953125,
-1.1484375,
0.43505859375,
-0.64990234375,
-0.6669921875,
0.7333984375,
-0.61962890625,
0.27978515625,
-0.253173828125,
0.76708984375,
-0.38916015625,
0.159912109375,
0.62060546875,
-0.2374267578125,
-0.77978515625,
0.806640625,
-0.279541015625,
0.2548828125,
-0.201904296875,
1.158203125,
-0.1783447265625,
1.4345703125,
0.58984375,
-0.289306640625,
0.2083740234375,
0.31494140625,
-0.470947265625,
-0.583984375,
-0.55712890625,
-0.6142578125,
-0.09857177734375,
-0.486328125,
-0.53173828125,
0.1920166015625,
0.3447265625,
0.017791748046875,
-0.77587890625,
-0.10369873046875,
0.297119140625,
-0.7685546875,
0.42919921875,
0.274658203125,
0.039825439453125,
0.11053466796875,
-0.081298828125,
-0.09765625,
-0.2000732421875,
0.2191162109375,
-0.7626953125,
0.46923828125,
-1.0361328125,
-0.2138671875,
-0.73486328125,
-0.7734375,
-0.2408447265625,
0.0660400390625,
-0.306640625,
-0.9228515625,
0.29443359375,
0.335205078125,
0.187744140625,
0.515625,
-0.246826171875,
0.2626953125,
1.0791015625,
1.0234375,
0.034942626953125,
0.77294921875,
0.354248046875,
-0.0782470703125,
-0.04730224609375,
-0.2578125,
0.452392578125,
-0.033355712890625,
0.5244140625,
-0.360107421875,
0.1824951171875,
-0.73876953125,
-1.4609375,
0.4501953125,
0.5537109375,
0.361328125,
-0.8154296875,
-1.1142578125,
-0.1322021484375,
-1.255859375,
-0.178955078125,
-0.72314453125,
1.0517578125,
-0.5947265625,
0.045654296875,
-0.192626953125,
-1.2255859375,
4.25390625,
1.0439453125,
0.8232421875,
0.6748046875,
0.175537109375,
0.92529296875,
0.025543212890625,
-0.423583984375,
-0.04705810546875,
-0.1536865234375,
0.77734375,
-0.63427734375,
-0.09259033203125,
0.78955078125,
0.2587890625,
0.56787109375,
-0.396728515625,
0.451416015625,
-0.1043701171875,
-0.93896484375,
-0.89990234375,
0.515625,
-0.095703125,
0.478515625,
0.08154296875,
0.1578369140625,
0.77490234375,
-1.03515625,
0.173583984375,
-0.74365234375,
0.19482421875,
-0.359375,
1.1474609375,
0.08734130859375,
0.1302490234375,
0.439208984375,
-0.040557861328125,
-0.437744140625,
0.264404296875,
0.0562744140625,
-0.1729736328125,
-0.033050537109375,
0.45654296875,
-0.91943359375,
-0.04400634765625,
0.485595703125,
-0.67138671875,
0.458251953125,
-0.1531982421875,
-1.048828125,
0.92626953125,
-0.1783447265625,
0.36328125,
-0.90771484375,
-0.27587890625,
-0.126953125,
0.285888671875,
-0.12298583984375,
-0.44775390625,
0.431884765625,
0.50732421875,
0.51171875,
0.2734375,
0.525390625,
-0.96337890625,
0.16943359375,
-0.157958984375,
0.362548828125,
-0.5390625,
0.09552001953125,
-0.38427734375,
-0.483642578125,
-0.3486328125,
-0.48876953125,
0.59228515625,
0.057525634765625,
-0.039031982421875,
0.41796875,
0.46533203125,
-0.68212890625,
0.01058197021484375,
-0.1634521484375,
-0.056396484375,
-0.65771484375,
0.734375,
1.2412109375,
-0.556640625,
-0.321533203125,
-0.354736328125,
0.39453125,
0.44287109375,
0.478515625,
-0.07940673828125,
-0.77783203125,
-0.033477783203125
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
We have a string of letters 'a' and 'b'. We want to perform some operations on it. On each step we choose one of substrings "ab" in the string and replace it with the string "bba". If we have no "ab" as a substring, our job is done. Print the minimum number of steps we should perform to make our job done modulo 109 + 7.
The string "ab" appears as a substring if there is a letter 'b' right after the letter 'a' somewhere in the string.
Input
The first line contains the initial string consisting of letters 'a' and 'b' only with length from 1 to 106.
Output
Print the minimum number of steps modulo 109 + 7.
Examples
Input
ab
Output
1
Input
aab
Output
3
Note
The first example: "ab" → "bba".
The second example: "aab" → "abba" → "bbaba" → "bbbbaa".
Tags: combinatorics, greedy, implementation, math
Correct Solution:
```
s = input()
a, b = 0, 0
for i in reversed(s):
if i == 'b':
b += 1
else:
a += b
b *= 2
b %= 10**9 + 7
print(a % (10**9 + 7))
"""
from re import findall
s = input()
k = 0
p = findall('ab', s)
while p:
k += len(p)
s = s.replace('ab', 'bba')
p = findall('ab', s)
print(k)
from re import search
s = input()
k = 0
while search('ab', s):
k += 1
s = s.replace('ab', 'bba', 1)
print(k)
from re import *
s = input()
k = 0
pattern = compile('ab')
while pattern.search(s):
k += 1
s = s.replace('ab', 'bba', 1)
print(k)
"""
```
| 10,463 | [
0.348388671875,
-0.08184814453125,
-0.003849029541015625,
-0.051513671875,
-0.7216796875,
-0.59423828125,
-0.05133056640625,
-0.164306640625,
0.31201171875,
0.90966796875,
0.66796875,
-0.3720703125,
-0.1904296875,
-0.87158203125,
-0.464111328125,
-0.1361083984375,
-0.52197265625,
-0.78369140625,
-0.369873046875,
-0.187255859375,
0.01007080078125,
-0.09912109375,
-1.052734375,
-0.11407470703125,
-0.150634765625,
0.9892578125,
0.66845703125,
-0.049346923828125,
0.9755859375,
1.30078125,
-0.1925048828125,
-0.163818359375,
0.474609375,
-1.1123046875,
-0.419921875,
-0.52685546875,
0.59375,
-0.92578125,
-0.125244140625,
-0.33056640625,
0.3046875,
-0.59033203125,
0.414306640625,
-0.83056640625,
-1.5888671875,
0.255615234375,
-0.1302490234375,
-0.45556640625,
-0.0367431640625,
-0.4833984375,
-0.0191497802734375,
-0.340576171875,
0.39404296875,
0.03167724609375,
0.0994873046875,
0.1563720703125,
0.229248046875,
-0.328369140625,
-0.8203125,
0.2103271484375,
0.493896484375,
0.0771484375,
0.0997314453125,
-0.7412109375,
-0.10858154296875,
0.15478515625,
-0.3046875,
0.049591064453125,
-0.1153564453125,
-1.0732421875,
-0.051483154296875,
0.221923828125,
-0.361083984375,
-0.5400390625,
-0.1649169921875,
0.1124267578125,
0.364501953125,
-0.31884765625,
-0.7626953125,
1.0732421875,
-0.283935546875,
0.76025390625,
0.388427734375,
0.2337646484375,
-0.2841796875,
-0.56494140625,
0.0528564453125,
0.34033203125,
0.07891845703125,
-0.045318603515625,
-0.447998046875,
0.79052734375,
-0.380126953125,
-0.014801025390625,
0.33642578125,
0.67724609375,
-0.3857421875,
0.13623046875,
0.52685546875,
0.2310791015625,
0.87548828125,
1.05078125,
-0.64306640625,
0.8349609375,
-0.5546875,
-0.038055419921875,
0.07879638671875,
-0.1490478515625,
-0.278564453125,
0.105712890625,
-0.22314453125,
-0.29150390625,
0.5693359375,
0.311767578125,
-0.57275390625,
1.095703125,
0.26611328125,
0.384765625,
-0.50146484375,
0.64111328125,
0.41552734375,
0.1728515625,
0.68603515625,
-0.132568359375,
-0.1943359375,
-0.048126220703125,
-0.728515625,
1.1083984375,
-0.7958984375,
-0.1441650390625,
0.2032470703125,
0.1304931640625,
0.0777587890625,
0.3642578125,
-0.15087890625,
0.63232421875,
-0.1689453125,
0.343994140625,
0.74609375,
-0.45166015625,
0.681640625,
-0.3359375,
-0.2197265625,
1.7001953125,
0.250244140625,
-0.006252288818359375,
0.9677734375,
0.341796875,
-0.89599609375,
0.33203125,
-0.8740234375,
0.7265625,
0.302978515625,
0.298828125,
0.06884765625,
0.092041015625,
-0.1746826171875,
0.390869140625,
0.1397705078125,
-0.1412353515625,
-0.54052734375,
0.051727294921875,
-0.386962890625,
1.095703125,
-0.357421875,
0.962890625,
-0.302001953125,
-0.1898193359375,
-0.2122802734375,
-0.416015625,
0.24609375,
-0.28369140625,
-0.04913330078125,
0.89013671875,
0.31689453125,
1.1123046875,
1.1884765625,
-0.284912109375,
0.44189453125,
0.3984375,
-0.385986328125,
0.11865234375,
0.3916015625,
0.92333984375,
0.30517578125,
0.303955078125,
-0.1734619140625,
0.0283203125,
-0.74755859375,
-0.51708984375,
0.358642578125,
0.587890625,
-0.88427734375,
0.33447265625,
-0.0986328125,
0.025054931640625,
-0.748046875,
-0.35791015625,
-0.2379150390625,
-0.95166015625,
-0.31005859375,
0.59033203125,
-0.022918701171875,
0.295654296875,
-0.37744140625,
-0.54248046875,
0.48291015625,
1.068359375,
-0.47314453125,
0.139404296875,
0.446533203125,
-0.0037326812744140625,
-0.265869140625,
0.3759765625,
-0.0185394287109375,
-0.198486328125,
-0.59765625,
0.77490234375,
-0.06793212890625,
-0.2259521484375,
-0.1865234375,
0.62841796875,
0.41357421875,
0.70166015625,
-0.1812744140625,
-0.53955078125,
0.515625,
1.0654296875,
-0.00386810302734375,
0.6865234375,
0.09954833984375,
0.7822265625,
0.90380859375,
0.8125,
0.5859375,
0.22021484375,
0.355224609375,
0.96728515625,
0.1978759765625,
0.354248046875,
0.58447265625,
0.6806640625,
0.3837890625,
0.361572265625,
0.418701171875,
0.53466796875,
0.11395263671875,
-0.081787109375,
-0.1326904296875,
0.0163421630859375,
-0.26953125,
0.90869140625,
0.0372314453125,
0.65869140625,
0.00827789306640625,
-0.328857421875,
0.3193359375,
1.0556640625,
-1.08984375,
-0.34326171875,
-0.1781005859375,
-0.01983642578125,
0.060089111328125,
-0.00907135009765625,
0.81884765625,
0.62109375,
0.62353515625,
0.4951171875,
-0.24462890625,
-0.381103515625,
-0.736328125,
-0.8359375,
-0.68603515625,
-0.31689453125,
-0.71142578125,
-0.0947265625,
-0.1553955078125,
-0.908203125,
0.1153564453125,
-0.2607421875,
-0.21142578125,
0.41796875,
-0.53125,
0.81396484375,
-0.07037353515625,
0.391357421875,
-0.61865234375,
0.560546875,
0.19970703125,
1.154296875,
-0.830078125,
-0.006175994873046875,
-0.05029296875,
-0.6396484375,
-0.037689208984375,
0.388427734375,
0.45263671875,
0.00539398193359375,
-0.751953125,
-0.8466796875,
-0.54296875,
0.277587890625,
-0.457275390625,
0.258056640625,
-0.451171875,
0.7470703125,
0.491943359375,
-0.537109375,
0.55419921875,
1.115234375,
-0.89599609375,
0.51904296875,
0.06744384765625,
-0.4208984375,
-0.83056640625,
1.064453125,
0.57080078125,
0.552734375,
-0.3046875,
-0.75,
-0.3271484375,
-0.12017822265625,
0.3212890625,
-0.71435546875,
-0.251708984375,
0.53466796875,
-0.051544189453125,
-1.025390625,
0.533203125,
-0.955078125,
-0.7080078125,
-0.75830078125,
-0.370361328125,
1.267578125,
0.92431640625,
0.004611968994140625,
0.1849365234375,
0.10943603515625,
0.11376953125,
0.6533203125,
0.44970703125,
-0.57861328125,
0.309814453125,
0.93994140625,
0.0299835205078125,
-0.017303466796875,
0.257080078125,
-0.43359375,
-0.17236328125,
0.29052734375,
0.056884765625,
0.66650390625,
0.055328369140625,
0.5224609375,
0.36376953125,
0.396240234375,
-0.76953125,
0.07073974609375,
-0.0714111328125,
0.794921875,
0.611328125,
0.78466796875,
-0.07666015625,
-0.447998046875,
-0.654296875,
-1.3203125,
0.161865234375,
0.2939453125,
0.650390625,
-0.673828125,
1.1982421875,
0.250244140625,
-0.576171875,
0.35302734375,
-0.71875,
0.1875,
1.0029296875,
-0.014678955078125,
0.9921875,
-0.79052734375,
0.611328125,
0.08154296875,
0.1134033203125,
0.404296875,
0.59375,
0.27587890625,
-0.544921875,
-0.666015625,
-0.646484375,
-0.1502685546875,
-0.2705078125,
-0.44287109375,
0.43408203125,
-0.470947265625,
-0.154052734375,
-0.9560546875,
0.60009765625,
0.6123046875,
0.744140625,
0.0975341796875,
0.324951171875,
0.35986328125,
0.32080078125,
0.673828125,
-0.2138671875,
0.29345703125,
-0.6015625,
0.70361328125,
0.179931640625,
-0.2369384765625,
-0.68115234375,
-0.413818359375,
0.0174102783203125,
0.179931640625,
-0.377685546875,
-0.0986328125,
-1.1201171875,
0.11639404296875,
-0.40478515625,
0.47900390625,
-0.65234375,
-0.2177734375,
-0.25341796875,
0.390625,
0.2017822265625,
-1.0947265625,
0.564453125,
-1.0322265625,
0.71240234375,
0.466064453125,
0.06353759765625,
-0.1390380859375,
-0.349365234375,
-0.81640625,
-0.429443359375,
-0.133544921875,
0.6533203125,
-0.1607666015625,
0.3662109375,
-1.3076171875,
0.5224609375,
0.13623046875,
-0.4521484375,
0.32666015625,
-0.318115234375,
0.90234375,
-0.1827392578125,
0.9697265625,
-0.4521484375,
-0.7392578125,
0.0499267578125,
-1.328125,
0.849609375,
-0.427001953125,
0.87841796875,
0.154541015625,
-0.120361328125,
0.314697265625,
0.1561279296875,
-0.301025390625,
0.4140625,
-0.1981201171875,
0.423828125,
-0.90966796875,
-1.0380859375,
0.6298828125,
-0.2083740234375,
-0.2020263671875,
0.73828125,
-0.002559661865234375,
-0.525390625,
-0.043060302734375,
0.485107421875,
-0.60302734375,
0.173095703125,
-0.2437744140625,
0.78515625,
-0.29541015625,
-0.84619140625,
-0.1973876953125,
-0.55908203125,
0.69287109375,
0.013275146484375,
-0.634765625,
-0.266357421875,
-1.3310546875,
-0.1324462890625,
0.13330078125,
-0.371826171875,
0.247802734375,
0.33935546875,
-0.08905029296875,
-0.33984375,
-0.045867919921875,
-0.5419921875,
-0.50732421875,
-0.572265625,
-0.2286376953125,
0.1632080078125,
0.6279296875,
0.98779296875,
-0.07305908203125,
-0.375,
-0.030792236328125,
0.165283203125,
0.2252197265625,
-0.5576171875,
-0.1954345703125,
-0.289306640625,
-0.03717041015625,
-0.382568359375,
0.25634765625,
0.062744140625,
0.372802734375,
0.9599609375,
-0.05804443359375,
0.2159423828125,
0.4208984375,
-0.64794921875,
1.224609375,
0.04669189453125,
-0.9599609375,
-1.0244140625,
0.5107421875,
-0.0904541015625,
0.6533203125,
0.478271484375,
-0.912109375,
-0.63330078125,
-0.90380859375,
0.197021484375,
-0.935546875,
-0.406005859375,
-1.2080078125,
-0.82275390625,
-0.68994140625,
0.458251953125,
0.1429443359375,
-0.57275390625,
0.4072265625,
-0.888671875,
0.2218017578125,
-0.765625,
0.1319580078125,
-0.65576171875,
-0.75390625,
0.259521484375,
1.01171875,
0.32080078125,
0.31591796875,
-0.0238037109375,
-0.59375,
0.4736328125,
-0.198974609375,
-0.8876953125,
-0.201904296875,
-0.259521484375,
0.199462890625,
0.05206298828125,
-0.2034912109375,
-0.6083984375,
0.9267578125,
-0.65966796875,
0.6474609375,
0.05218505859375,
-0.245361328125,
-0.36181640625,
-0.2890625,
0.88720703125,
-0.2568359375,
0.02886962890625,
-0.096923828125,
0.4326171875,
0.689453125,
-0.383544921875,
-0.469482421875,
-0.798828125,
-0.68798828125,
-0.97119140625,
0.595703125,
-0.334716796875,
0.181640625,
-0.8505859375,
-0.4052734375,
1.4208984375,
-0.578125,
0.401611328125,
1.0654296875,
0.03509521484375,
0.224609375,
-0.2388916015625,
0.6044921875,
0.38427734375,
-0.43115234375,
0.160888671875,
-0.06524658203125,
-0.666015625,
-0.142578125,
-0.08172607421875,
-0.78955078125,
-0.63671875,
0.26318359375,
1.4091796875,
-0.465576171875,
0.62939453125,
-0.273681640625,
-1.2734375,
-0.6826171875,
0.5029296875,
0.396728515625,
0.271728515625,
0.70654296875,
0.0078125,
0.148193359375,
-0.0043792724609375,
-0.363525390625,
-0.317138671875,
-0.67529296875,
1.3447265625,
-0.60498046875,
-0.58349609375,
0.8251953125,
0.97314453125,
-1.14453125,
-1.01953125,
0.3076171875,
-0.11260986328125,
-0.36767578125,
-0.450439453125,
0.044189453125,
0.81201171875,
-0.65673828125,
0.1085205078125,
0.317138671875,
-0.2030029296875,
0.09832763671875,
0.0740966796875,
0.55615234375,
-0.23388671875,
0.6083984375,
0.591796875,
-0.4326171875,
-0.43212890625,
-0.8837890625,
-0.340087890625,
-0.41064453125,
-0.129150390625,
0.75634765625,
-0.171630859375,
0.2225341796875,
0.40771484375,
0.0144805908203125,
0.857421875,
-0.51220703125,
-0.4287109375,
0.12353515625,
-0.5712890625,
-0.56884765625,
0.1243896484375,
0.378173828125,
-0.0848388671875,
0.261474609375,
-0.5791015625,
-0.0307464599609375,
0.341552734375,
0.505859375,
-0.25146484375,
-0.9970703125,
-0.210205078125,
-1.4931640625,
-0.54931640625,
-0.70166015625,
-0.9140625,
-0.0968017578125,
0.284423828125,
0.0755615234375,
-0.60546875,
-0.006175994873046875,
0.1239013671875,
-0.70361328125,
0.69580078125,
-0.375244140625,
0.385986328125,
-0.35498046875,
-0.634765625,
-0.9365234375,
-0.0584716796875,
-0.345947265625,
-0.304931640625,
-1.0634765625,
0.68994140625,
0.05938720703125,
0.264892578125,
-0.271728515625,
0.98681640625,
-0.258544921875,
-0.783203125,
0.294677734375,
0.0105133056640625,
-0.09381103515625,
1.1904296875,
0.411376953125,
0.062469482421875,
0.06439208984375,
-0.1507568359375,
-0.248046875,
-0.4921875,
0.479736328125,
0.410400390625,
-0.421875,
-0.1397705078125,
-0.07049560546875,
0.390380859375,
-0.9814453125,
0.3173828125,
-0.264892578125,
-0.0006432533264160156,
0.0057220458984375,
-0.12152099609375,
0.334716796875,
1.384765625,
-0.22802734375,
0.07275390625,
-0.00882720947265625,
0.2091064453125,
0.055816650390625,
0.294189453125,
-0.031402587890625,
0.3701171875,
-0.1990966796875,
-0.294189453125,
-0.2498779296875,
0.51904296875,
0.0723876953125,
-0.051544189453125,
-0.327392578125,
-0.87939453125,
-0.73193359375,
-0.33447265625,
0.01424407958984375,
0.422119140625,
0.52294921875,
-0.465576171875,
-0.0226287841796875,
0.03216552734375,
-0.61474609375,
0.007965087890625,
-1.0185546875,
-0.96142578125,
0.54443359375,
-0.14892578125,
-0.63525390625,
-0.206787109375,
-0.36669921875,
-0.29443359375,
0.054412841796875,
0.65576171875,
-0.56103515625,
0.40478515625,
0.059539794921875,
0.380615234375,
-0.05438232421875,
-0.2744140625,
0.11187744140625,
0.7333984375,
-0.619140625,
-0.61181640625,
0.0123291015625,
0.7578125,
0.1766357421875,
-0.40283203125,
-0.1903076171875,
0.42919921875,
-0.11395263671875,
0.409912109375,
-0.63818359375,
0.0743408203125,
-0.00852203369140625,
0.97900390625,
-0.84765625,
0.0643310546875,
-0.302490234375,
0.259033203125,
-0.1300048828125,
-0.732421875,
-0.4658203125,
1.1328125,
0.58203125,
-0.2607421875,
0.6611328125,
0.09130859375,
0.3076171875,
0.0487060546875,
-0.0985107421875,
0.2578125,
0.640625,
0.77587890625,
0.59375,
-0.239990234375,
0.2027587890625,
0.80908203125,
-0.08343505859375,
-0.497314453125,
0.287841796875,
-0.104736328125,
0.079833984375,
-0.03515625,
0.0302581787109375,
-0.361083984375,
-0.2196044921875,
-0.84619140625,
0.71875,
-0.225341796875,
0.171875,
-0.2174072265625,
-0.8515625,
0.9541015625,
-0.2607421875,
-0.360107421875,
0.286376953125,
-0.68115234375,
0.1322021484375,
0.61572265625,
-0.255859375,
-0.294677734375,
0.6455078125,
0.51708984375,
0.67236328125,
0.73974609375,
0.214111328125,
0.31005859375,
-0.484375,
0.0430908203125,
-0.126220703125,
-0.08258056640625,
-0.12225341796875,
-0.62451171875,
-1.2265625,
0.378173828125,
-0.66064453125,
-0.65185546875,
0.830078125,
-0.79638671875,
0.1861572265625,
-0.2724609375,
0.89453125,
-0.39208984375,
0.183349609375,
0.53271484375,
-0.319091796875,
-0.939453125,
0.7978515625,
-0.315673828125,
0.358154296875,
-0.2174072265625,
1.2822265625,
-0.147705078125,
1.353515625,
0.6865234375,
-0.270263671875,
0.191162109375,
0.321533203125,
-0.235595703125,
-0.689453125,
-0.484619140625,
-0.529296875,
-0.1654052734375,
-0.62353515625,
-0.619140625,
0.075439453125,
0.42919921875,
-0.0595703125,
-0.8193359375,
-0.1898193359375,
0.33203125,
-0.78662109375,
0.49755859375,
0.289306640625,
0.043792724609375,
0.034576416015625,
-0.1485595703125,
-0.1409912109375,
-0.318359375,
0.2178955078125,
-0.85107421875,
0.4638671875,
-0.83056640625,
-0.2332763671875,
-0.7158203125,
-0.705078125,
-0.1866455078125,
0.0084228515625,
-0.306396484375,
-0.8388671875,
0.275634765625,
0.430419921875,
0.27880859375,
0.431396484375,
-0.2169189453125,
0.28662109375,
1.0576171875,
1.033203125,
0.0634765625,
0.91455078125,
0.323486328125,
-0.1749267578125,
0.137451171875,
-0.359375,
0.41015625,
-0.0106048583984375,
0.454345703125,
-0.2379150390625,
0.140625,
-0.728515625,
-1.46875,
0.34423828125,
0.5087890625,
0.297119140625,
-0.74951171875,
-1.1591796875,
-0.060638427734375,
-1.1650390625,
-0.274169921875,
-0.81787109375,
1.044921875,
-0.491943359375,
0.00563812255859375,
-0.161376953125,
-1.2763671875,
4.22265625,
1.158203125,
0.9013671875,
0.75732421875,
0.302978515625,
0.91015625,
0.109375,
-0.474365234375,
-0.050628662109375,
-0.240234375,
0.78857421875,
-0.6611328125,
-0.049285888671875,
0.78369140625,
0.236083984375,
0.4404296875,
-0.38427734375,
0.5390625,
-0.08966064453125,
-0.9599609375,
-0.9033203125,
0.44091796875,
-0.10595703125,
0.501953125,
0.1470947265625,
0.166259765625,
0.6630859375,
-1.0322265625,
0.1903076171875,
-0.62939453125,
0.222900390625,
-0.30615234375,
1.1025390625,
0.140625,
0.1641845703125,
0.44091796875,
-0.137451171875,
-0.462890625,
0.11962890625,
0.0472412109375,
-0.250244140625,
-0.10211181640625,
0.490478515625,
-0.95703125,
-0.023895263671875,
0.55419921875,
-0.78076171875,
0.388671875,
-0.05401611328125,
-1.0087890625,
0.79052734375,
-0.336669921875,
0.388671875,
-0.91748046875,
-0.17919921875,
-0.1644287109375,
0.37548828125,
-0.1529541015625,
-0.399658203125,
0.427734375,
0.53662109375,
0.61328125,
0.197265625,
0.5185546875,
-1.0869140625,
0.15283203125,
-0.194580078125,
0.3759765625,
-0.4365234375,
0.022613525390625,
-0.443115234375,
-0.4697265625,
-0.19580078125,
-0.53369140625,
0.6962890625,
0.0193023681640625,
-0.08941650390625,
0.45361328125,
0.47216796875,
-0.71728515625,
0.05133056640625,
-0.132080078125,
-0.234130859375,
-0.52392578125,
0.87890625,
1.076171875,
-0.50439453125,
-0.32080078125,
-0.396484375,
0.452880859375,
0.619140625,
0.483154296875,
-0.07379150390625,
-0.70654296875,
-0.034271240234375
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
We have a string of letters 'a' and 'b'. We want to perform some operations on it. On each step we choose one of substrings "ab" in the string and replace it with the string "bba". If we have no "ab" as a substring, our job is done. Print the minimum number of steps we should perform to make our job done modulo 109 + 7.
The string "ab" appears as a substring if there is a letter 'b' right after the letter 'a' somewhere in the string.
Input
The first line contains the initial string consisting of letters 'a' and 'b' only with length from 1 to 106.
Output
Print the minimum number of steps modulo 109 + 7.
Examples
Input
ab
Output
1
Input
aab
Output
3
Note
The first example: "ab" → "bba".
The second example: "aab" → "abba" → "bbaba" → "bbbbaa".
Tags: combinatorics, greedy, implementation, math
Correct Solution:
```
l = input()
flaga, flagb = 0, 0
countbn, countan = 0, 0
count = 0
MOD = 10 ** 9 + 7
# a^n b^m
i = len(l)
vec = []
while i > 0:
i = i - 1
if l[i] == 'b':
countbn += 1
else:
count += countbn
countbn *= 2
count %= MOD
countbn %= MOD
print(count % MOD)
```
| 10,464 | [
0.41796875,
-0.256103515625,
0.07781982421875,
0.10296630859375,
-0.728515625,
-0.69970703125,
0.08038330078125,
-0.117919921875,
0.2073974609375,
0.8896484375,
0.6806640625,
-0.350341796875,
-0.1461181640625,
-0.87109375,
-0.460205078125,
0.05548095703125,
-0.448486328125,
-0.76904296875,
-0.330810546875,
-0.3623046875,
0.07684326171875,
-0.1689453125,
-1.181640625,
-0.0679931640625,
-0.2626953125,
1.0576171875,
0.72216796875,
-0.049896240234375,
0.955078125,
1.24609375,
-0.09637451171875,
-0.171630859375,
0.449951171875,
-1.123046875,
-0.346923828125,
-0.490234375,
0.57763671875,
-0.9169921875,
-0.1656494140625,
-0.298828125,
0.2462158203125,
-0.6494140625,
0.564453125,
-0.794921875,
-1.4560546875,
0.022857666015625,
-0.1591796875,
-0.488525390625,
0.0162506103515625,
-0.54345703125,
-0.114501953125,
-0.336181640625,
0.409423828125,
0.0379638671875,
0.0001348257064819336,
0.09130859375,
0.2139892578125,
-0.349853515625,
-0.8037109375,
0.08154296875,
0.464599609375,
0.0289459228515625,
0.0298614501953125,
-0.86865234375,
-0.1297607421875,
0.173095703125,
-0.330810546875,
-0.0027332305908203125,
-0.2030029296875,
-1.09765625,
-0.0298309326171875,
0.152587890625,
-0.453125,
-0.56396484375,
-0.1636962890625,
0.1285400390625,
0.399658203125,
-0.224365234375,
-0.76416015625,
1.123046875,
-0.2027587890625,
0.72607421875,
0.1927490234375,
0.2252197265625,
-0.18212890625,
-0.47705078125,
0.0535888671875,
0.2425537109375,
-0.09246826171875,
-0.130615234375,
-0.387939453125,
0.6650390625,
-0.400146484375,
-0.08258056640625,
0.271240234375,
0.64501953125,
-0.419189453125,
0.166015625,
0.58154296875,
0.309326171875,
0.8564453125,
1,
-0.6279296875,
0.7607421875,
-0.48583984375,
-0.057159423828125,
0.06268310546875,
-0.098388671875,
-0.330810546875,
0.02490234375,
-0.26806640625,
-0.30419921875,
0.5810546875,
0.388916015625,
-0.421875,
1.115234375,
0.2027587890625,
0.387451171875,
-0.662109375,
0.65283203125,
0.392578125,
0.256103515625,
0.6669921875,
-0.29833984375,
-0.23291015625,
-0.10015869140625,
-0.62939453125,
1.2373046875,
-0.833984375,
-0.229248046875,
0.165771484375,
0.154052734375,
0.12371826171875,
0.389892578125,
-0.3076171875,
0.67236328125,
-0.08740234375,
0.2034912109375,
0.8095703125,
-0.384033203125,
0.5849609375,
-0.34765625,
-0.172607421875,
1.7119140625,
0.2244873046875,
-0.06414794921875,
0.9609375,
0.42041015625,
-0.85595703125,
0.32763671875,
-1.0693359375,
0.7109375,
0.351318359375,
0.38623046875,
-0.1026611328125,
0.1719970703125,
-0.2327880859375,
0.49853515625,
0.08544921875,
-0.191650390625,
-0.6005859375,
-0.017822265625,
-0.308349609375,
1.03515625,
-0.4619140625,
0.861328125,
-0.290283203125,
-0.27001953125,
-0.1910400390625,
-0.4326171875,
0.2218017578125,
-0.26904296875,
-0.2078857421875,
0.91552734375,
0.4111328125,
0.97705078125,
1.21875,
-0.226318359375,
0.513671875,
0.269775390625,
-0.38232421875,
0.1373291015625,
0.255126953125,
1.0166015625,
0.305419921875,
0.48388671875,
-0.315673828125,
-0.044921875,
-0.62890625,
-0.485107421875,
0.323486328125,
0.646484375,
-0.78271484375,
0.4697265625,
-0.0692138671875,
0.01508331298828125,
-0.728515625,
-0.2403564453125,
-0.16796875,
-0.9658203125,
-0.2237548828125,
0.49658203125,
-0.07720947265625,
0.27978515625,
-0.49658203125,
-0.497314453125,
0.406005859375,
1.0595703125,
-0.5302734375,
0.074462890625,
0.49658203125,
-0.1484375,
-0.0343017578125,
0.36865234375,
0.07818603515625,
-0.2332763671875,
-0.56201171875,
0.70068359375,
-0.0250701904296875,
-0.1463623046875,
-0.1910400390625,
0.6103515625,
0.4990234375,
0.703125,
-0.07269287109375,
-0.6064453125,
0.498046875,
0.90478515625,
-0.06524658203125,
0.66064453125,
0.1361083984375,
0.78271484375,
0.9580078125,
0.9150390625,
0.6396484375,
0.2069091796875,
0.391357421875,
0.7919921875,
0.1712646484375,
0.272705078125,
0.55615234375,
0.7392578125,
0.2255859375,
0.238525390625,
0.423828125,
0.5546875,
0.146240234375,
-0.0982666015625,
-0.0084228515625,
-0.0200958251953125,
-0.41162109375,
0.865234375,
0.056793212890625,
0.6728515625,
0.0012388229370117188,
-0.338623046875,
0.1905517578125,
1.029296875,
-0.99462890625,
-0.35595703125,
-0.172607421875,
0.03839111328125,
0.01055145263671875,
-0.01503753662109375,
0.8515625,
0.6240234375,
0.70458984375,
0.343505859375,
-0.295166015625,
-0.21484375,
-0.73486328125,
-0.77880859375,
-0.78759765625,
-0.27392578125,
-0.7490234375,
-0.0816650390625,
-0.1375732421875,
-0.9599609375,
0.0352783203125,
-0.267822265625,
-0.1573486328125,
0.306396484375,
-0.50927734375,
0.8037109375,
0.00222015380859375,
0.328125,
-0.556640625,
0.5185546875,
0.11871337890625,
1.0673828125,
-0.85888671875,
0.0191192626953125,
-0.044036865234375,
-0.6474609375,
0.01520538330078125,
0.348388671875,
0.281494140625,
0.01788330078125,
-0.7333984375,
-0.84912109375,
-0.56298828125,
0.33251953125,
-0.364013671875,
0.3125,
-0.45654296875,
0.66064453125,
0.5654296875,
-0.6162109375,
0.6962890625,
1.1279296875,
-0.916015625,
0.6044921875,
0.04010009765625,
-0.447509765625,
-0.81591796875,
1.1181640625,
0.57373046875,
0.5048828125,
-0.442626953125,
-0.720703125,
-0.35595703125,
0.06640625,
0.1376953125,
-0.791015625,
-0.15234375,
0.65380859375,
-0.041595458984375,
-0.84521484375,
0.63916015625,
-1.0283203125,
-0.6220703125,
-0.703125,
-0.433349609375,
1.134765625,
0.8759765625,
0.1005859375,
0.15087890625,
0.041717529296875,
0.0745849609375,
0.50341796875,
0.509765625,
-0.6435546875,
0.2432861328125,
0.90625,
0.03302001953125,
0.04266357421875,
0.1578369140625,
-0.382080078125,
-0.1839599609375,
0.0819091796875,
0.15478515625,
0.703125,
0.04022216796875,
0.41650390625,
0.30126953125,
0.5283203125,
-0.85791015625,
0.04925537109375,
-0.198486328125,
0.6171875,
0.481201171875,
0.5927734375,
-0.140380859375,
-0.314208984375,
-0.64013671875,
-1.3623046875,
0.080078125,
0.30322265625,
0.67724609375,
-0.61328125,
1.1435546875,
0.2410888671875,
-0.62353515625,
0.256103515625,
-0.697265625,
0.23291015625,
0.88232421875,
0.1837158203125,
0.98046875,
-0.7294921875,
0.468994140625,
0.11767578125,
-0.035186767578125,
0.48828125,
0.67041015625,
0.30078125,
-0.54931640625,
-0.728515625,
-0.5908203125,
-0.17041015625,
-0.254150390625,
-0.53466796875,
0.2274169921875,
-0.53076171875,
-0.07476806640625,
-0.939453125,
0.49365234375,
0.630859375,
0.76513671875,
0.08795166015625,
0.28857421875,
0.404296875,
0.250244140625,
0.63427734375,
-0.19580078125,
0.260498046875,
-0.57080078125,
0.8212890625,
0.225341796875,
-0.33056640625,
-0.7685546875,
-0.339599609375,
0.05621337890625,
0.17724609375,
-0.44580078125,
-0.1121826171875,
-1.1875,
0.28271484375,
-0.40625,
0.58984375,
-0.63427734375,
-0.26953125,
-0.1575927734375,
0.38720703125,
0.214599609375,
-1.064453125,
0.58984375,
-1.03125,
0.76953125,
0.58349609375,
0.11480712890625,
-0.185546875,
-0.37841796875,
-0.7314453125,
-0.46142578125,
-0.2000732421875,
0.83447265625,
-0.2166748046875,
0.42138671875,
-1.2978515625,
0.57373046875,
0.0733642578125,
-0.478515625,
0.21337890625,
-0.2783203125,
0.85888671875,
-0.192626953125,
0.82373046875,
-0.5185546875,
-0.7216796875,
0.14013671875,
-1.3935546875,
0.70703125,
-0.455322265625,
0.90380859375,
0.10650634765625,
-0.076904296875,
0.318359375,
0.12030029296875,
-0.1947021484375,
0.2169189453125,
-0.1793212890625,
0.431396484375,
-0.779296875,
-0.86767578125,
0.666015625,
-0.16748046875,
-0.340576171875,
0.8408203125,
-0.07757568359375,
-0.4970703125,
-0.0294952392578125,
0.6298828125,
-0.5888671875,
0.1846923828125,
-0.06805419921875,
0.7353515625,
-0.37353515625,
-0.76708984375,
-0.1312255859375,
-0.52197265625,
0.7080078125,
0.0626220703125,
-0.578125,
-0.119384765625,
-1.3681640625,
-0.258544921875,
0.09320068359375,
-0.413818359375,
0.2451171875,
0.33837890625,
-0.07171630859375,
-0.28173828125,
-0.07403564453125,
-0.418212890625,
-0.5009765625,
-0.63134765625,
-0.2237548828125,
0.1627197265625,
0.74951171875,
1.0224609375,
-0.0269927978515625,
-0.374755859375,
-0.036590576171875,
0.0692138671875,
0.2000732421875,
-0.46875,
-0.1361083984375,
-0.29541015625,
-0.0899658203125,
-0.419677734375,
0.12115478515625,
0.1265869140625,
0.377685546875,
0.87060546875,
-0.09942626953125,
0.1627197265625,
0.39013671875,
-0.630859375,
1.2333984375,
0.00939178466796875,
-0.97216796875,
-0.89990234375,
0.56201171875,
-0.099365234375,
0.54150390625,
0.59228515625,
-0.99853515625,
-0.63330078125,
-1.0166015625,
0.1571044921875,
-0.8447265625,
-0.323974609375,
-1.1611328125,
-0.7138671875,
-0.61474609375,
0.412841796875,
0.137451171875,
-0.56884765625,
0.5009765625,
-0.73193359375,
0.2352294921875,
-0.79638671875,
0.09716796875,
-0.68310546875,
-0.8046875,
0.2384033203125,
0.84521484375,
0.33154296875,
0.309814453125,
-0.01154327392578125,
-0.388671875,
0.408447265625,
-0.1773681640625,
-0.75390625,
-0.2144775390625,
-0.3720703125,
0.270751953125,
0.0753173828125,
-0.1668701171875,
-0.65869140625,
0.9375,
-0.658203125,
0.53076171875,
0.113525390625,
-0.363037109375,
-0.3095703125,
-0.297607421875,
0.87158203125,
-0.30224609375,
0.1239013671875,
0.049072265625,
0.37158203125,
0.68896484375,
-0.4345703125,
-0.466064453125,
-0.75,
-0.67041015625,
-0.9365234375,
0.6083984375,
-0.275634765625,
0.1702880859375,
-0.83837890625,
-0.2666015625,
1.3662109375,
-0.48486328125,
0.38525390625,
1.0234375,
0.0257415771484375,
0.09381103515625,
-0.33203125,
0.61376953125,
0.36279296875,
-0.33154296875,
0.20068359375,
-0.1031494140625,
-0.71435546875,
0.006389617919921875,
-0.1451416015625,
-0.84423828125,
-0.68408203125,
0.313232421875,
1.3662109375,
-0.47998046875,
0.57763671875,
-0.295166015625,
-1.2998046875,
-0.6337890625,
0.53564453125,
0.34814453125,
0.311279296875,
0.6787109375,
-0.11651611328125,
0.19482421875,
-0.0736083984375,
-0.404541015625,
-0.467041015625,
-0.7744140625,
1.26953125,
-0.65576171875,
-0.51513671875,
0.88818359375,
0.86181640625,
-1.2158203125,
-0.9091796875,
0.227783203125,
-0.1181640625,
-0.3798828125,
-0.439453125,
-0.00679779052734375,
0.7265625,
-0.6474609375,
0.123779296875,
0.26611328125,
-0.06256103515625,
0.1424560546875,
0.004772186279296875,
0.572265625,
-0.204345703125,
0.77880859375,
0.57763671875,
-0.498046875,
-0.437255859375,
-0.96728515625,
-0.270751953125,
-0.343505859375,
0.041290283203125,
0.8046875,
-0.0221405029296875,
0.14697265625,
0.529296875,
0.06378173828125,
0.7431640625,
-0.4150390625,
-0.383544921875,
0.085205078125,
-0.69775390625,
-0.56396484375,
0.145751953125,
0.380615234375,
-0.09881591796875,
0.31689453125,
-0.619140625,
-0.0745849609375,
0.24560546875,
0.43505859375,
-0.273681640625,
-0.79638671875,
-0.1529541015625,
-1.4609375,
-0.580078125,
-0.78125,
-0.83154296875,
-0.128173828125,
0.383544921875,
-0.0238800048828125,
-0.58984375,
0.0858154296875,
0.254638671875,
-0.708984375,
0.6708984375,
-0.322265625,
0.23779296875,
-0.341064453125,
-0.5859375,
-1.01953125,
-0.11474609375,
-0.402099609375,
-0.353759765625,
-1.095703125,
0.7783203125,
0.204833984375,
0.439453125,
-0.1873779296875,
0.916015625,
-0.3642578125,
-0.89501953125,
0.28173828125,
0.18212890625,
0.06378173828125,
1.2255859375,
0.463134765625,
0.1051025390625,
0.06805419921875,
-0.081298828125,
-0.2379150390625,
-0.490234375,
0.458740234375,
0.405029296875,
-0.45556640625,
-0.1888427734375,
-0.12335205078125,
0.38037109375,
-0.828125,
0.3515625,
-0.280029296875,
0.05029296875,
0.00447845458984375,
-0.09906005859375,
0.27685546875,
1.3369140625,
-0.221435546875,
0.094482421875,
0.07568359375,
0.1591796875,
0.206298828125,
0.396484375,
-0.0216064453125,
0.5732421875,
-0.2626953125,
-0.3818359375,
-0.3544921875,
0.51904296875,
0.06201171875,
0.08502197265625,
-0.333251953125,
-0.83251953125,
-0.66357421875,
-0.367919921875,
0.068603515625,
0.4873046875,
0.54833984375,
-0.482666015625,
-0.0012216567993164062,
-0.0099945068359375,
-0.546875,
-0.028167724609375,
-1.1474609375,
-0.9580078125,
0.50048828125,
-0.01557159423828125,
-0.70166015625,
-0.16357421875,
-0.2408447265625,
-0.385986328125,
0.04736328125,
0.6181640625,
-0.39306640625,
0.420166015625,
-0.050201416015625,
0.367431640625,
-0.12091064453125,
-0.099609375,
0.12939453125,
0.7197265625,
-0.66943359375,
-0.69677734375,
-0.01702880859375,
0.8984375,
0.2239990234375,
-0.39990234375,
-0.0635986328125,
0.450927734375,
-0.278076171875,
0.300048828125,
-0.623046875,
-0.0296783447265625,
0.032135009765625,
0.98974609375,
-0.77099609375,
-0.0162353515625,
-0.22314453125,
0.185302734375,
-0.072265625,
-0.5869140625,
-0.47802734375,
1.1142578125,
0.71044921875,
-0.162353515625,
0.7001953125,
0.110595703125,
0.333984375,
0.011505126953125,
-0.056396484375,
0.27685546875,
0.57958984375,
0.7763671875,
0.57568359375,
-0.1484375,
0.334228515625,
0.79345703125,
-0.2230224609375,
-0.35302734375,
0.383056640625,
-0.06451416015625,
-0.0020809173583984375,
-0.11578369140625,
-0.0204620361328125,
-0.2216796875,
-0.3056640625,
-0.77001953125,
0.84375,
-0.204345703125,
0.28125,
-0.07904052734375,
-0.75634765625,
0.92041015625,
-0.308837890625,
-0.34326171875,
0.29443359375,
-0.70458984375,
0.181396484375,
0.73486328125,
-0.3623046875,
-0.319091796875,
0.68408203125,
0.59130859375,
0.650390625,
0.70947265625,
0.13623046875,
0.40283203125,
-0.4658203125,
0.2135009765625,
-0.21728515625,
-0.1883544921875,
-0.1826171875,
-0.59912109375,
-1.1650390625,
0.430419921875,
-0.56787109375,
-0.63037109375,
0.7568359375,
-0.70263671875,
0.2308349609375,
-0.26806640625,
0.744140625,
-0.398193359375,
0.1484375,
0.6044921875,
-0.245361328125,
-0.7919921875,
0.8515625,
-0.255126953125,
0.253662109375,
-0.296142578125,
1.2216796875,
-0.1405029296875,
1.3701171875,
0.58740234375,
-0.26171875,
0.1634521484375,
0.349365234375,
-0.400634765625,
-0.62646484375,
-0.56982421875,
-0.52197265625,
-0.11737060546875,
-0.5244140625,
-0.458251953125,
0.2763671875,
0.40478515625,
0.0022792816162109375,
-0.7177734375,
-0.07586669921875,
0.313232421875,
-0.83251953125,
0.391845703125,
0.31494140625,
-0.004962921142578125,
0.0926513671875,
-0.06451416015625,
-0.0718994140625,
-0.1678466796875,
0.10418701171875,
-0.7001953125,
0.43701171875,
-0.8984375,
-0.2410888671875,
-0.70263671875,
-0.69482421875,
-0.1318359375,
0.108154296875,
-0.398681640625,
-0.8369140625,
0.324951171875,
0.35009765625,
0.1832275390625,
0.499267578125,
-0.1580810546875,
0.352294921875,
1.07421875,
1.068359375,
0.137451171875,
0.77392578125,
0.292724609375,
-0.116455078125,
-0.01480865478515625,
-0.283447265625,
0.423095703125,
-0.0416259765625,
0.481201171875,
-0.3759765625,
0.21533203125,
-0.732421875,
-1.53125,
0.4462890625,
0.4912109375,
0.41064453125,
-0.7412109375,
-1.0478515625,
-0.12335205078125,
-1.2509765625,
-0.242919921875,
-0.794921875,
1.02734375,
-0.5419921875,
-0.04473876953125,
-0.171142578125,
-1.1796875,
4.28125,
1.044921875,
0.8583984375,
0.599609375,
0.1966552734375,
0.9873046875,
-0.0003635883331298828,
-0.441162109375,
-0.06610107421875,
-0.1842041015625,
0.748046875,
-0.5322265625,
-0.10028076171875,
0.68701171875,
0.30908203125,
0.5546875,
-0.353515625,
0.541015625,
-0.21142578125,
-0.94677734375,
-0.9482421875,
0.453857421875,
-0.036956787109375,
0.4287109375,
0.00125885009765625,
0.1719970703125,
0.8525390625,
-1.0712890625,
0.257080078125,
-0.6669921875,
0.1767578125,
-0.44921875,
1.0888671875,
0.030364990234375,
0.045440673828125,
0.52880859375,
-0.150146484375,
-0.489013671875,
0.2249755859375,
-0.0160064697265625,
-0.1448974609375,
-0.09576416015625,
0.53125,
-0.81298828125,
0.0269927978515625,
0.491455078125,
-0.6728515625,
0.33544921875,
-0.1590576171875,
-1.0791015625,
0.94775390625,
-0.251953125,
0.323486328125,
-0.970703125,
-0.2939453125,
-0.1732177734375,
0.374755859375,
-0.07318115234375,
-0.49267578125,
0.4091796875,
0.53564453125,
0.50048828125,
0.257568359375,
0.4619140625,
-0.96875,
0.1998291015625,
-0.1881103515625,
0.310546875,
-0.5595703125,
0.042633056640625,
-0.40966796875,
-0.328369140625,
-0.3056640625,
-0.4658203125,
0.521484375,
0.03717041015625,
-0.09942626953125,
0.37841796875,
0.482177734375,
-0.6396484375,
0.10467529296875,
-0.10150146484375,
-0.0836181640625,
-0.61083984375,
0.69580078125,
1.2119140625,
-0.546875,
-0.405029296875,
-0.363037109375,
0.44873046875,
0.50146484375,
0.399169921875,
-0.056427001953125,
-0.76953125,
-0.087158203125
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
We have a string of letters 'a' and 'b'. We want to perform some operations on it. On each step we choose one of substrings "ab" in the string and replace it with the string "bba". If we have no "ab" as a substring, our job is done. Print the minimum number of steps we should perform to make our job done modulo 109 + 7.
The string "ab" appears as a substring if there is a letter 'b' right after the letter 'a' somewhere in the string.
Input
The first line contains the initial string consisting of letters 'a' and 'b' only with length from 1 to 106.
Output
Print the minimum number of steps modulo 109 + 7.
Examples
Input
ab
Output
1
Input
aab
Output
3
Note
The first example: "ab" → "bba".
The second example: "aab" → "abba" → "bbaba" → "bbbbaa".
Tags: combinatorics, greedy, implementation, math
Correct Solution:
```
MOD = 10**9 + 7
s = input()
bcount, count = 0, 0
for c in reversed(s):
if c == 'b':
bcount += 1
else:
count = (count + bcount) % MOD
bcount = bcount * 2 % MOD
print(count)
```
| 10,465 | [
0.3828125,
-0.17529296875,
0.037811279296875,
0.08013916015625,
-0.78955078125,
-0.69921875,
-0.006465911865234375,
-0.1080322265625,
0.2010498046875,
0.919921875,
0.6689453125,
-0.296630859375,
-0.1495361328125,
-0.83056640625,
-0.50927734375,
-0.0064544677734375,
-0.486572265625,
-0.791015625,
-0.408203125,
-0.302490234375,
0.0219268798828125,
-0.1728515625,
-1.12890625,
-0.0239105224609375,
-0.1983642578125,
1.03515625,
0.7177734375,
-0.0684814453125,
0.99951171875,
1.2685546875,
-0.1627197265625,
-0.160888671875,
0.50390625,
-1.0751953125,
-0.379638671875,
-0.468017578125,
0.61767578125,
-0.9052734375,
-0.1365966796875,
-0.35791015625,
0.2220458984375,
-0.67138671875,
0.51806640625,
-0.8154296875,
-1.5302734375,
0.08795166015625,
-0.19482421875,
-0.51171875,
-0.04290771484375,
-0.5361328125,
-0.152099609375,
-0.418701171875,
0.38525390625,
0.06475830078125,
0.0232086181640625,
0.130615234375,
0.261962890625,
-0.392578125,
-0.77001953125,
0.1724853515625,
0.432373046875,
0.053192138671875,
0.1357421875,
-0.8818359375,
-0.12420654296875,
0.199951171875,
-0.340576171875,
-0.0197601318359375,
-0.200439453125,
-1.025390625,
0.004199981689453125,
0.196044921875,
-0.312255859375,
-0.54345703125,
-0.12237548828125,
0.10833740234375,
0.426025390625,
-0.291259765625,
-0.65087890625,
1.15625,
-0.265869140625,
0.748046875,
0.194580078125,
0.223876953125,
-0.270751953125,
-0.43505859375,
0.085205078125,
0.25390625,
-0.1097412109375,
-0.153564453125,
-0.322509765625,
0.759765625,
-0.338134765625,
-0.040618896484375,
0.25341796875,
0.5830078125,
-0.365478515625,
0.1837158203125,
0.61181640625,
0.335693359375,
0.88818359375,
1.017578125,
-0.59375,
0.78466796875,
-0.55810546875,
-0.1085205078125,
0.087158203125,
-0.06719970703125,
-0.275390625,
-0.00518798828125,
-0.31005859375,
-0.317626953125,
0.57177734375,
0.38232421875,
-0.4892578125,
1.125,
0.210205078125,
0.416015625,
-0.69482421875,
0.654296875,
0.44921875,
0.16455078125,
0.7041015625,
-0.2340087890625,
-0.2255859375,
-0.08319091796875,
-0.5888671875,
1.1689453125,
-0.8662109375,
-0.278076171875,
0.1290283203125,
0.17724609375,
0.08819580078125,
0.3837890625,
-0.25537109375,
0.6796875,
-0.08856201171875,
0.263671875,
0.7314453125,
-0.487060546875,
0.623046875,
-0.2802734375,
-0.22021484375,
1.7724609375,
0.1717529296875,
-0.0828857421875,
0.80224609375,
0.43701171875,
-0.90576171875,
0.289306640625,
-1.091796875,
0.7763671875,
0.314453125,
0.402099609375,
0.000027239322662353516,
0.1614990234375,
-0.2861328125,
0.5341796875,
0.0650634765625,
-0.2291259765625,
-0.5859375,
0.056671142578125,
-0.3369140625,
1.0576171875,
-0.5439453125,
0.88427734375,
-0.272705078125,
-0.238037109375,
-0.14306640625,
-0.48974609375,
0.212890625,
-0.248779296875,
-0.290283203125,
0.87841796875,
0.371826171875,
1.0693359375,
1.2001953125,
-0.26513671875,
0.472412109375,
0.315673828125,
-0.464111328125,
0.194580078125,
0.324951171875,
0.916015625,
0.296630859375,
0.402099609375,
-0.34521484375,
-0.021514892578125,
-0.73193359375,
-0.426513671875,
0.29443359375,
0.703125,
-0.79931640625,
0.5029296875,
-0.06829833984375,
-0.072509765625,
-0.703125,
-0.2476806640625,
-0.157470703125,
-0.9833984375,
-0.2406005859375,
0.53369140625,
-0.08587646484375,
0.339111328125,
-0.45751953125,
-0.54248046875,
0.386962890625,
1.10546875,
-0.5234375,
0.151611328125,
0.38623046875,
-0.12939453125,
-0.07568359375,
0.438720703125,
0.062744140625,
-0.27734375,
-0.576171875,
0.72265625,
-0.0010395050048828125,
-0.12261962890625,
-0.17822265625,
0.623046875,
0.482177734375,
0.75439453125,
-0.1368408203125,
-0.552734375,
0.58349609375,
1.0068359375,
-0.089111328125,
0.64794921875,
0.1845703125,
0.822265625,
0.99072265625,
0.830078125,
0.68896484375,
0.19580078125,
0.349365234375,
0.80029296875,
0.073486328125,
0.25927734375,
0.560546875,
0.7412109375,
0.2188720703125,
0.26806640625,
0.484130859375,
0.60498046875,
0.25,
-0.12091064453125,
-0.0079345703125,
0.0289154052734375,
-0.353271484375,
0.81103515625,
0.08758544921875,
0.64208984375,
0.045654296875,
-0.307373046875,
0.162353515625,
1.0234375,
-1.0517578125,
-0.417236328125,
-0.059722900390625,
-0.016693115234375,
-0.04443359375,
-0.0794677734375,
0.94091796875,
0.59814453125,
0.76806640625,
0.4384765625,
-0.2393798828125,
-0.28125,
-0.73876953125,
-0.8408203125,
-0.81396484375,
-0.25830078125,
-0.7783203125,
-0.07421875,
-0.1070556640625,
-0.93359375,
-0.06903076171875,
-0.28076171875,
-0.1280517578125,
0.3056640625,
-0.58544921875,
0.80615234375,
-0.0413818359375,
0.267578125,
-0.56396484375,
0.6318359375,
0.11163330078125,
1.103515625,
-0.83740234375,
0.03887939453125,
-0.115234375,
-0.65966796875,
0.02850341796875,
0.417724609375,
0.36181640625,
-0.06866455078125,
-0.8447265625,
-0.94091796875,
-0.53564453125,
0.279296875,
-0.364013671875,
0.32666015625,
-0.402099609375,
0.71826171875,
0.60888671875,
-0.6279296875,
0.6767578125,
1.1240234375,
-0.88623046875,
0.63720703125,
0.041412353515625,
-0.433837890625,
-0.8076171875,
1.1162109375,
0.5224609375,
0.5478515625,
-0.373779296875,
-0.64208984375,
-0.388671875,
0.033355712890625,
0.22021484375,
-0.81103515625,
-0.1812744140625,
0.64697265625,
0.0159759521484375,
-0.94482421875,
0.5830078125,
-0.95849609375,
-0.67041015625,
-0.6962890625,
-0.4423828125,
1.1025390625,
0.9248046875,
0.048583984375,
0.1536865234375,
0.0888671875,
0.10394287109375,
0.45166015625,
0.489013671875,
-0.6025390625,
0.1651611328125,
0.9521484375,
-0.0151824951171875,
0.0211334228515625,
0.193115234375,
-0.3876953125,
-0.244873046875,
0.1650390625,
0.1983642578125,
0.6552734375,
0.01525115966796875,
0.47705078125,
0.275390625,
0.52978515625,
-0.80712890625,
0.0816650390625,
-0.2144775390625,
0.67333984375,
0.5263671875,
0.5966796875,
-0.138671875,
-0.361328125,
-0.662109375,
-1.376953125,
0.068603515625,
0.31787109375,
0.7705078125,
-0.5205078125,
1.2197265625,
0.1800537109375,
-0.51220703125,
0.300048828125,
-0.69580078125,
0.302490234375,
0.86376953125,
0.1285400390625,
0.9658203125,
-0.77734375,
0.5126953125,
0.1416015625,
-0.0203704833984375,
0.4462890625,
0.6513671875,
0.270263671875,
-0.63623046875,
-0.76416015625,
-0.56884765625,
-0.11175537109375,
-0.259765625,
-0.5126953125,
0.322998046875,
-0.54443359375,
-0.1197509765625,
-0.99609375,
0.49267578125,
0.67578125,
0.79541015625,
0.03973388671875,
0.1815185546875,
0.394775390625,
0.243896484375,
0.65576171875,
-0.1800537109375,
0.1744384765625,
-0.638671875,
0.8349609375,
0.18115234375,
-0.376220703125,
-0.77734375,
-0.37890625,
-0.0237884521484375,
0.1297607421875,
-0.469970703125,
-0.093505859375,
-1.1328125,
0.1990966796875,
-0.399169921875,
0.6142578125,
-0.6240234375,
-0.260986328125,
-0.1866455078125,
0.3134765625,
0.248779296875,
-1.021484375,
0.5615234375,
-1.0087890625,
0.82958984375,
0.6689453125,
0.06878662109375,
-0.193115234375,
-0.33544921875,
-0.814453125,
-0.462646484375,
-0.1829833984375,
0.84521484375,
-0.2000732421875,
0.45068359375,
-1.31640625,
0.68310546875,
0.0292816162109375,
-0.54150390625,
0.15673828125,
-0.25732421875,
0.8330078125,
-0.1678466796875,
0.8564453125,
-0.509765625,
-0.72216796875,
0.08709716796875,
-1.37890625,
0.73876953125,
-0.44580078125,
0.89697265625,
0.1378173828125,
-0.10809326171875,
0.36572265625,
0.185546875,
-0.248291015625,
0.31396484375,
-0.2139892578125,
0.48486328125,
-0.8408203125,
-0.90869140625,
0.62841796875,
-0.156982421875,
-0.3359375,
0.75048828125,
-0.021514892578125,
-0.52001953125,
-0.0906982421875,
0.5517578125,
-0.5546875,
0.1513671875,
-0.07977294921875,
0.74169921875,
-0.427490234375,
-0.73974609375,
-0.1673583984375,
-0.51806640625,
0.7626953125,
0.08624267578125,
-0.5703125,
-0.1087646484375,
-1.3095703125,
-0.205810546875,
0.1395263671875,
-0.436767578125,
0.271728515625,
0.33349609375,
-0.057647705078125,
-0.230712890625,
-0.06512451171875,
-0.438720703125,
-0.422119140625,
-0.73779296875,
-0.217529296875,
0.115234375,
0.7685546875,
0.91357421875,
-0.0224151611328125,
-0.33544921875,
-0.0609130859375,
0.059844970703125,
0.1904296875,
-0.5439453125,
-0.1734619140625,
-0.309326171875,
-0.0229339599609375,
-0.430908203125,
0.1375732421875,
0.1455078125,
0.370361328125,
0.91357421875,
-0.059417724609375,
0.2088623046875,
0.34326171875,
-0.59228515625,
1.330078125,
0.0360107421875,
-0.92724609375,
-0.94970703125,
0.56298828125,
-0.023040771484375,
0.6064453125,
0.49560546875,
-1.03125,
-0.638671875,
-0.96484375,
0.1876220703125,
-0.951171875,
-0.388671875,
-1.16015625,
-0.7802734375,
-0.646484375,
0.390869140625,
0.1046142578125,
-0.5703125,
0.5888671875,
-0.763671875,
0.299072265625,
-0.7744140625,
0.114013671875,
-0.5673828125,
-0.7470703125,
0.27294921875,
0.88427734375,
0.333984375,
0.383544921875,
-0.0103607177734375,
-0.3994140625,
0.4619140625,
-0.2340087890625,
-0.81494140625,
-0.15966796875,
-0.280029296875,
0.28515625,
0.05633544921875,
-0.1409912109375,
-0.73193359375,
0.994140625,
-0.63916015625,
0.4580078125,
0.1512451171875,
-0.27001953125,
-0.327392578125,
-0.317138671875,
0.857421875,
-0.3046875,
0.0660400390625,
0.026763916015625,
0.3603515625,
0.68603515625,
-0.429931640625,
-0.46728515625,
-0.7734375,
-0.70751953125,
-0.93115234375,
0.6923828125,
-0.26123046875,
0.22900390625,
-0.79833984375,
-0.306396484375,
1.4248046875,
-0.5107421875,
0.4677734375,
1.0185546875,
0.04302978515625,
0.161376953125,
-0.34375,
0.60595703125,
0.428466796875,
-0.30712890625,
0.1668701171875,
-0.0826416015625,
-0.6904296875,
-0.073974609375,
-0.1436767578125,
-0.80810546875,
-0.7529296875,
0.3037109375,
1.3046875,
-0.410400390625,
0.595703125,
-0.411376953125,
-1.337890625,
-0.76416015625,
0.49853515625,
0.279296875,
0.365478515625,
0.7529296875,
-0.09869384765625,
0.08172607421875,
-0.021148681640625,
-0.4697265625,
-0.50927734375,
-0.7724609375,
1.27734375,
-0.59423828125,
-0.51318359375,
0.94580078125,
0.89501953125,
-1.1591796875,
-0.951171875,
0.2015380859375,
-0.1517333984375,
-0.4013671875,
-0.462158203125,
-0.11309814453125,
0.82470703125,
-0.57763671875,
0.12469482421875,
0.313232421875,
-0.1348876953125,
0.12493896484375,
0.0225067138671875,
0.58544921875,
-0.277099609375,
0.66552734375,
0.57275390625,
-0.52587890625,
-0.5166015625,
-0.998046875,
-0.2890625,
-0.279541015625,
0.023651123046875,
0.77783203125,
-0.026641845703125,
0.177978515625,
0.488037109375,
0.103515625,
0.78369140625,
-0.40771484375,
-0.317138671875,
0.1649169921875,
-0.67578125,
-0.56884765625,
0.1453857421875,
0.3447265625,
-0.06475830078125,
0.327392578125,
-0.63427734375,
-0.1083984375,
0.302001953125,
0.50390625,
-0.35009765625,
-0.78125,
-0.1904296875,
-1.4814453125,
-0.556640625,
-0.73681640625,
-0.83837890625,
-0.1768798828125,
0.32763671875,
0.1031494140625,
-0.6669921875,
0.0753173828125,
0.255859375,
-0.693359375,
0.59912109375,
-0.32568359375,
0.264404296875,
-0.309814453125,
-0.634765625,
-1.0478515625,
-0.11285400390625,
-0.410888671875,
-0.4111328125,
-1.111328125,
0.705078125,
0.155029296875,
0.36865234375,
-0.235595703125,
0.85205078125,
-0.359130859375,
-0.82177734375,
0.357666015625,
0.158447265625,
-0.0020618438720703125,
1.2509765625,
0.4375,
0.140380859375,
0.113525390625,
-0.142333984375,
-0.30126953125,
-0.410400390625,
0.5634765625,
0.44189453125,
-0.47021484375,
-0.1610107421875,
-0.0718994140625,
0.32861328125,
-0.86865234375,
0.369873046875,
-0.2333984375,
0.0242919921875,
0.1014404296875,
-0.1512451171875,
0.2421875,
1.4140625,
-0.197509765625,
0.1529541015625,
0.056060791015625,
0.176025390625,
0.1385498046875,
0.324462890625,
-0.052703857421875,
0.51220703125,
-0.19970703125,
-0.422607421875,
-0.345458984375,
0.54248046875,
0.08453369140625,
0.035400390625,
-0.33740234375,
-0.88525390625,
-0.6142578125,
-0.347412109375,
0.01195526123046875,
0.407958984375,
0.56298828125,
-0.46875,
-0.0706787109375,
-0.0224761962890625,
-0.61083984375,
-0.0528564453125,
-1.1279296875,
-1,
0.52294921875,
0.049102783203125,
-0.6796875,
-0.16845703125,
-0.24853515625,
-0.37548828125,
-0.0038928985595703125,
0.68505859375,
-0.5078125,
0.480712890625,
0.051849365234375,
0.302734375,
-0.11041259765625,
-0.13671875,
0.1370849609375,
0.767578125,
-0.60107421875,
-0.689453125,
0.01323699951171875,
0.865234375,
0.16650390625,
-0.46044921875,
-0.0863037109375,
0.420654296875,
-0.1903076171875,
0.310546875,
-0.60107421875,
-0.033905029296875,
0.08868408203125,
1.037109375,
-0.791015625,
0.0238800048828125,
-0.1939697265625,
0.1553955078125,
-0.1143798828125,
-0.60595703125,
-0.49951171875,
1.1142578125,
0.6572265625,
-0.173095703125,
0.7353515625,
0.0706787109375,
0.30078125,
-0.03564453125,
-0.04229736328125,
0.2421875,
0.5830078125,
0.74267578125,
0.57421875,
-0.12939453125,
0.3486328125,
0.873046875,
-0.212646484375,
-0.392578125,
0.404541015625,
-0.081787109375,
-0.014373779296875,
-0.1065673828125,
0.011932373046875,
-0.22412109375,
-0.219970703125,
-0.8017578125,
0.822265625,
-0.2113037109375,
0.31298828125,
-0.10076904296875,
-0.78076171875,
0.97509765625,
-0.349365234375,
-0.4111328125,
0.29345703125,
-0.71142578125,
0.1651611328125,
0.62353515625,
-0.375,
-0.245361328125,
0.74755859375,
0.59228515625,
0.654296875,
0.67724609375,
0.14892578125,
0.4345703125,
-0.4541015625,
0.153564453125,
-0.15283203125,
-0.244873046875,
-0.2266845703125,
-0.6064453125,
-1.115234375,
0.394775390625,
-0.65869140625,
-0.64794921875,
0.75732421875,
-0.72216796875,
0.203857421875,
-0.255126953125,
0.7490234375,
-0.362060546875,
0.1417236328125,
0.6103515625,
-0.1962890625,
-0.8193359375,
0.82763671875,
-0.2286376953125,
0.25439453125,
-0.2137451171875,
1.205078125,
-0.207763671875,
1.3408203125,
0.5908203125,
-0.28369140625,
0.1944580078125,
0.369384765625,
-0.458984375,
-0.6201171875,
-0.5859375,
-0.5859375,
-0.14306640625,
-0.4755859375,
-0.5263671875,
0.1932373046875,
0.3505859375,
0.03594970703125,
-0.80517578125,
-0.09100341796875,
0.30078125,
-0.779296875,
0.5068359375,
0.254150390625,
0.0186614990234375,
0.0928955078125,
-0.08740234375,
-0.09173583984375,
-0.11541748046875,
0.2156982421875,
-0.7255859375,
0.42236328125,
-0.96240234375,
-0.221435546875,
-0.734375,
-0.78369140625,
-0.172607421875,
0.1363525390625,
-0.26953125,
-0.94287109375,
0.28271484375,
0.289794921875,
0.2047119140625,
0.452880859375,
-0.2315673828125,
0.302490234375,
1.0966796875,
1.041015625,
0.040618896484375,
0.80517578125,
0.348388671875,
-0.1077880859375,
0.0242156982421875,
-0.278564453125,
0.4638671875,
0.0003039836883544922,
0.51123046875,
-0.364501953125,
0.1568603515625,
-0.7685546875,
-1.4951171875,
0.374755859375,
0.56103515625,
0.358154296875,
-0.7529296875,
-1.091796875,
-0.0830078125,
-1.267578125,
-0.2008056640625,
-0.77294921875,
1.0087890625,
-0.58837890625,
0.0224761962890625,
-0.1522216796875,
-1.1513671875,
4.21484375,
1.083984375,
0.8662109375,
0.60107421875,
0.182861328125,
0.98876953125,
0.08380126953125,
-0.41064453125,
-0.034637451171875,
-0.1893310546875,
0.77734375,
-0.64453125,
-0.1314697265625,
0.78125,
0.296630859375,
0.5634765625,
-0.379150390625,
0.50146484375,
-0.1009521484375,
-1.013671875,
-0.94140625,
0.474853515625,
-0.09625244140625,
0.50341796875,
0.047882080078125,
0.205078125,
0.85400390625,
-1.1376953125,
0.226318359375,
-0.76171875,
0.216064453125,
-0.37109375,
1.138671875,
0.03497314453125,
0.10791015625,
0.5361328125,
-0.09356689453125,
-0.46337890625,
0.262939453125,
0.005229949951171875,
-0.11737060546875,
-0.0297393798828125,
0.5068359375,
-0.91650390625,
-0.00783538818359375,
0.50439453125,
-0.68017578125,
0.392333984375,
-0.1690673828125,
-1.0576171875,
0.9296875,
-0.1463623046875,
0.3984375,
-0.98388671875,
-0.27197265625,
-0.19873046875,
0.349853515625,
-0.10015869140625,
-0.54736328125,
0.368896484375,
0.54541015625,
0.5546875,
0.2822265625,
0.55322265625,
-0.96142578125,
0.1595458984375,
-0.149658203125,
0.33740234375,
-0.517578125,
0.07049560546875,
-0.4013671875,
-0.42578125,
-0.360595703125,
-0.49755859375,
0.59814453125,
0.01123809814453125,
-0.052276611328125,
0.417724609375,
0.51123046875,
-0.63330078125,
0.0916748046875,
-0.09674072265625,
-0.043701171875,
-0.62158203125,
0.71240234375,
1.22265625,
-0.59765625,
-0.387451171875,
-0.3544921875,
0.41845703125,
0.481689453125,
0.451416015625,
-0.1043701171875,
-0.7763671875,
-0.0557861328125
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
We have a string of letters 'a' and 'b'. We want to perform some operations on it. On each step we choose one of substrings "ab" in the string and replace it with the string "bba". If we have no "ab" as a substring, our job is done. Print the minimum number of steps we should perform to make our job done modulo 109 + 7.
The string "ab" appears as a substring if there is a letter 'b' right after the letter 'a' somewhere in the string.
Input
The first line contains the initial string consisting of letters 'a' and 'b' only with length from 1 to 106.
Output
Print the minimum number of steps modulo 109 + 7.
Examples
Input
ab
Output
1
Input
aab
Output
3
Note
The first example: "ab" → "bba".
The second example: "aab" → "abba" → "bbaba" → "bbbbaa".
Tags: combinatorics, greedy, implementation, math
Correct Solution:
```
import math
import sys
mod = 1000000007
def main():
n = input()
tmp = 0
ans = 0
for i in range(len(n)-1,-1,-1):
if n[i] == 'a':
ans += tmp
ans %= mod
tmp *= 2
tmp %= mod
else:
tmp += 1
print(ans)
main()
```
| 10,466 | [
0.376708984375,
-0.1474609375,
0.085205078125,
0.06390380859375,
-0.81103515625,
-0.640625,
0.045745849609375,
-0.1669921875,
0.2900390625,
0.859375,
0.66796875,
-0.325927734375,
-0.2183837890625,
-0.80908203125,
-0.51025390625,
0.0153045654296875,
-0.463134765625,
-0.75927734375,
-0.38134765625,
-0.32861328125,
0.10601806640625,
-0.1173095703125,
-1.1220703125,
-0.1015625,
-0.273681640625,
1.041015625,
0.689453125,
-0.0287322998046875,
0.95849609375,
1.3173828125,
-0.19189453125,
-0.09716796875,
0.467529296875,
-1.08203125,
-0.400634765625,
-0.479736328125,
0.5986328125,
-0.94580078125,
-0.1651611328125,
-0.295654296875,
0.254638671875,
-0.61083984375,
0.5146484375,
-0.86083984375,
-1.470703125,
0.09161376953125,
-0.1451416015625,
-0.488037109375,
0.00484466552734375,
-0.5693359375,
-0.0799560546875,
-0.355224609375,
0.39404296875,
0.0689697265625,
-0.054290771484375,
0.161376953125,
0.258056640625,
-0.37841796875,
-0.8564453125,
0.12469482421875,
0.453125,
0.05596923828125,
0.0714111328125,
-0.8564453125,
-0.04608154296875,
0.204345703125,
-0.337646484375,
0.004749298095703125,
-0.190185546875,
-1.060546875,
-0.0816650390625,
0.258056640625,
-0.358154296875,
-0.5,
-0.1451416015625,
0.10687255859375,
0.347900390625,
-0.3037109375,
-0.638671875,
1.1181640625,
-0.2227783203125,
0.71337890625,
0.2271728515625,
0.278076171875,
-0.270263671875,
-0.47119140625,
-0.00870513916015625,
0.302001953125,
-0.007114410400390625,
-0.103759765625,
-0.365234375,
0.74072265625,
-0.322265625,
-0.0116424560546875,
0.35595703125,
0.60791015625,
-0.325439453125,
0.2047119140625,
0.5888671875,
0.304443359375,
0.80078125,
1.1123046875,
-0.56591796875,
0.7802734375,
-0.5546875,
-0.0182037353515625,
0.08209228515625,
-0.08001708984375,
-0.335693359375,
0.0838623046875,
-0.2452392578125,
-0.322509765625,
0.64208984375,
0.312744140625,
-0.47119140625,
1.1376953125,
0.18505859375,
0.41552734375,
-0.62890625,
0.68310546875,
0.454833984375,
0.20849609375,
0.6884765625,
-0.1678466796875,
-0.2464599609375,
-0.093994140625,
-0.5908203125,
1.1630859375,
-0.75927734375,
-0.2322998046875,
0.157958984375,
0.159912109375,
0.044464111328125,
0.340576171875,
-0.1962890625,
0.67041015625,
-0.0123291015625,
0.275146484375,
0.7392578125,
-0.41650390625,
0.5810546875,
-0.385009765625,
-0.105224609375,
1.7197265625,
0.2158203125,
-0.09735107421875,
0.90576171875,
0.39990234375,
-0.8505859375,
0.301513671875,
-1.0595703125,
0.80908203125,
0.355712890625,
0.388916015625,
-0.054656982421875,
0.147705078125,
-0.28125,
0.49365234375,
0.08660888671875,
-0.15673828125,
-0.58642578125,
-0.050537109375,
-0.32861328125,
1.0859375,
-0.463623046875,
0.91748046875,
-0.29345703125,
-0.24609375,
-0.1650390625,
-0.40966796875,
0.1917724609375,
-0.2235107421875,
-0.267822265625,
0.9150390625,
0.349609375,
1.060546875,
1.1953125,
-0.27685546875,
0.52294921875,
0.315673828125,
-0.4541015625,
0.146484375,
0.326171875,
0.93701171875,
0.332275390625,
0.43310546875,
-0.268310546875,
-0.02215576171875,
-0.68359375,
-0.444580078125,
0.32666015625,
0.669921875,
-0.81298828125,
0.440185546875,
-0.0810546875,
-0.025299072265625,
-0.6630859375,
-0.288818359375,
-0.2093505859375,
-0.95458984375,
-0.237060546875,
0.469970703125,
-0.0631103515625,
0.2705078125,
-0.460205078125,
-0.513671875,
0.360107421875,
1.1533203125,
-0.54248046875,
0.05975341796875,
0.451904296875,
-0.1702880859375,
-0.080322265625,
0.4248046875,
0.02679443359375,
-0.25146484375,
-0.6240234375,
0.7939453125,
-0.034454345703125,
-0.11126708984375,
-0.1732177734375,
0.6328125,
0.444091796875,
0.7568359375,
-0.04278564453125,
-0.50830078125,
0.52978515625,
0.93359375,
-0.043365478515625,
0.61572265625,
0.1907958984375,
0.77587890625,
0.9580078125,
0.83349609375,
0.7021484375,
0.20166015625,
0.355712890625,
0.81201171875,
0.103759765625,
0.30029296875,
0.53369140625,
0.708984375,
0.2186279296875,
0.2174072265625,
0.443603515625,
0.57568359375,
0.1513671875,
-0.06695556640625,
0.0215606689453125,
-0.039459228515625,
-0.39697265625,
0.9091796875,
0.06890869140625,
0.68359375,
-0.046478271484375,
-0.298583984375,
0.181884765625,
1.0966796875,
-1.01953125,
-0.41748046875,
-0.16943359375,
0.0123291015625,
0.0140380859375,
0.002231597900390625,
0.8837890625,
0.59716796875,
0.6572265625,
0.36279296875,
-0.3623046875,
-0.251708984375,
-0.77197265625,
-0.7958984375,
-0.798828125,
-0.2432861328125,
-0.720703125,
-0.1243896484375,
-0.06689453125,
-0.97265625,
0.01007843017578125,
-0.204833984375,
-0.1763916015625,
0.3486328125,
-0.5986328125,
0.79638671875,
-0.00829315185546875,
0.2822265625,
-0.56298828125,
0.60693359375,
0.1011962890625,
1.080078125,
-0.87646484375,
0.003978729248046875,
-0.021697998046875,
-0.66796875,
0.06640625,
0.39892578125,
0.30615234375,
0.0077667236328125,
-0.748046875,
-0.87841796875,
-0.480224609375,
0.27783203125,
-0.34423828125,
0.319580078125,
-0.404296875,
0.671875,
0.60205078125,
-0.5625,
0.65185546875,
1.0263671875,
-0.931640625,
0.576171875,
0.038665771484375,
-0.48046875,
-0.82666015625,
1.095703125,
0.55224609375,
0.52294921875,
-0.430908203125,
-0.6689453125,
-0.341552734375,
0.0161895751953125,
0.2099609375,
-0.7646484375,
-0.18310546875,
0.65087890625,
-0.032501220703125,
-0.859375,
0.607421875,
-1.0146484375,
-0.6201171875,
-0.6640625,
-0.376708984375,
1.189453125,
0.84130859375,
0.1004638671875,
0.128662109375,
0.1300048828125,
0.1505126953125,
0.453125,
0.5703125,
-0.63623046875,
0.25146484375,
0.86767578125,
0.034820556640625,
-0.034912109375,
0.183837890625,
-0.374267578125,
-0.201171875,
0.1702880859375,
0.177490234375,
0.6259765625,
0.050750732421875,
0.467529296875,
0.37158203125,
0.568359375,
-0.7841796875,
0.031768798828125,
-0.1995849609375,
0.67626953125,
0.52001953125,
0.623046875,
-0.1334228515625,
-0.406005859375,
-0.5390625,
-1.400390625,
0.0271759033203125,
0.293701171875,
0.80078125,
-0.6103515625,
1.1982421875,
0.15087890625,
-0.623046875,
0.286865234375,
-0.6796875,
0.284423828125,
0.95458984375,
0.15625,
0.93115234375,
-0.74853515625,
0.40625,
0.1552734375,
0.050018310546875,
0.462158203125,
0.61328125,
0.306640625,
-0.57080078125,
-0.77685546875,
-0.5234375,
-0.132080078125,
-0.286865234375,
-0.52099609375,
0.343994140625,
-0.49560546875,
-0.06207275390625,
-0.99560546875,
0.48779296875,
0.6953125,
0.81591796875,
0.01456451416015625,
0.231689453125,
0.34033203125,
0.36181640625,
0.6513671875,
-0.148681640625,
0.191650390625,
-0.60107421875,
0.7705078125,
0.18017578125,
-0.305419921875,
-0.7822265625,
-0.4169921875,
0.0640869140625,
0.1385498046875,
-0.48779296875,
-0.1339111328125,
-1.109375,
0.2286376953125,
-0.456787109375,
0.658203125,
-0.65869140625,
-0.2734375,
-0.19287109375,
0.392822265625,
0.237548828125,
-1.0556640625,
0.5341796875,
-1.0341796875,
0.77880859375,
0.57666015625,
0.1424560546875,
-0.1597900390625,
-0.37255859375,
-0.71826171875,
-0.42822265625,
-0.12445068359375,
0.81494140625,
-0.24462890625,
0.416259765625,
-1.3447265625,
0.5380859375,
0.09027099609375,
-0.435791015625,
0.1827392578125,
-0.265869140625,
0.83740234375,
-0.210205078125,
0.8701171875,
-0.465576171875,
-0.72607421875,
0.12030029296875,
-1.388671875,
0.744140625,
-0.45361328125,
0.845703125,
0.09637451171875,
-0.11590576171875,
0.292724609375,
0.2340087890625,
-0.2232666015625,
0.323974609375,
-0.1221923828125,
0.437744140625,
-0.794921875,
-0.92333984375,
0.70654296875,
-0.25048828125,
-0.29736328125,
0.77685546875,
-0.0260162353515625,
-0.533203125,
-0.0233917236328125,
0.5966796875,
-0.525390625,
0.2059326171875,
-0.0972900390625,
0.75634765625,
-0.435546875,
-0.73486328125,
-0.2083740234375,
-0.56103515625,
0.71728515625,
0.0697021484375,
-0.615234375,
-0.123779296875,
-1.3232421875,
-0.251953125,
0.172119140625,
-0.3916015625,
0.305419921875,
0.344970703125,
-0.1405029296875,
-0.315673828125,
-0.14697265625,
-0.434814453125,
-0.430419921875,
-0.64013671875,
-0.18359375,
0.1268310546875,
0.76611328125,
0.9619140625,
-0.08917236328125,
-0.292724609375,
0.024078369140625,
0.05560302734375,
0.1529541015625,
-0.591796875,
-0.158203125,
-0.3251953125,
-0.0760498046875,
-0.405517578125,
0.1097412109375,
0.1666259765625,
0.375732421875,
0.90869140625,
-0.00466156005859375,
0.129150390625,
0.35791015625,
-0.62548828125,
1.25390625,
0.097412109375,
-0.9765625,
-0.98486328125,
0.55908203125,
-0.10736083984375,
0.59423828125,
0.52490234375,
-1.0439453125,
-0.60986328125,
-0.98583984375,
0.199951171875,
-0.91162109375,
-0.311279296875,
-1.234375,
-0.71142578125,
-0.73974609375,
0.4072265625,
0.1751708984375,
-0.576171875,
0.444091796875,
-0.74365234375,
0.225341796875,
-0.81103515625,
0.169677734375,
-0.59228515625,
-0.79248046875,
0.2861328125,
0.8857421875,
0.30078125,
0.3154296875,
0.00032019615173339844,
-0.393310546875,
0.466796875,
-0.2490234375,
-0.7568359375,
-0.23095703125,
-0.28564453125,
0.2353515625,
0.08612060546875,
-0.1373291015625,
-0.65478515625,
1.0029296875,
-0.65283203125,
0.461181640625,
0.150634765625,
-0.281005859375,
-0.291015625,
-0.298828125,
0.80419921875,
-0.2861328125,
0.01029205322265625,
0.0164642333984375,
0.388671875,
0.69580078125,
-0.431884765625,
-0.54443359375,
-0.7685546875,
-0.6572265625,
-0.9208984375,
0.59375,
-0.3056640625,
0.20947265625,
-0.8427734375,
-0.274169921875,
1.4072265625,
-0.55517578125,
0.37890625,
1.0888671875,
-0.00417327880859375,
0.2105712890625,
-0.302734375,
0.62451171875,
0.384765625,
-0.31494140625,
0.2364501953125,
-0.038055419921875,
-0.68701171875,
-0.09356689453125,
-0.102294921875,
-0.78369140625,
-0.6474609375,
0.29296875,
1.373046875,
-0.46923828125,
0.53857421875,
-0.292236328125,
-1.333984375,
-0.65087890625,
0.56787109375,
0.34814453125,
0.32958984375,
0.716796875,
-0.017333984375,
0.062744140625,
-0.134033203125,
-0.4375,
-0.49267578125,
-0.73486328125,
1.271484375,
-0.603515625,
-0.464111328125,
0.8818359375,
0.9580078125,
-1.1005859375,
-0.9443359375,
0.29541015625,
-0.1005859375,
-0.40673828125,
-0.489990234375,
-0.020416259765625,
0.75048828125,
-0.630859375,
0.124755859375,
0.300048828125,
-0.038665771484375,
0.0909423828125,
0.0199737548828125,
0.546875,
-0.24560546875,
0.7431640625,
0.5634765625,
-0.54052734375,
-0.428466796875,
-0.9375,
-0.336669921875,
-0.30224609375,
-0.10675048828125,
0.83447265625,
-0.0906982421875,
0.1785888671875,
0.489013671875,
0.10638427734375,
0.75732421875,
-0.457275390625,
-0.351318359375,
0.177978515625,
-0.63720703125,
-0.58544921875,
0.161865234375,
0.33349609375,
-0.0113067626953125,
0.318603515625,
-0.63720703125,
0.0185699462890625,
0.270263671875,
0.4609375,
-0.3056640625,
-0.89990234375,
-0.1781005859375,
-1.4931640625,
-0.53271484375,
-0.74951171875,
-0.90966796875,
-0.1815185546875,
0.35498046875,
0.04901123046875,
-0.630859375,
0.0160675048828125,
0.2440185546875,
-0.736328125,
0.60205078125,
-0.3466796875,
0.29931640625,
-0.3046875,
-0.65380859375,
-1.0166015625,
-0.1585693359375,
-0.395751953125,
-0.292236328125,
-1.103515625,
0.70458984375,
0.117431640625,
0.362548828125,
-0.1702880859375,
0.865234375,
-0.3544921875,
-0.86669921875,
0.298095703125,
0.15966796875,
-0.04266357421875,
1.275390625,
0.452880859375,
0.09942626953125,
0.098876953125,
-0.07574462890625,
-0.227294921875,
-0.4853515625,
0.49951171875,
0.419189453125,
-0.484619140625,
-0.16552734375,
-0.08514404296875,
0.314453125,
-0.91015625,
0.3896484375,
-0.250244140625,
0.0919189453125,
0.1610107421875,
-0.137451171875,
0.2467041015625,
1.3837890625,
-0.1434326171875,
0.09344482421875,
-0.00846099853515625,
0.1689453125,
0.1409912109375,
0.292724609375,
-0.046234130859375,
0.466064453125,
-0.1553955078125,
-0.422119140625,
-0.22509765625,
0.468505859375,
0.08831787109375,
0.0162353515625,
-0.31201171875,
-0.8876953125,
-0.65478515625,
-0.315673828125,
0.0399169921875,
0.397705078125,
0.52685546875,
-0.53173828125,
-0.0870361328125,
-0.03570556640625,
-0.52587890625,
0.00803375244140625,
-1.0888671875,
-0.95703125,
0.55322265625,
-0.03643798828125,
-0.7021484375,
-0.138671875,
-0.260498046875,
-0.390380859375,
-0.08892822265625,
0.60888671875,
-0.447265625,
0.4931640625,
0.0109100341796875,
0.277099609375,
-0.09326171875,
-0.18701171875,
0.09796142578125,
0.7421875,
-0.646484375,
-0.70361328125,
0.0916748046875,
0.84912109375,
0.213134765625,
-0.38916015625,
-0.1572265625,
0.48095703125,
-0.2186279296875,
0.348876953125,
-0.619140625,
-0.09344482421875,
-0.01013946533203125,
0.91455078125,
-0.79296875,
0.11700439453125,
-0.222900390625,
0.1329345703125,
-0.059722900390625,
-0.57470703125,
-0.52001953125,
1.142578125,
0.7041015625,
-0.1552734375,
0.68359375,
0.088623046875,
0.287353515625,
-0.0007038116455078125,
-0.0728759765625,
0.26416015625,
0.603515625,
0.765625,
0.60986328125,
-0.1329345703125,
0.24169921875,
0.90185546875,
-0.2034912109375,
-0.420166015625,
0.30224609375,
-0.07757568359375,
-0.068603515625,
-0.1251220703125,
0.054412841796875,
-0.2783203125,
-0.305908203125,
-0.84716796875,
0.8759765625,
-0.209716796875,
0.2288818359375,
-0.08599853515625,
-0.7802734375,
0.8935546875,
-0.336181640625,
-0.356201171875,
0.2437744140625,
-0.701171875,
0.203125,
0.5791015625,
-0.311767578125,
-0.318603515625,
0.681640625,
0.55810546875,
0.67822265625,
0.70068359375,
0.183837890625,
0.488525390625,
-0.5361328125,
0.161865234375,
-0.215087890625,
-0.1192626953125,
-0.2099609375,
-0.59521484375,
-1.0869140625,
0.48828125,
-0.63037109375,
-0.55224609375,
0.74658203125,
-0.69140625,
0.21923828125,
-0.28173828125,
0.77783203125,
-0.409423828125,
0.0703125,
0.57666015625,
-0.261962890625,
-0.86083984375,
0.798828125,
-0.1966552734375,
0.231689453125,
-0.279052734375,
1.193359375,
-0.14697265625,
1.4306640625,
0.59912109375,
-0.27734375,
0.229736328125,
0.336669921875,
-0.410400390625,
-0.6337890625,
-0.65234375,
-0.5634765625,
-0.0938720703125,
-0.484375,
-0.4814453125,
0.235107421875,
0.334228515625,
-0.02197265625,
-0.7802734375,
-0.1435546875,
0.33154296875,
-0.7197265625,
0.355712890625,
0.29443359375,
0.0311126708984375,
0.048248291015625,
-0.09967041015625,
-0.12109375,
-0.14111328125,
0.2032470703125,
-0.81298828125,
0.409423828125,
-0.95849609375,
-0.241943359375,
-0.6943359375,
-0.7099609375,
-0.206787109375,
0.0794677734375,
-0.3173828125,
-0.85400390625,
0.319091796875,
0.288818359375,
0.2176513671875,
0.433349609375,
-0.196044921875,
0.2457275390625,
1.0771484375,
1.0556640625,
0.1324462890625,
0.8154296875,
0.29052734375,
-0.14306640625,
0.0090179443359375,
-0.290283203125,
0.383544921875,
-0.032073974609375,
0.4873046875,
-0.34716796875,
0.1658935546875,
-0.7109375,
-1.5224609375,
0.430908203125,
0.544921875,
0.382080078125,
-0.7275390625,
-1.1005859375,
-0.120361328125,
-1.3125,
-0.2061767578125,
-0.7431640625,
0.98583984375,
-0.54248046875,
0.02703857421875,
-0.118408203125,
-1.23046875,
4.2578125,
1.087890625,
0.9228515625,
0.6787109375,
0.176513671875,
0.97119140625,
0.051055908203125,
-0.418212890625,
-0.0263824462890625,
-0.274658203125,
0.80517578125,
-0.55224609375,
-0.1029052734375,
0.73291015625,
0.289306640625,
0.45068359375,
-0.3798828125,
0.50244140625,
-0.2237548828125,
-0.9248046875,
-0.935546875,
0.4921875,
-0.1602783203125,
0.45849609375,
0.08056640625,
0.1043701171875,
0.78564453125,
-1.0703125,
0.163818359375,
-0.728515625,
0.2310791015625,
-0.3701171875,
1.0791015625,
0.06280517578125,
0.0523681640625,
0.46875,
-0.14501953125,
-0.51318359375,
0.212890625,
0.03131103515625,
-0.190185546875,
-0.0816650390625,
0.46923828125,
-0.890625,
0.01358795166015625,
0.52099609375,
-0.67333984375,
0.360107421875,
-0.1573486328125,
-1.1005859375,
0.90380859375,
-0.2259521484375,
0.336181640625,
-0.94677734375,
-0.31640625,
-0.1322021484375,
0.412109375,
-0.128173828125,
-0.4765625,
0.386962890625,
0.53564453125,
0.461669921875,
0.26513671875,
0.5322265625,
-0.970703125,
0.2105712890625,
-0.1881103515625,
0.369384765625,
-0.5908203125,
0.10205078125,
-0.402099609375,
-0.41943359375,
-0.2376708984375,
-0.467041015625,
0.52294921875,
-0.0220794677734375,
-0.05316162109375,
0.411376953125,
0.43310546875,
-0.6435546875,
0.061187744140625,
-0.0958251953125,
-0.15478515625,
-0.55078125,
0.65380859375,
1.28125,
-0.52587890625,
-0.384765625,
-0.369140625,
0.423828125,
0.43310546875,
0.38232421875,
-0.08673095703125,
-0.74951171875,
-0.06658935546875
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
We have a string of letters 'a' and 'b'. We want to perform some operations on it. On each step we choose one of substrings "ab" in the string and replace it with the string "bba". If we have no "ab" as a substring, our job is done. Print the minimum number of steps we should perform to make our job done modulo 109 + 7.
The string "ab" appears as a substring if there is a letter 'b' right after the letter 'a' somewhere in the string.
Input
The first line contains the initial string consisting of letters 'a' and 'b' only with length from 1 to 106.
Output
Print the minimum number of steps modulo 109 + 7.
Examples
Input
ab
Output
1
Input
aab
Output
3
Note
The first example: "ab" → "bba".
The second example: "aab" → "abba" → "bbaba" → "bbbbaa".
Tags: combinatorics, greedy, implementation, math
Correct Solution:
```
mod = 1000000007; b,ans = 0,0
for x in reversed(input()):
if x == 'a':
ans = (ans + b)%mod;
b = (2*b)%mod
else: b = (b+1%mod)
print(ans)
```
| 10,467 | [
0.417236328125,
-0.1573486328125,
0.048980712890625,
0.066162109375,
-0.76318359375,
-0.70849609375,
0.050933837890625,
-0.1517333984375,
0.205322265625,
0.93603515625,
0.72021484375,
-0.286865234375,
-0.1544189453125,
-0.82861328125,
-0.494384765625,
0.0099334716796875,
-0.409912109375,
-0.77734375,
-0.3701171875,
-0.31787109375,
0.052001953125,
-0.1534423828125,
-1.1689453125,
-0.04144287109375,
-0.2373046875,
0.98291015625,
0.716796875,
-0.07196044921875,
1.0400390625,
1.3076171875,
-0.2139892578125,
-0.1533203125,
0.49462890625,
-1.0927734375,
-0.40478515625,
-0.46826171875,
0.60205078125,
-0.9052734375,
-0.134033203125,
-0.3408203125,
0.279541015625,
-0.64892578125,
0.52197265625,
-0.80908203125,
-1.552734375,
0.11004638671875,
-0.2159423828125,
-0.49072265625,
-0.0560302734375,
-0.57373046875,
-0.1160888671875,
-0.3740234375,
0.422119140625,
0.05712890625,
0.041778564453125,
0.176513671875,
0.259765625,
-0.38916015625,
-0.8291015625,
0.1689453125,
0.407958984375,
0.0712890625,
0.1300048828125,
-0.93798828125,
-0.1307373046875,
0.1707763671875,
-0.362548828125,
0.051910400390625,
-0.197998046875,
-1.005859375,
-0.0274658203125,
0.213623046875,
-0.302734375,
-0.49658203125,
-0.10321044921875,
0.0963134765625,
0.43017578125,
-0.240234375,
-0.67138671875,
1.1474609375,
-0.25732421875,
0.71337890625,
0.221435546875,
0.20703125,
-0.259521484375,
-0.432861328125,
0.057891845703125,
0.2587890625,
-0.0615234375,
-0.13671875,
-0.309326171875,
0.7705078125,
-0.286865234375,
-0.001972198486328125,
0.283203125,
0.51806640625,
-0.298095703125,
0.181640625,
0.59619140625,
0.288330078125,
0.84619140625,
1.046875,
-0.5966796875,
0.78515625,
-0.53564453125,
-0.0867919921875,
0.053375244140625,
-0.08154296875,
-0.260009765625,
0.018951416015625,
-0.29150390625,
-0.298095703125,
0.568359375,
0.29443359375,
-0.4873046875,
1.125,
0.2230224609375,
0.371337890625,
-0.619140625,
0.64453125,
0.493896484375,
0.1522216796875,
0.71875,
-0.155029296875,
-0.25048828125,
-0.060333251953125,
-0.54345703125,
1.1123046875,
-0.84716796875,
-0.25830078125,
0.154541015625,
0.146728515625,
0.043701171875,
0.36962890625,
-0.181640625,
0.69580078125,
-0.063232421875,
0.282958984375,
0.7099609375,
-0.5322265625,
0.6455078125,
-0.35546875,
-0.182861328125,
1.7392578125,
0.1661376953125,
-0.10211181640625,
0.83935546875,
0.447021484375,
-0.890625,
0.297607421875,
-1.0888671875,
0.7978515625,
0.318603515625,
0.35888671875,
0.0073089599609375,
0.1224365234375,
-0.313720703125,
0.5244140625,
0.0740966796875,
-0.1695556640625,
-0.53271484375,
0.0190582275390625,
-0.390625,
1.037109375,
-0.541015625,
0.87841796875,
-0.22998046875,
-0.2147216796875,
-0.1553955078125,
-0.482666015625,
0.2413330078125,
-0.222412109375,
-0.282470703125,
0.9140625,
0.370849609375,
1.068359375,
1.234375,
-0.2469482421875,
0.46484375,
0.364013671875,
-0.470458984375,
0.205078125,
0.306396484375,
0.95703125,
0.308349609375,
0.37841796875,
-0.28515625,
0.00348663330078125,
-0.74755859375,
-0.440673828125,
0.2822265625,
0.732421875,
-0.814453125,
0.5029296875,
-0.050445556640625,
-0.08697509765625,
-0.7060546875,
-0.25341796875,
-0.1859130859375,
-0.982421875,
-0.208984375,
0.52880859375,
-0.059906005859375,
0.35205078125,
-0.455810546875,
-0.54345703125,
0.382080078125,
1.1318359375,
-0.52001953125,
0.09075927734375,
0.39892578125,
-0.10589599609375,
-0.09979248046875,
0.448974609375,
0.08258056640625,
-0.258544921875,
-0.60595703125,
0.796875,
-0.00485992431640625,
-0.11322021484375,
-0.189453125,
0.599609375,
0.5087890625,
0.765625,
-0.129150390625,
-0.483642578125,
0.5732421875,
1.0009765625,
-0.0271759033203125,
0.6396484375,
0.1778564453125,
0.78173828125,
1.0048828125,
0.85791015625,
0.693359375,
0.20068359375,
0.35009765625,
0.83935546875,
0.05755615234375,
0.306884765625,
0.55517578125,
0.69189453125,
0.214111328125,
0.254150390625,
0.472412109375,
0.61474609375,
0.235107421875,
-0.1632080078125,
-0.032135009765625,
-0.0156707763671875,
-0.337158203125,
0.8291015625,
0.0980224609375,
0.6416015625,
-0.00852203369140625,
-0.321533203125,
0.181884765625,
1.0771484375,
-1.08984375,
-0.43310546875,
-0.05615234375,
-0.03521728515625,
-0.032257080078125,
-0.05145263671875,
0.9150390625,
0.64990234375,
0.72265625,
0.415283203125,
-0.276611328125,
-0.301513671875,
-0.77001953125,
-0.80419921875,
-0.8349609375,
-0.26611328125,
-0.79443359375,
-0.03143310546875,
-0.131591796875,
-1.0087890625,
-0.0033092498779296875,
-0.285888671875,
-0.1107177734375,
0.296142578125,
-0.6162109375,
0.8046875,
-0.01430511474609375,
0.2352294921875,
-0.59521484375,
0.68603515625,
0.1458740234375,
1.103515625,
-0.8203125,
0.00673675537109375,
-0.12493896484375,
-0.669921875,
0.06378173828125,
0.37744140625,
0.2978515625,
-0.0249786376953125,
-0.81640625,
-0.91748046875,
-0.53759765625,
0.2396240234375,
-0.352783203125,
0.3525390625,
-0.408203125,
0.6787109375,
0.6123046875,
-0.59423828125,
0.61669921875,
1.1083984375,
-0.9033203125,
0.62109375,
0.035858154296875,
-0.450927734375,
-0.8251953125,
1.146484375,
0.5478515625,
0.5810546875,
-0.3623046875,
-0.64453125,
-0.399169921875,
0.0021152496337890625,
0.17431640625,
-0.80517578125,
-0.1873779296875,
0.65234375,
0.0222320556640625,
-0.9404296875,
0.53271484375,
-0.96240234375,
-0.67578125,
-0.6669921875,
-0.40673828125,
1.1806640625,
0.8671875,
0.06982421875,
0.12493896484375,
0.10357666015625,
0.1224365234375,
0.417724609375,
0.529296875,
-0.62890625,
0.2039794921875,
0.93310546875,
-0.0151519775390625,
-0.01332855224609375,
0.2010498046875,
-0.35107421875,
-0.2137451171875,
0.1387939453125,
0.183837890625,
0.60888671875,
0.004566192626953125,
0.46435546875,
0.3212890625,
0.548828125,
-0.81103515625,
0.034332275390625,
-0.2352294921875,
0.6826171875,
0.533203125,
0.63037109375,
-0.11767578125,
-0.40234375,
-0.6396484375,
-1.33203125,
0.042144775390625,
0.30810546875,
0.7646484375,
-0.58349609375,
1.20703125,
0.18603515625,
-0.55419921875,
0.2462158203125,
-0.7216796875,
0.334228515625,
0.86572265625,
0.10028076171875,
1.001953125,
-0.8564453125,
0.49658203125,
0.1827392578125,
0.004665374755859375,
0.432861328125,
0.6064453125,
0.308837890625,
-0.6123046875,
-0.80126953125,
-0.54345703125,
-0.08868408203125,
-0.26611328125,
-0.54638671875,
0.31982421875,
-0.50439453125,
-0.14306640625,
-1.0068359375,
0.485595703125,
0.6396484375,
0.759765625,
0.0206451416015625,
0.24267578125,
0.298828125,
0.30712890625,
0.634765625,
-0.11175537109375,
0.187255859375,
-0.603515625,
0.77783203125,
0.182373046875,
-0.3740234375,
-0.7490234375,
-0.3818359375,
-0.006961822509765625,
0.143310546875,
-0.5146484375,
-0.1575927734375,
-1.044921875,
0.1812744140625,
-0.40283203125,
0.62939453125,
-0.5595703125,
-0.212158203125,
-0.2115478515625,
0.35302734375,
0.26123046875,
-1.03125,
0.560546875,
-1.0078125,
0.84228515625,
0.62060546875,
0.12030029296875,
-0.1260986328125,
-0.37158203125,
-0.79541015625,
-0.443603515625,
-0.181396484375,
0.798828125,
-0.1722412109375,
0.432861328125,
-1.3427734375,
0.599609375,
0.04888916015625,
-0.51318359375,
0.174072265625,
-0.261474609375,
0.78125,
-0.189453125,
0.8623046875,
-0.454833984375,
-0.71435546875,
0.1297607421875,
-1.3603515625,
0.7392578125,
-0.494873046875,
0.83740234375,
0.1546630859375,
-0.12890625,
0.291748046875,
0.19384765625,
-0.24853515625,
0.333740234375,
-0.1795654296875,
0.4560546875,
-0.85009765625,
-0.92919921875,
0.60205078125,
-0.1702880859375,
-0.337646484375,
0.77783203125,
0.01149749755859375,
-0.53125,
-0.07135009765625,
0.5693359375,
-0.583984375,
0.19970703125,
-0.09515380859375,
0.7744140625,
-0.47607421875,
-0.7685546875,
-0.209228515625,
-0.54150390625,
0.763671875,
0.0537109375,
-0.60888671875,
-0.1312255859375,
-1.287109375,
-0.17919921875,
0.154541015625,
-0.367431640625,
0.281982421875,
0.318359375,
-0.0789794921875,
-0.262451171875,
-0.09368896484375,
-0.370361328125,
-0.438232421875,
-0.72607421875,
-0.1728515625,
0.129150390625,
0.763671875,
0.875,
0.006809234619140625,
-0.279541015625,
-0.006622314453125,
0.039825439453125,
0.189453125,
-0.53369140625,
-0.188720703125,
-0.29443359375,
-0.0679931640625,
-0.390625,
0.155517578125,
0.13818359375,
0.369140625,
0.93212890625,
-0.057098388671875,
0.170654296875,
0.2724609375,
-0.6171875,
1.3369140625,
0.1064453125,
-0.923828125,
-0.974609375,
0.5107421875,
-0.0455322265625,
0.5859375,
0.521484375,
-1.0556640625,
-0.625,
-0.9765625,
0.1707763671875,
-0.9736328125,
-0.3330078125,
-1.1923828125,
-0.76953125,
-0.6962890625,
0.353515625,
0.11627197265625,
-0.58837890625,
0.50634765625,
-0.77294921875,
0.255859375,
-0.7978515625,
0.1385498046875,
-0.6240234375,
-0.76513671875,
0.26123046875,
0.89599609375,
0.266357421875,
0.338623046875,
-0.005626678466796875,
-0.449951171875,
0.48828125,
-0.1976318359375,
-0.8212890625,
-0.191650390625,
-0.254150390625,
0.263427734375,
0.052642822265625,
-0.1229248046875,
-0.689453125,
1.03515625,
-0.6767578125,
0.466796875,
0.1885986328125,
-0.285888671875,
-0.316650390625,
-0.30517578125,
0.85009765625,
-0.254150390625,
0.055084228515625,
0.0280609130859375,
0.31689453125,
0.70751953125,
-0.457763671875,
-0.52294921875,
-0.75634765625,
-0.69091796875,
-0.9677734375,
0.685546875,
-0.296630859375,
0.242431640625,
-0.78759765625,
-0.3544921875,
1.380859375,
-0.5478515625,
0.445068359375,
1.0302734375,
0.041748046875,
0.200439453125,
-0.284912109375,
0.6376953125,
0.407470703125,
-0.31201171875,
0.16064453125,
-0.0760498046875,
-0.67724609375,
-0.1151123046875,
-0.14697265625,
-0.77734375,
-0.72705078125,
0.31396484375,
1.3505859375,
-0.418701171875,
0.58837890625,
-0.3994140625,
-1.330078125,
-0.7412109375,
0.50634765625,
0.34228515625,
0.38818359375,
0.78955078125,
-0.083251953125,
0.07452392578125,
-0.06561279296875,
-0.460693359375,
-0.525390625,
-0.77001953125,
1.2666015625,
-0.56005859375,
-0.461181640625,
0.90478515625,
0.95654296875,
-1.1396484375,
-0.97216796875,
0.236572265625,
-0.1505126953125,
-0.415283203125,
-0.49609375,
-0.0863037109375,
0.787109375,
-0.5830078125,
0.1319580078125,
0.341796875,
-0.1090087890625,
0.1590576171875,
0.038604736328125,
0.57275390625,
-0.25048828125,
0.68896484375,
0.5947265625,
-0.48974609375,
-0.4814453125,
-1,
-0.326416015625,
-0.288818359375,
0.01107025146484375,
0.78369140625,
-0.06298828125,
0.18212890625,
0.488037109375,
0.11181640625,
0.7353515625,
-0.431396484375,
-0.359375,
0.197265625,
-0.67041015625,
-0.5634765625,
0.1453857421875,
0.353515625,
-0.047332763671875,
0.345458984375,
-0.63037109375,
-0.070556640625,
0.2744140625,
0.4658203125,
-0.365966796875,
-0.830078125,
-0.2220458984375,
-1.4736328125,
-0.51318359375,
-0.72412109375,
-0.90966796875,
-0.1861572265625,
0.365966796875,
0.0811767578125,
-0.70947265625,
0.0548095703125,
0.242919921875,
-0.728515625,
0.54296875,
-0.32666015625,
0.3154296875,
-0.3447265625,
-0.7001953125,
-0.98095703125,
-0.141845703125,
-0.407470703125,
-0.347900390625,
-1.125,
0.716796875,
0.1434326171875,
0.334228515625,
-0.236572265625,
0.90283203125,
-0.33154296875,
-0.81396484375,
0.291748046875,
0.141357421875,
-0.036224365234375,
1.2421875,
0.419921875,
0.1427001953125,
0.0792236328125,
-0.1396484375,
-0.283447265625,
-0.399169921875,
0.5615234375,
0.44482421875,
-0.47998046875,
-0.1422119140625,
-0.06793212890625,
0.3193359375,
-0.91064453125,
0.34765625,
-0.260009765625,
0.09149169921875,
0.16943359375,
-0.2056884765625,
0.263671875,
1.4248046875,
-0.1693115234375,
0.09857177734375,
0.010101318359375,
0.1722412109375,
0.1336669921875,
0.33544921875,
-0.042724609375,
0.471923828125,
-0.1539306640625,
-0.42236328125,
-0.307373046875,
0.495849609375,
0.09521484375,
0.00534820556640625,
-0.258544921875,
-0.92041015625,
-0.611328125,
-0.296142578125,
-0.015289306640625,
0.3984375,
0.564453125,
-0.45166015625,
-0.0904541015625,
-0.0053558349609375,
-0.60986328125,
0.0093231201171875,
-1.0908203125,
-0.94287109375,
0.52294921875,
-0.002544403076171875,
-0.65673828125,
-0.1416015625,
-0.2529296875,
-0.376708984375,
-0.05010986328125,
0.71826171875,
-0.52978515625,
0.4453125,
0.04315185546875,
0.321533203125,
-0.108154296875,
-0.2197265625,
0.111328125,
0.740234375,
-0.59326171875,
-0.69775390625,
0.04052734375,
0.88720703125,
0.1727294921875,
-0.47119140625,
-0.1090087890625,
0.397705078125,
-0.1629638671875,
0.35595703125,
-0.6220703125,
-0.04010009765625,
0.0987548828125,
0.99169921875,
-0.82666015625,
0.041351318359375,
-0.1884765625,
0.119140625,
-0.077392578125,
-0.6142578125,
-0.52978515625,
1.0986328125,
0.63916015625,
-0.145751953125,
0.7060546875,
0.038604736328125,
0.30029296875,
-0.035400390625,
-0.02471923828125,
0.231201171875,
0.5888671875,
0.77880859375,
0.5908203125,
-0.0999755859375,
0.25146484375,
0.89599609375,
-0.264404296875,
-0.43115234375,
0.33349609375,
-0.0640869140625,
-0.0908203125,
-0.09625244140625,
0.00559234619140625,
-0.208740234375,
-0.257080078125,
-0.82080078125,
0.7880859375,
-0.2066650390625,
0.313232421875,
-0.1395263671875,
-0.787109375,
0.970703125,
-0.3681640625,
-0.38623046875,
0.3125,
-0.68408203125,
0.213623046875,
0.6103515625,
-0.38671875,
-0.271728515625,
0.7177734375,
0.57666015625,
0.623046875,
0.724609375,
0.1334228515625,
0.41455078125,
-0.4677734375,
0.2265625,
-0.16943359375,
-0.1693115234375,
-0.1788330078125,
-0.64306640625,
-1.12890625,
0.44287109375,
-0.67724609375,
-0.62060546875,
0.73583984375,
-0.6962890625,
0.24365234375,
-0.2373046875,
0.7841796875,
-0.3798828125,
0.1343994140625,
0.61865234375,
-0.241455078125,
-0.8017578125,
0.7822265625,
-0.2578125,
0.289794921875,
-0.2347412109375,
1.205078125,
-0.2105712890625,
1.4384765625,
0.60205078125,
-0.299560546875,
0.240234375,
0.323486328125,
-0.439208984375,
-0.607421875,
-0.60107421875,
-0.658203125,
-0.07904052734375,
-0.484130859375,
-0.52734375,
0.138427734375,
0.37451171875,
0.016632080078125,
-0.8173828125,
-0.0992431640625,
0.296142578125,
-0.798828125,
0.404541015625,
0.214111328125,
0.056793212890625,
0.1290283203125,
-0.05743408203125,
-0.08489990234375,
-0.1497802734375,
0.2421875,
-0.77734375,
0.39794921875,
-0.97509765625,
-0.2147216796875,
-0.6953125,
-0.75244140625,
-0.2269287109375,
0.0794677734375,
-0.294189453125,
-0.880859375,
0.34326171875,
0.322265625,
0.21923828125,
0.515625,
-0.225830078125,
0.2607421875,
1.091796875,
1.0185546875,
0.0545654296875,
0.802734375,
0.342041015625,
-0.11871337890625,
-0.023223876953125,
-0.320068359375,
0.429931640625,
-0.056304931640625,
0.497802734375,
-0.383056640625,
0.146484375,
-0.70458984375,
-1.49609375,
0.437255859375,
0.55419921875,
0.359619140625,
-0.75341796875,
-1.11328125,
-0.100830078125,
-1.244140625,
-0.19140625,
-0.74365234375,
1.0419921875,
-0.55322265625,
0.044891357421875,
-0.1541748046875,
-1.2421875,
4.22265625,
1.0947265625,
0.869140625,
0.6669921875,
0.19580078125,
0.95654296875,
0.054595947265625,
-0.38232421875,
-0.0226593017578125,
-0.200439453125,
0.8125,
-0.63916015625,
-0.1119384765625,
0.7705078125,
0.294921875,
0.5068359375,
-0.387451171875,
0.50732421875,
-0.11859130859375,
-0.9443359375,
-0.8935546875,
0.50390625,
-0.09356689453125,
0.47265625,
0.0933837890625,
0.1715087890625,
0.81396484375,
-1.05078125,
0.17236328125,
-0.7861328125,
0.2076416015625,
-0.356689453125,
1.10546875,
0.07122802734375,
0.1368408203125,
0.469482421875,
-0.11370849609375,
-0.468505859375,
0.263671875,
0.060943603515625,
-0.197265625,
-0.07928466796875,
0.4814453125,
-0.943359375,
-0.0401611328125,
0.51123046875,
-0.68017578125,
0.421142578125,
-0.1666259765625,
-1.05078125,
0.9306640625,
-0.176025390625,
0.369140625,
-0.95654296875,
-0.23681640625,
-0.1258544921875,
0.356201171875,
-0.11407470703125,
-0.457763671875,
0.437255859375,
0.56591796875,
0.52294921875,
0.26806640625,
0.5458984375,
-0.95556640625,
0.200439453125,
-0.19677734375,
0.3583984375,
-0.548828125,
0.0916748046875,
-0.379638671875,
-0.455078125,
-0.345947265625,
-0.44580078125,
0.5859375,
-0.0085906982421875,
-0.01180267333984375,
0.39453125,
0.45263671875,
-0.6484375,
0.05322265625,
-0.1270751953125,
-0.0511474609375,
-0.5751953125,
0.69580078125,
1.216796875,
-0.556640625,
-0.362060546875,
-0.298095703125,
0.42919921875,
0.44384765625,
0.490966796875,
-0.08087158203125,
-0.8017578125,
-0.0304107666015625
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
We have a string of letters 'a' and 'b'. We want to perform some operations on it. On each step we choose one of substrings "ab" in the string and replace it with the string "bba". If we have no "ab" as a substring, our job is done. Print the minimum number of steps we should perform to make our job done modulo 109 + 7.
The string "ab" appears as a substring if there is a letter 'b' right after the letter 'a' somewhere in the string.
Input
The first line contains the initial string consisting of letters 'a' and 'b' only with length from 1 to 106.
Output
Print the minimum number of steps modulo 109 + 7.
Examples
Input
ab
Output
1
Input
aab
Output
3
Note
The first example: "ab" → "bba".
The second example: "aab" → "abba" → "bbaba" → "bbbbaa".
Tags: combinatorics, greedy, implementation, math
Correct Solution:
```
s=input()
ans=0
j=0
cnt1=0
cnt2=0
for i in range(0,len(s)):
if i>=j:
while i<len(s) and s[i]=='a':
cnt1=cnt1+1
i=i+1
while i<len(s) and s[i]=='b':
cnt2=cnt2+1
i=i+1
j=i;
if cnt1>0 and cnt2>0:
ans=ans + cnt2
bb= cnt2*2
temp=cnt1-1
ans = ans + bb*(pow(2,temp,1000000007)-1)
#print(ans)
cnt2=0
print(ans%1000000007)
```
| 10,468 | [
0.376708984375,
-0.11993408203125,
0.10015869140625,
0.087158203125,
-0.6728515625,
-0.57763671875,
0.0648193359375,
-0.177978515625,
0.292236328125,
0.92333984375,
0.6806640625,
-0.3349609375,
-0.2734375,
-0.98193359375,
-0.47021484375,
-0.0682373046875,
-0.55419921875,
-0.71875,
-0.3779296875,
-0.351806640625,
0.10113525390625,
-0.2880859375,
-1.2041015625,
-0.2049560546875,
-0.255859375,
0.982421875,
0.65234375,
-0.08087158203125,
0.9130859375,
1.2099609375,
-0.2249755859375,
-0.1640625,
0.4091796875,
-1.029296875,
-0.399658203125,
-0.48583984375,
0.49169921875,
-0.921875,
-0.042022705078125,
-0.247314453125,
0.177734375,
-0.65234375,
0.43798828125,
-0.8134765625,
-1.3505859375,
-0.027252197265625,
-0.049346923828125,
-0.379150390625,
0.1439208984375,
-0.65234375,
-0.14111328125,
-0.32763671875,
0.44140625,
-0.02166748046875,
0.0186614990234375,
0.225830078125,
0.321533203125,
-0.32568359375,
-0.86572265625,
0.1978759765625,
0.471435546875,
-0.00832366943359375,
0.08740234375,
-0.9228515625,
-0.040069580078125,
0.1893310546875,
-0.326416015625,
0.0457763671875,
-0.134033203125,
-1.0078125,
-0.07147216796875,
0.271484375,
-0.48291015625,
-0.64697265625,
-0.13916015625,
0.2119140625,
0.400390625,
-0.255615234375,
-0.73974609375,
1.076171875,
-0.3173828125,
0.71240234375,
0.1754150390625,
0.2763671875,
-0.26611328125,
-0.61962890625,
-0.0004649162292480469,
0.241943359375,
-0.08331298828125,
-0.116455078125,
-0.381103515625,
0.63623046875,
-0.3642578125,
-0.10760498046875,
0.342041015625,
0.58837890625,
-0.486083984375,
0.2174072265625,
0.6279296875,
0.2578125,
0.79150390625,
1.1328125,
-0.56005859375,
0.7646484375,
-0.587890625,
0.059326171875,
0.01473236083984375,
-0.118408203125,
-0.397705078125,
0.0222320556640625,
-0.2196044921875,
-0.1561279296875,
0.6533203125,
0.378662109375,
-0.568359375,
1.087890625,
0.2578125,
0.41650390625,
-0.5546875,
0.6533203125,
0.33544921875,
0.05224609375,
0.66552734375,
-0.2142333984375,
-0.183349609375,
-0.044097900390625,
-0.60107421875,
1.095703125,
-0.7744140625,
-0.2037353515625,
0.203369140625,
0.1658935546875,
0.0682373046875,
0.296630859375,
-0.312255859375,
0.6953125,
-0.05389404296875,
0.217529296875,
0.720703125,
-0.492919921875,
0.6005859375,
-0.313720703125,
0.0210418701171875,
1.755859375,
0.197021484375,
-0.07025146484375,
0.84619140625,
0.383056640625,
-0.751953125,
0.373291015625,
-1.0966796875,
0.8994140625,
0.309814453125,
0.33740234375,
-0.11761474609375,
0.1549072265625,
-0.29541015625,
0.40234375,
0.07073974609375,
-0.1851806640625,
-0.493896484375,
-0.020965576171875,
-0.37646484375,
1.091796875,
-0.455078125,
0.8974609375,
-0.309326171875,
-0.092529296875,
-0.12744140625,
-0.53564453125,
0.117919921875,
-0.359619140625,
-0.166259765625,
0.94482421875,
0.312255859375,
1.0517578125,
1.16796875,
-0.271484375,
0.5419921875,
0.30908203125,
-0.361083984375,
0.1038818359375,
0.301513671875,
0.88671875,
0.38818359375,
0.51025390625,
-0.293701171875,
-0.0223236083984375,
-0.52783203125,
-0.324462890625,
0.260986328125,
0.59619140625,
-0.84619140625,
0.425537109375,
-0.193359375,
-0.049957275390625,
-0.7685546875,
-0.305908203125,
-0.1104736328125,
-0.95263671875,
-0.12005615234375,
0.5478515625,
-0.06964111328125,
0.266357421875,
-0.630859375,
-0.4892578125,
0.482421875,
1.005859375,
-0.432861328125,
0.166748046875,
0.408447265625,
-0.11993408203125,
-0.06951904296875,
0.394775390625,
-0.01265716552734375,
-0.1776123046875,
-0.64111328125,
0.724609375,
0.07562255859375,
-0.24560546875,
-0.1474609375,
0.65234375,
0.470947265625,
0.822265625,
-0.026092529296875,
-0.5537109375,
0.54931640625,
1.0244140625,
-0.026336669921875,
0.6376953125,
0.219482421875,
0.90185546875,
0.97314453125,
0.9658203125,
0.8017578125,
0.212890625,
0.42529296875,
0.8447265625,
0.08892822265625,
0.2427978515625,
0.4814453125,
0.57080078125,
0.377197265625,
0.33251953125,
0.43310546875,
0.60009765625,
0.182861328125,
-0.0902099609375,
-0.08258056640625,
-0.044403076171875,
-0.41943359375,
0.95458984375,
0.09283447265625,
0.62109375,
-0.05767822265625,
-0.30224609375,
0.303466796875,
1.0546875,
-1.0322265625,
-0.541015625,
-0.220947265625,
0.00690460205078125,
-0.0714111328125,
-0.032318115234375,
0.88427734375,
0.73046875,
0.68896484375,
0.51171875,
-0.318603515625,
-0.25830078125,
-0.7392578125,
-0.74609375,
-0.8193359375,
-0.2587890625,
-0.7841796875,
-0.1488037109375,
-0.0594482421875,
-0.9560546875,
0.0130157470703125,
-0.261962890625,
-0.309814453125,
0.330322265625,
-0.5927734375,
0.8427734375,
0.037506103515625,
0.2489013671875,
-0.69287109375,
0.5576171875,
-0.03765869140625,
1.0615234375,
-0.7607421875,
0.004009246826171875,
-0.0017375946044921875,
-0.810546875,
-0.0297393798828125,
0.30322265625,
0.349365234375,
-0.021148681640625,
-0.74072265625,
-0.78076171875,
-0.50439453125,
0.327880859375,
-0.321533203125,
0.432861328125,
-0.449462890625,
0.703125,
0.39453125,
-0.4736328125,
0.58740234375,
1.041015625,
-0.8720703125,
0.57080078125,
0.04815673828125,
-0.370361328125,
-0.7998046875,
1.037109375,
0.654296875,
0.61572265625,
-0.3740234375,
-0.6494140625,
-0.33544921875,
-0.0830078125,
0.2230224609375,
-0.77734375,
-0.279296875,
0.638671875,
-0.0216522216796875,
-0.9404296875,
0.490234375,
-0.93896484375,
-0.5390625,
-0.59033203125,
-0.45068359375,
1.130859375,
0.82421875,
0.108642578125,
0.048248291015625,
0.1842041015625,
0.0200958251953125,
0.4677734375,
0.59375,
-0.61279296875,
0.333251953125,
0.9384765625,
0.097900390625,
-0.054473876953125,
0.2000732421875,
-0.3681640625,
-0.2685546875,
0.2418212890625,
0.0178070068359375,
0.626953125,
0.070068359375,
0.36328125,
0.445556640625,
0.5,
-0.68408203125,
0.041229248046875,
-0.264892578125,
0.71044921875,
0.58154296875,
0.63623046875,
0.080810546875,
-0.339111328125,
-0.64990234375,
-1.3076171875,
0.103515625,
0.1361083984375,
0.74072265625,
-0.59912109375,
1.091796875,
0.31884765625,
-0.60400390625,
0.25146484375,
-0.7255859375,
0.27294921875,
0.89208984375,
0.2322998046875,
0.92138671875,
-0.798828125,
0.37451171875,
0.15966796875,
0.18017578125,
0.615234375,
0.66064453125,
0.36572265625,
-0.634765625,
-0.73583984375,
-0.43994140625,
-0.1461181640625,
-0.2327880859375,
-0.456298828125,
0.286376953125,
-0.370849609375,
-0.031341552734375,
-0.974609375,
0.580078125,
0.72998046875,
0.79443359375,
0.05535888671875,
0.282958984375,
0.404296875,
0.373291015625,
0.71044921875,
-0.08251953125,
0.2203369140625,
-0.57958984375,
0.84912109375,
0.2393798828125,
-0.29833984375,
-0.734375,
-0.388427734375,
0.1298828125,
0.144775390625,
-0.5712890625,
-0.07781982421875,
-1.0166015625,
0.29345703125,
-0.52099609375,
0.64697265625,
-0.7685546875,
-0.2392578125,
-0.2109375,
0.52490234375,
0.2447509765625,
-1.0458984375,
0.57421875,
-0.953125,
0.849609375,
0.607421875,
0.09716796875,
-0.1075439453125,
-0.365234375,
-0.65185546875,
-0.505859375,
-0.09912109375,
0.7373046875,
-0.2939453125,
0.3984375,
-1.2392578125,
0.548828125,
0.1033935546875,
-0.446533203125,
0.11212158203125,
-0.2294921875,
0.85595703125,
-0.196044921875,
0.7373046875,
-0.4296875,
-0.75048828125,
0.1820068359375,
-1.3798828125,
0.732421875,
-0.4228515625,
0.837890625,
0.184326171875,
-0.19091796875,
0.27587890625,
0.1358642578125,
-0.218017578125,
0.1751708984375,
-0.203857421875,
0.53662109375,
-0.80615234375,
-0.912109375,
0.60009765625,
-0.1668701171875,
-0.2308349609375,
0.734375,
0.026214599609375,
-0.469482421875,
0.0253143310546875,
0.59521484375,
-0.5576171875,
0.207275390625,
-0.1363525390625,
0.69873046875,
-0.382080078125,
-0.74658203125,
-0.1317138671875,
-0.56103515625,
0.81591796875,
-0.045684814453125,
-0.62548828125,
-0.157958984375,
-1.37109375,
-0.267333984375,
0.0943603515625,
-0.3369140625,
0.324462890625,
0.358642578125,
-0.1357421875,
-0.364013671875,
0.0003304481506347656,
-0.51318359375,
-0.41552734375,
-0.783203125,
-0.198974609375,
0.108642578125,
0.63232421875,
1.06640625,
-0.08392333984375,
-0.326416015625,
0.04266357421875,
0.07470703125,
0.178955078125,
-0.5517578125,
-0.152587890625,
-0.3212890625,
-0.0689697265625,
-0.37939453125,
0.144287109375,
0.1063232421875,
0.2430419921875,
0.85498046875,
0.09356689453125,
0.02838134765625,
0.398193359375,
-0.66015625,
1.333984375,
0.04541015625,
-0.837890625,
-0.892578125,
0.66357421875,
-0.06005859375,
0.60498046875,
0.52197265625,
-1.09375,
-0.591796875,
-0.806640625,
0.21484375,
-0.90576171875,
-0.2568359375,
-1.123046875,
-0.779296875,
-0.66650390625,
0.393798828125,
0.1329345703125,
-0.5693359375,
0.441650390625,
-0.77685546875,
0.30859375,
-0.8955078125,
0.10870361328125,
-0.67822265625,
-0.8193359375,
0.056427001953125,
0.8564453125,
0.17578125,
0.318359375,
-0.0244293212890625,
-0.389892578125,
0.44580078125,
-0.225830078125,
-0.736328125,
-0.19482421875,
-0.260986328125,
0.2398681640625,
-0.044189453125,
-0.191650390625,
-0.56201171875,
0.87451171875,
-0.55859375,
0.375732421875,
0.06842041015625,
-0.251220703125,
-0.3212890625,
-0.192626953125,
0.93798828125,
-0.325439453125,
0.08978271484375,
0.057464599609375,
0.38037109375,
0.76416015625,
-0.5126953125,
-0.5791015625,
-0.8369140625,
-0.70751953125,
-1.0283203125,
0.6806640625,
-0.179931640625,
0.135009765625,
-0.740234375,
-0.25244140625,
1.2705078125,
-0.61181640625,
0.421142578125,
0.9775390625,
-0.07879638671875,
0.2191162109375,
-0.29345703125,
0.68896484375,
0.352294921875,
-0.319580078125,
0.1337890625,
-0.111328125,
-0.677734375,
-0.09844970703125,
-0.20068359375,
-0.8681640625,
-0.62060546875,
0.358642578125,
1.26953125,
-0.455810546875,
0.625,
-0.297607421875,
-1.3291015625,
-0.73291015625,
0.541015625,
0.24267578125,
0.1829833984375,
0.7919921875,
0.037994384765625,
0.07708740234375,
-0.125244140625,
-0.39111328125,
-0.52099609375,
-0.8271484375,
1.263671875,
-0.62890625,
-0.50439453125,
0.80078125,
0.90576171875,
-1.107421875,
-0.97412109375,
0.26611328125,
-0.05096435546875,
-0.4130859375,
-0.498291015625,
0.017547607421875,
0.73095703125,
-0.5947265625,
0.09906005859375,
0.278564453125,
-0.000720977783203125,
0.1182861328125,
0.01397705078125,
0.53173828125,
-0.25341796875,
0.671875,
0.5888671875,
-0.408203125,
-0.3876953125,
-0.9521484375,
-0.3173828125,
-0.289794921875,
-0.12188720703125,
0.8134765625,
-0.070068359375,
0.1580810546875,
0.5751953125,
0.004428863525390625,
0.80322265625,
-0.405517578125,
-0.326416015625,
0.1754150390625,
-0.477783203125,
-0.52001953125,
0.1441650390625,
0.364501953125,
-0.0007333755493164062,
0.275390625,
-0.6171875,
0.017730712890625,
0.240966796875,
0.482421875,
-0.322509765625,
-0.92626953125,
-0.198974609375,
-1.412109375,
-0.61962890625,
-0.67041015625,
-0.91162109375,
-0.1416015625,
0.359375,
-0.0384521484375,
-0.541015625,
-0.04302978515625,
0.20654296875,
-0.68798828125,
0.5927734375,
-0.29931640625,
0.260009765625,
-0.446533203125,
-0.59765625,
-0.96630859375,
-0.1654052734375,
-0.45068359375,
-0.382080078125,
-0.98828125,
0.70166015625,
0.1402587890625,
0.322509765625,
-0.339599609375,
0.83740234375,
-0.357177734375,
-0.939453125,
0.2113037109375,
0.1673583984375,
-0.0123748779296875,
1.2958984375,
0.434814453125,
0.224609375,
-0.0176239013671875,
-0.09649658203125,
-0.18408203125,
-0.490478515625,
0.64501953125,
0.396728515625,
-0.412353515625,
-0.1348876953125,
-0.033447265625,
0.30712890625,
-0.81689453125,
0.26416015625,
-0.1923828125,
0.1075439453125,
0.0418701171875,
-0.1007080078125,
0.262451171875,
1.31640625,
-0.342041015625,
0.11468505859375,
-0.07769775390625,
0.193359375,
0.18603515625,
0.32275390625,
-0.054351806640625,
0.435546875,
-0.07470703125,
-0.47998046875,
-0.266845703125,
0.5361328125,
0.034515380859375,
0.031280517578125,
-0.393310546875,
-0.8681640625,
-0.6669921875,
-0.338623046875,
0.00836944580078125,
0.393310546875,
0.7236328125,
-0.509765625,
-0.094970703125,
0.11077880859375,
-0.71533203125,
0.00910186767578125,
-1.091796875,
-0.99658203125,
0.47119140625,
-0.00811767578125,
-0.689453125,
-0.1402587890625,
-0.281005859375,
-0.380126953125,
-0.1715087890625,
0.5986328125,
-0.449951171875,
0.379638671875,
0.0743408203125,
0.433349609375,
-0.2022705078125,
-0.21337890625,
0.056915283203125,
0.64013671875,
-0.6455078125,
-0.65087890625,
0.1331787109375,
0.86083984375,
0.1939697265625,
-0.387451171875,
-0.173583984375,
0.40576171875,
-0.09710693359375,
0.35693359375,
-0.623046875,
-0.06005859375,
-0.002101898193359375,
0.982421875,
-0.7548828125,
0.06524658203125,
-0.2066650390625,
0.1829833984375,
-0.0093994140625,
-0.640625,
-0.6083984375,
1.076171875,
0.6220703125,
-0.283447265625,
0.72119140625,
0.08416748046875,
0.279541015625,
0.035003662109375,
-0.0160675048828125,
0.24072265625,
0.46826171875,
0.755859375,
0.619140625,
-0.01258087158203125,
0.1922607421875,
0.888671875,
-0.272216796875,
-0.52490234375,
0.369384765625,
-0.025665283203125,
0.09649658203125,
-0.062744140625,
0.039642333984375,
-0.313720703125,
-0.265625,
-0.80029296875,
0.81103515625,
-0.281005859375,
0.239501953125,
-0.10186767578125,
-0.79052734375,
0.90771484375,
-0.3271484375,
-0.377197265625,
0.3486328125,
-0.68359375,
0.19921875,
0.481201171875,
-0.30615234375,
-0.3642578125,
0.6611328125,
0.60888671875,
0.7421875,
0.7841796875,
0.156005859375,
0.5390625,
-0.48193359375,
0.11328125,
-0.1807861328125,
-0.13525390625,
-0.155517578125,
-0.60791015625,
-1.1650390625,
0.436767578125,
-0.6142578125,
-0.61669921875,
0.779296875,
-0.62841796875,
0.30859375,
-0.32861328125,
0.703125,
-0.361572265625,
0.162109375,
0.57568359375,
-0.30419921875,
-0.84619140625,
0.88623046875,
-0.2685546875,
0.30078125,
-0.2413330078125,
1.1357421875,
-0.11590576171875,
1.4736328125,
0.60693359375,
-0.18408203125,
0.19775390625,
0.316162109375,
-0.39208984375,
-0.60498046875,
-0.50927734375,
-0.53369140625,
-0.146240234375,
-0.4833984375,
-0.5107421875,
0.22509765625,
0.38916015625,
0.0023345947265625,
-0.7724609375,
-0.20751953125,
0.3271484375,
-0.68115234375,
0.48779296875,
0.328125,
0.06988525390625,
0.03582763671875,
-0.1419677734375,
-0.1708984375,
-0.171142578125,
0.175048828125,
-0.73681640625,
0.4609375,
-1.0029296875,
-0.2322998046875,
-0.7890625,
-0.7255859375,
-0.2384033203125,
-0.023406982421875,
-0.379638671875,
-0.89501953125,
0.29638671875,
0.38671875,
0.2064208984375,
0.50634765625,
-0.337646484375,
0.1751708984375,
1.0400390625,
1.04296875,
0.034515380859375,
0.78564453125,
0.330810546875,
0.05657958984375,
0.00101470947265625,
-0.27197265625,
0.459716796875,
-0.0299224853515625,
0.52783203125,
-0.267578125,
0.2203369140625,
-0.7177734375,
-1.4580078125,
0.39306640625,
0.58349609375,
0.38037109375,
-0.80712890625,
-1.099609375,
-0.19873046875,
-1.25390625,
-0.1640625,
-0.65771484375,
1.04296875,
-0.5458984375,
-0.014251708984375,
-0.2034912109375,
-1.2666015625,
4.27734375,
0.94189453125,
0.79638671875,
0.65625,
0.236083984375,
0.912109375,
0.0384521484375,
-0.443115234375,
-0.1099853515625,
-0.155517578125,
0.720703125,
-0.57177734375,
-0.1295166015625,
0.7578125,
0.2099609375,
0.54638671875,
-0.418701171875,
0.375,
-0.1900634765625,
-0.9345703125,
-0.87841796875,
0.4873046875,
-0.09832763671875,
0.513671875,
0.0389404296875,
0.1353759765625,
0.68212890625,
-1.1162109375,
0.15673828125,
-0.65869140625,
0.189208984375,
-0.38134765625,
1.150390625,
0.1700439453125,
0.041900634765625,
0.459228515625,
0.01593017578125,
-0.377197265625,
0.20458984375,
0.07440185546875,
-0.23486328125,
-0.06201171875,
0.45654296875,
-0.90576171875,
-0.07452392578125,
0.53369140625,
-0.64404296875,
0.55615234375,
-0.05560302734375,
-1.0498046875,
0.859375,
-0.2178955078125,
0.33740234375,
-0.86572265625,
-0.33544921875,
-0.09783935546875,
0.290283203125,
-0.1407470703125,
-0.38525390625,
0.43701171875,
0.51953125,
0.458740234375,
0.30078125,
0.43701171875,
-1.0478515625,
0.2310791015625,
-0.158447265625,
0.460693359375,
-0.62158203125,
0.072998046875,
-0.437255859375,
-0.50634765625,
-0.291015625,
-0.57275390625,
0.71533203125,
0.126708984375,
-0.06536865234375,
0.43505859375,
0.43701171875,
-0.703125,
0.058563232421875,
-0.1912841796875,
-0.2025146484375,
-0.6396484375,
0.7548828125,
1.3125,
-0.4580078125,
-0.31005859375,
-0.4150390625,
0.416259765625,
0.50244140625,
0.485595703125,
-0.1453857421875,
-0.7900390625,
-0.047943115234375
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
We have a string of letters 'a' and 'b'. We want to perform some operations on it. On each step we choose one of substrings "ab" in the string and replace it with the string "bba". If we have no "ab" as a substring, our job is done. Print the minimum number of steps we should perform to make our job done modulo 109 + 7.
The string "ab" appears as a substring if there is a letter 'b' right after the letter 'a' somewhere in the string.
Input
The first line contains the initial string consisting of letters 'a' and 'b' only with length from 1 to 106.
Output
Print the minimum number of steps modulo 109 + 7.
Examples
Input
ab
Output
1
Input
aab
Output
3
Note
The first example: "ab" → "bba".
The second example: "aab" → "abba" → "bbaba" → "bbbbaa".
Submitted Solution:
```
s=input()
c=0
ans=0
cst=10**9+7
for i in range(len(s)-1,-1,-1):
if s[i]=='a':
ans=(ans+c)%cst
c=(c*2)%cst
else:
c=c+1
print(ans%cst)
```
Yes
| 10,469 | [
0.468994140625,
-0.15869140625,
0.00537872314453125,
0.058929443359375,
-0.89306640625,
-0.416259765625,
-0.08953857421875,
-0.141357421875,
0.17626953125,
0.84912109375,
0.52001953125,
-0.37451171875,
-0.193603515625,
-0.9990234375,
-0.4599609375,
-0.07476806640625,
-0.4990234375,
-0.662109375,
-0.3203125,
-0.351806640625,
0.00902557373046875,
-0.261962890625,
-1.107421875,
0.1324462890625,
-0.1461181640625,
0.97314453125,
0.6220703125,
-0.0506591796875,
1.005859375,
1.1708984375,
-0.22998046875,
-0.2392578125,
0.60595703125,
-0.8251953125,
-0.2335205078125,
-0.66357421875,
0.59326171875,
-0.84423828125,
-0.349365234375,
-0.4365234375,
0.1993408203125,
-0.4501953125,
0.55029296875,
-0.5517578125,
-1.73046875,
-0.0958251953125,
-0.015106201171875,
-0.4482421875,
-0.0670166015625,
-0.433837890625,
-0.171142578125,
-0.36865234375,
0.370849609375,
-0.132568359375,
0.1844482421875,
0.279052734375,
0.2498779296875,
-0.3154296875,
-1.0166015625,
0.0936279296875,
0.462158203125,
0.177734375,
0.06451416015625,
-0.8017578125,
-0.1064453125,
0.27490234375,
-0.21337890625,
0.0968017578125,
-0.1776123046875,
-0.57666015625,
-0.05609130859375,
0.15283203125,
-0.34033203125,
-0.50634765625,
-0.334716796875,
0.051300048828125,
0.34765625,
-0.07965087890625,
-0.83251953125,
1.1142578125,
-0.378173828125,
0.8759765625,
0.37158203125,
0.253173828125,
-0.379638671875,
-0.5849609375,
0.218505859375,
0.33837890625,
0.11370849609375,
-0.055450439453125,
-0.4033203125,
0.5517578125,
-0.349365234375,
-0.2098388671875,
0.471435546875,
0.5390625,
-0.429931640625,
0.01374053955078125,
0.49169921875,
0.40283203125,
0.97314453125,
0.81005859375,
-0.5,
0.9619140625,
-0.36376953125,
-0.10443115234375,
0.06591796875,
-0.270751953125,
-0.344482421875,
-0.10797119140625,
-0.21875,
-0.2481689453125,
0.50927734375,
0.36376953125,
-0.6025390625,
0.96533203125,
0.362548828125,
0.58642578125,
-0.56494140625,
0.52490234375,
0.421875,
0.143310546875,
0.82958984375,
-0.2744140625,
-0.116455078125,
-0.08807373046875,
-0.86962890625,
1.173828125,
-0.67529296875,
-0.298583984375,
0.315185546875,
0.115234375,
-0.0303497314453125,
0.344482421875,
-0.462158203125,
0.6494140625,
-0.0023784637451171875,
0.2294921875,
0.7509765625,
-0.45263671875,
0.72509765625,
-0.22265625,
-0.1614990234375,
1.8212890625,
0.1837158203125,
-0.2061767578125,
0.6357421875,
0.446533203125,
-0.94873046875,
0.270751953125,
-1.091796875,
0.77490234375,
0.2476806640625,
0.0921630859375,
-0.249755859375,
0.08074951171875,
-0.28466796875,
0.338623046875,
0.17236328125,
-0.24609375,
-0.494140625,
0.11102294921875,
-0.49072265625,
0.83642578125,
-0.3466796875,
0.60107421875,
-0.171142578125,
-0.1767578125,
-0.03509521484375,
-0.37548828125,
0.07708740234375,
-0.1839599609375,
-0.025726318359375,
1.0087890625,
0.477294921875,
0.982421875,
1.185546875,
-0.2337646484375,
0.408203125,
0.36767578125,
-0.450927734375,
0.35009765625,
0.2587890625,
0.94091796875,
0.416015625,
0.5244140625,
-0.334716796875,
-0.016448974609375,
-0.4140625,
-0.451171875,
0.386474609375,
0.62060546875,
-0.75,
0.474365234375,
-0.1993408203125,
-0.0980224609375,
-0.7470703125,
-0.295166015625,
-0.01480865478515625,
-1.0654296875,
-0.3818359375,
0.46435546875,
0.004489898681640625,
0.487060546875,
-0.4130859375,
-0.61474609375,
0.2919921875,
1.3125,
-0.2196044921875,
0.238037109375,
0.4189453125,
-0.0584716796875,
-0.154052734375,
0.35205078125,
0.1005859375,
-0.403564453125,
-0.51904296875,
0.5830078125,
-0.1241455078125,
-0.07269287109375,
-0.258544921875,
0.57470703125,
0.296630859375,
0.732421875,
-0.275634765625,
-0.611328125,
0.51708984375,
1.09375,
-0.1817626953125,
0.60791015625,
0.3271484375,
0.7861328125,
0.95068359375,
0.9599609375,
0.64208984375,
0.2890625,
0.609375,
0.8642578125,
-0.047576904296875,
0.245849609375,
0.32080078125,
0.57373046875,
0.291259765625,
0.5400390625,
0.4501953125,
0.473876953125,
0.1397705078125,
-0.2607421875,
-0.053131103515625,
-0.09844970703125,
-0.48291015625,
0.72900390625,
0.0302886962890625,
0.68603515625,
0.134033203125,
-0.18603515625,
0.383056640625,
0.95458984375,
-1.298828125,
-0.62353515625,
-0.0133819580078125,
0.0723876953125,
0.1573486328125,
0.07672119140625,
0.708984375,
0.43896484375,
0.76611328125,
0.53076171875,
-0.20556640625,
-0.351806640625,
-0.55859375,
-0.89111328125,
-0.9921875,
-0.25927734375,
-0.90869140625,
-0.20166015625,
-0.1529541015625,
-1.0498046875,
0.04150390625,
-0.54248046875,
-0.088623046875,
0.1571044921875,
-0.48291015625,
0.97216796875,
-0.13818359375,
0.16748046875,
-0.52001953125,
0.52587890625,
0.160888671875,
1.13671875,
-0.841796875,
0.11602783203125,
-0.391845703125,
-0.626953125,
-0.07464599609375,
0.265869140625,
0.429931640625,
0.138916015625,
-0.66064453125,
-0.77783203125,
-0.521484375,
0.1456298828125,
-0.39697265625,
0.106689453125,
-0.66455078125,
0.6708984375,
0.4169921875,
-0.7802734375,
0.58544921875,
1.1015625,
-0.96044921875,
0.70068359375,
0.307861328125,
-0.310546875,
-0.7119140625,
1.23046875,
0.5419921875,
0.6123046875,
-0.36328125,
-0.765625,
-0.408203125,
0.055999755859375,
0.149169921875,
-0.72021484375,
-0.34716796875,
0.61865234375,
-0.0240478515625,
-0.92431640625,
0.515625,
-1.1259765625,
-0.529296875,
-0.6142578125,
-0.5380859375,
1.0419921875,
0.88525390625,
0.2303466796875,
0.205078125,
-0.012054443359375,
-0.0010995864868164062,
0.73095703125,
0.60986328125,
-0.884765625,
0.255859375,
0.9921875,
-0.0755615234375,
0.2470703125,
0.2626953125,
-0.49755859375,
-0.273193359375,
0.03662109375,
0.01416778564453125,
0.6728515625,
-0.04718017578125,
0.5146484375,
0.2744140625,
0.6083984375,
-0.8740234375,
0.09423828125,
-0.177734375,
0.85693359375,
0.384033203125,
0.71923828125,
0.2464599609375,
-0.0677490234375,
-0.59765625,
-1.1376953125,
0.04058837890625,
0.130859375,
0.5849609375,
-0.40869140625,
1.0712890625,
0.08343505859375,
-0.73046875,
0.56201171875,
-0.6728515625,
0.48681640625,
1.1552734375,
0.262451171875,
0.85595703125,
-0.80419921875,
0.421630859375,
0.06414794921875,
-0.173095703125,
0.406494140625,
0.623046875,
0.3876953125,
-0.44091796875,
-0.7236328125,
-0.442626953125,
0.00836181640625,
-0.209716796875,
-0.4306640625,
0.185791015625,
-0.51123046875,
-0.224365234375,
-0.9228515625,
0.603515625,
0.640625,
0.802734375,
0.25634765625,
0.1934814453125,
0.139404296875,
0.2236328125,
0.60205078125,
0.0169219970703125,
0.2052001953125,
-0.6279296875,
0.8662109375,
0.298095703125,
-0.298583984375,
-0.50927734375,
-0.4169921875,
-0.12042236328125,
0.1400146484375,
-0.47314453125,
-0.039093017578125,
-1.2470703125,
0.1585693359375,
-0.2313232421875,
0.5732421875,
-0.857421875,
-0.1318359375,
-0.33203125,
0.10845947265625,
0.1981201171875,
-1.0458984375,
0.6064453125,
-1.0048828125,
0.64306640625,
0.546875,
-0.10784912109375,
-0.12005615234375,
-0.29052734375,
-0.91162109375,
-0.67626953125,
-0.205078125,
0.74609375,
-0.06365966796875,
0.416748046875,
-1.431640625,
0.595703125,
0.407958984375,
-0.62890625,
0.308837890625,
-0.49462890625,
0.62060546875,
-0.18115234375,
0.724609375,
-0.50732421875,
-0.6396484375,
0.062103271484375,
-1.419921875,
0.6103515625,
-0.501953125,
0.81103515625,
0.200927734375,
-0.1932373046875,
0.263671875,
0.2291259765625,
-0.17431640625,
0.25341796875,
-0.2032470703125,
0.451904296875,
-0.9482421875,
-1.072265625,
0.59716796875,
-0.205078125,
-0.41162109375,
0.69970703125,
-0.08734130859375,
-0.607421875,
-0.197021484375,
0.5068359375,
-0.45263671875,
0.37060546875,
-0.2071533203125,
0.60400390625,
-0.37353515625,
-0.75390625,
-0.29736328125,
-0.6875,
0.775390625,
-0.349609375,
-0.6513671875,
-0.182861328125,
-1.322265625,
-0.25146484375,
0.0137786865234375,
-0.337646484375,
0.2315673828125,
0.417236328125,
0.00492095947265625,
-0.2288818359375,
-0.2061767578125,
-0.552734375,
-0.430908203125,
-0.66064453125,
-0.3291015625,
0.02471923828125,
0.59326171875,
0.9892578125,
-0.024566650390625,
-0.276123046875,
-0.1534423828125,
-0.083740234375,
0.08837890625,
-0.52587890625,
-0.3251953125,
-0.06585693359375,
-0.4423828125,
-0.259765625,
0.451171875,
-0.003520965576171875,
0.59765625,
0.79296875,
-0.1351318359375,
0.3994140625,
0.3974609375,
-0.69482421875,
1.4248046875,
0.026153564453125,
-1.1875,
-0.70458984375,
0.56689453125,
0.111328125,
0.71923828125,
0.307861328125,
-1.041015625,
-0.67626953125,
-1.0693359375,
0.414794921875,
-0.91650390625,
-0.400390625,
-1.2353515625,
-0.6708984375,
-0.63134765625,
0.2457275390625,
0.1749267578125,
-0.463623046875,
0.51904296875,
-0.89453125,
0.240966796875,
-0.95849609375,
0.039398193359375,
-0.5751953125,
-0.52001953125,
0.04669189453125,
0.94970703125,
0.09735107421875,
0.3388671875,
0.01235198974609375,
-0.42138671875,
0.384033203125,
-0.1673583984375,
-0.76220703125,
-0.351318359375,
-0.2376708984375,
0.289794921875,
-0.198486328125,
-0.20703125,
-0.71875,
0.9599609375,
-0.6015625,
0.58056640625,
0.2315673828125,
-0.37744140625,
-0.134033203125,
-0.321533203125,
0.908203125,
-0.46337890625,
0.12353515625,
-0.0577392578125,
0.365478515625,
0.6572265625,
-0.53173828125,
-0.34619140625,
-0.6064453125,
-0.5439453125,
-0.96826171875,
0.44287109375,
-0.32958984375,
0.176025390625,
-0.8564453125,
-0.1309814453125,
1.205078125,
-0.59375,
0.408935546875,
1.0185546875,
0.0545654296875,
0.26416015625,
-0.345947265625,
0.70068359375,
0.5322265625,
-0.276611328125,
0.033843994140625,
-0.03887939453125,
-0.55908203125,
0.0408935546875,
-0.3505859375,
-0.841796875,
-0.73095703125,
0.26611328125,
1.3984375,
-0.31494140625,
0.775390625,
-0.1513671875,
-1.1787109375,
-0.43994140625,
0.63818359375,
0.2041015625,
0.1478271484375,
0.61376953125,
-0.1722412109375,
-0.0819091796875,
0.11126708984375,
-0.45703125,
-0.58544921875,
-0.62744140625,
1.298828125,
-0.75048828125,
-0.6396484375,
1.1767578125,
0.93408203125,
-1.2138671875,
-1.0048828125,
0.1453857421875,
-0.0092315673828125,
-0.210205078125,
-0.6201171875,
0.004673004150390625,
0.69384765625,
-0.62451171875,
0.10626220703125,
0.1917724609375,
-0.062103271484375,
0.296630859375,
-0.0294189453125,
0.58544921875,
-0.373291015625,
0.51416015625,
0.6826171875,
-0.6142578125,
-0.29638671875,
-0.93896484375,
-0.1546630859375,
-0.2734375,
0.1591796875,
0.75341796875,
0.03155517578125,
0.34521484375,
0.73388671875,
-0.07562255859375,
0.74755859375,
-0.52490234375,
-0.2283935546875,
0.263427734375,
-0.50732421875,
-0.488037109375,
0.06060791015625,
0.364501953125,
-0.057098388671875,
0.50634765625,
-0.6220703125,
-0.10406494140625,
0.31689453125,
0.65869140625,
-0.1756591796875,
-0.6630859375,
-0.2529296875,
-1.4326171875,
-0.4638671875,
-0.5693359375,
-0.88427734375,
-0.250244140625,
0.59130859375,
0.1590576171875,
-0.57958984375,
0.03216552734375,
0.53173828125,
-0.669921875,
0.60888671875,
-0.448974609375,
0.22216796875,
-0.29736328125,
-0.47900390625,
-1.037109375,
-0.12005615234375,
-0.6484375,
-0.497314453125,
-0.63134765625,
0.70556640625,
0.01148223876953125,
0.22119140625,
-0.262939453125,
0.94677734375,
-0.085205078125,
-0.5908203125,
0.48095703125,
0.08526611328125,
-0.1824951171875,
1.3427734375,
0.30908203125,
0.147216796875,
0.14013671875,
-0.3671875,
-0.1778564453125,
-0.3349609375,
0.77734375,
0.378173828125,
-0.408203125,
-0.2130126953125,
-0.05096435546875,
0.21435546875,
-0.7607421875,
0.34130859375,
-0.29248046875,
0.1285400390625,
-0.06610107421875,
-0.04925537109375,
0.29248046875,
1.2490234375,
-0.271484375,
0.0771484375,
0.099609375,
0.16064453125,
0.2454833984375,
0.326171875,
0.0955810546875,
0.62646484375,
-0.2568359375,
-0.416015625,
-0.14404296875,
0.398193359375,
0.09527587890625,
0.2100830078125,
-0.4619140625,
-1.013671875,
-0.6611328125,
-0.1842041015625,
-0.0693359375,
0.4775390625,
0.432861328125,
-0.50244140625,
0.06378173828125,
0.09088134765625,
-0.5693359375,
0.0894775390625,
-1.1240234375,
-1.099609375,
0.54052734375,
-0.08685302734375,
-0.6416015625,
-0.03302001953125,
-0.364990234375,
-0.03839111328125,
0.01001739501953125,
0.53662109375,
-0.5380859375,
0.29931640625,
0.09881591796875,
0.501953125,
0.018890380859375,
-0.22900390625,
0.2410888671875,
0.69482421875,
-0.86083984375,
-0.66162109375,
0.07989501953125,
0.88134765625,
0.09759521484375,
-0.517578125,
-0.1605224609375,
0.44287109375,
-0.194580078125,
0.1907958984375,
-0.48681640625,
0.1610107421875,
0.10205078125,
0.94873046875,
-0.87158203125,
0.0472412109375,
-0.2015380859375,
0.2398681640625,
-0.1910400390625,
-0.71826171875,
-0.568359375,
1.1142578125,
0.615234375,
-0.0843505859375,
0.5712890625,
0.0059356689453125,
0.44873046875,
0.01666259765625,
-0.012359619140625,
0.12225341796875,
0.58984375,
0.896484375,
0.70458984375,
-0.200927734375,
0.53515625,
0.8359375,
-0.2484130859375,
-0.126220703125,
0.475341796875,
0.204345703125,
-0.05389404296875,
-0.11090087890625,
-0.323486328125,
-0.384521484375,
-0.1658935546875,
-0.69921875,
0.775390625,
-0.2015380859375,
0.33203125,
-0.2091064453125,
-0.7265625,
0.81005859375,
-0.345458984375,
-0.175537109375,
0.213134765625,
-0.7353515625,
0.419677734375,
0.59765625,
-0.3203125,
-0.34716796875,
0.6064453125,
0.7509765625,
0.5703125,
0.7109375,
0.2427978515625,
0.2255859375,
-0.71826171875,
0.0867919921875,
0.006732940673828125,
-0.0887451171875,
-0.2308349609375,
-0.724609375,
-1.2490234375,
0.67822265625,
-0.517578125,
-0.286376953125,
0.64208984375,
-0.75927734375,
0.24853515625,
-0.21484375,
0.984375,
-0.54052734375,
0.1995849609375,
0.53271484375,
-0.406005859375,
-0.88037109375,
1.0078125,
-0.06256103515625,
0.225341796875,
-0.09405517578125,
1.349609375,
-0.10498046875,
1.3916015625,
0.68603515625,
-0.326904296875,
0.27197265625,
0.56494140625,
-0.319091796875,
-0.56689453125,
-0.410400390625,
-0.546875,
-0.377685546875,
-0.68212890625,
-0.53466796875,
0.020355224609375,
0.425537109375,
0.019073486328125,
-0.7314453125,
-0.343017578125,
0.193603515625,
-0.73779296875,
0.67529296875,
0.128662109375,
0.312744140625,
0.264892578125,
-0.1422119140625,
-0.045074462890625,
-0.277099609375,
0.27783203125,
-0.44775390625,
0.496826171875,
-0.95751953125,
-0.254638671875,
-0.728515625,
-0.65380859375,
-0.1865234375,
0.08880615234375,
-0.316162109375,
-0.80615234375,
0.20556640625,
0.4423828125,
0.1851806640625,
0.308837890625,
-0.307373046875,
0.268310546875,
1.0205078125,
1.0732421875,
-0.046600341796875,
0.8388671875,
0.34765625,
-0.064697265625,
-0.12078857421875,
-0.254638671875,
0.412109375,
0.058837890625,
0.46142578125,
-0.38134765625,
0.33056640625,
-0.65869140625,
-1.296875,
0.2420654296875,
0.390869140625,
-0.032623291015625,
-0.771484375,
-1.2646484375,
-0.473876953125,
-1.1748046875,
-0.1466064453125,
-0.99267578125,
1.080078125,
-0.390869140625,
-0.047882080078125,
0.0017423629760742188,
-1.1220703125,
4.19921875,
0.99267578125,
0.76513671875,
0.53076171875,
0.22412109375,
0.7587890625,
0.0377197265625,
-0.65673828125,
-0.01097869873046875,
-0.449951171875,
0.7392578125,
-0.544921875,
-0.10284423828125,
0.97509765625,
0.37744140625,
0.5068359375,
-0.51123046875,
0.0750732421875,
-0.01174163818359375,
-1.083984375,
-0.9140625,
0.349609375,
0.06829833984375,
0.3876953125,
0.12310791015625,
0.1744384765625,
0.91845703125,
-0.91943359375,
0.140869140625,
-0.7353515625,
0.279052734375,
-0.405517578125,
1.0693359375,
0.225341796875,
0.133544921875,
0.4501953125,
-0.10211181640625,
-0.349853515625,
-0.023651123046875,
0.09503173828125,
-0.328125,
-0.2164306640625,
0.49853515625,
-0.76123046875,
-0.183837890625,
0.59814453125,
-0.73583984375,
0.52685546875,
-0.02001953125,
-1.203125,
0.95849609375,
-0.2196044921875,
0.326904296875,
-0.73193359375,
-0.23046875,
0.060150146484375,
0.5029296875,
-0.12408447265625,
-0.290771484375,
0.509765625,
0.387939453125,
0.55322265625,
-0.0187835693359375,
0.71875,
-1.134765625,
0.06439208984375,
0.026336669921875,
0.40576171875,
-0.43896484375,
0.00016772747039794922,
-0.58154296875,
-0.43798828125,
-0.25146484375,
-0.56689453125,
0.53759765625,
-0.00907135009765625,
-0.034820556640625,
0.330810546875,
0.59375,
-0.6181640625,
0.1839599609375,
-0.11029052734375,
-0.0672607421875,
-0.69873046875,
0.8896484375,
1.3212890625,
-0.5830078125,
-0.420166015625,
-0.3447265625,
0.493896484375,
0.681640625,
0.666015625,
-0.032623291015625,
-0.7861328125,
-0.30712890625
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
We have a string of letters 'a' and 'b'. We want to perform some operations on it. On each step we choose one of substrings "ab" in the string and replace it with the string "bba". If we have no "ab" as a substring, our job is done. Print the minimum number of steps we should perform to make our job done modulo 109 + 7.
The string "ab" appears as a substring if there is a letter 'b' right after the letter 'a' somewhere in the string.
Input
The first line contains the initial string consisting of letters 'a' and 'b' only with length from 1 to 106.
Output
Print the minimum number of steps modulo 109 + 7.
Examples
Input
ab
Output
1
Input
aab
Output
3
Note
The first example: "ab" → "bba".
The second example: "aab" → "abba" → "bbaba" → "bbbbaa".
Submitted Solution:
```
#!/usr/bin/python3.5
s=input()
m=1000000007
p=0
k=1
for i in s:
if i=='a':
k<<=1
k%=m
else:
p+=k-1;
p%=m
print(p)
```
Yes
| 10,470 | [
0.4990234375,
-0.1343994140625,
-0.04351806640625,
0.065185546875,
-0.8671875,
-0.39990234375,
-0.07611083984375,
-0.11834716796875,
0.1873779296875,
0.8447265625,
0.51318359375,
-0.401123046875,
-0.17626953125,
-0.998046875,
-0.474365234375,
-0.0579833984375,
-0.474365234375,
-0.65673828125,
-0.2734375,
-0.404052734375,
0.0267486572265625,
-0.2578125,
-1.1220703125,
0.108642578125,
-0.160888671875,
0.95068359375,
0.59765625,
-0.034881591796875,
1.0380859375,
1.1572265625,
-0.2333984375,
-0.26611328125,
0.5830078125,
-0.8408203125,
-0.2117919921875,
-0.6416015625,
0.58935546875,
-0.8466796875,
-0.3701171875,
-0.423828125,
0.2098388671875,
-0.417724609375,
0.53857421875,
-0.53125,
-1.7666015625,
-0.0848388671875,
-0.0242919921875,
-0.434326171875,
-0.04461669921875,
-0.417236328125,
-0.173583984375,
-0.31689453125,
0.388427734375,
-0.2027587890625,
0.1656494140625,
0.278564453125,
0.2269287109375,
-0.31884765625,
-1.0048828125,
0.062408447265625,
0.46630859375,
0.1864013671875,
0.0897216796875,
-0.83349609375,
-0.11761474609375,
0.299072265625,
-0.2275390625,
0.11279296875,
-0.1734619140625,
-0.52783203125,
-0.06854248046875,
0.1356201171875,
-0.362060546875,
-0.497802734375,
-0.32080078125,
0.052001953125,
0.343994140625,
-0.004238128662109375,
-0.85595703125,
1.111328125,
-0.34716796875,
0.92236328125,
0.364501953125,
0.22412109375,
-0.41552734375,
-0.60791015625,
0.1962890625,
0.329345703125,
0.129150390625,
-0.061920166015625,
-0.3798828125,
0.54541015625,
-0.3388671875,
-0.1873779296875,
0.4921875,
0.5224609375,
-0.421630859375,
0.06463623046875,
0.4619140625,
0.373779296875,
1.0126953125,
0.8544921875,
-0.492431640625,
0.96435546875,
-0.357177734375,
-0.1334228515625,
0.11651611328125,
-0.280517578125,
-0.37255859375,
-0.1529541015625,
-0.20654296875,
-0.2427978515625,
0.464111328125,
0.385498046875,
-0.58544921875,
0.978515625,
0.348388671875,
0.53076171875,
-0.525390625,
0.50390625,
0.408447265625,
0.1082763671875,
0.7822265625,
-0.260498046875,
-0.1387939453125,
-0.135498046875,
-0.845703125,
1.1982421875,
-0.64404296875,
-0.299072265625,
0.308837890625,
0.1270751953125,
-0.05877685546875,
0.2841796875,
-0.491455078125,
0.64208984375,
0.01517486572265625,
0.2164306640625,
0.72509765625,
-0.418212890625,
0.732421875,
-0.277099609375,
-0.1378173828125,
1.8076171875,
0.1436767578125,
-0.19775390625,
0.6455078125,
0.418701171875,
-0.91943359375,
0.3232421875,
-1.109375,
0.74560546875,
0.2359619140625,
0.07489013671875,
-0.2200927734375,
0.0948486328125,
-0.2242431640625,
0.376708984375,
0.2044677734375,
-0.2412109375,
-0.48095703125,
0.17333984375,
-0.498779296875,
0.806640625,
-0.390625,
0.6064453125,
-0.1290283203125,
-0.20068359375,
-0.0538330078125,
-0.4052734375,
0.1190185546875,
-0.1793212890625,
0.01358795166015625,
1.015625,
0.5244140625,
0.9658203125,
1.19140625,
-0.192626953125,
0.43017578125,
0.37890625,
-0.458740234375,
0.33203125,
0.2529296875,
0.9736328125,
0.440673828125,
0.59375,
-0.291015625,
-0.00177001953125,
-0.416259765625,
-0.45751953125,
0.365966796875,
0.62744140625,
-0.77392578125,
0.44677734375,
-0.16748046875,
-0.0904541015625,
-0.74365234375,
-0.307373046875,
0.0095977783203125,
-1.0537109375,
-0.34521484375,
0.473876953125,
0.0423583984375,
0.410400390625,
-0.3974609375,
-0.619140625,
0.30908203125,
1.2958984375,
-0.203857421875,
0.21240234375,
0.445556640625,
-0.09173583984375,
-0.1290283203125,
0.275390625,
0.10382080078125,
-0.3779296875,
-0.541015625,
0.64404296875,
-0.12457275390625,
-0.04937744140625,
-0.264892578125,
0.5771484375,
0.300048828125,
0.69287109375,
-0.320556640625,
-0.63134765625,
0.4921875,
1.1103515625,
-0.2158203125,
0.578125,
0.334228515625,
0.744140625,
0.9189453125,
0.9345703125,
0.64013671875,
0.28857421875,
0.65283203125,
0.84521484375,
-0.065673828125,
0.2763671875,
0.288818359375,
0.5849609375,
0.2427978515625,
0.515625,
0.486572265625,
0.439208984375,
0.1053466796875,
-0.271728515625,
-0.0645751953125,
-0.043914794921875,
-0.46484375,
0.73193359375,
-0.0364990234375,
0.66943359375,
0.11822509765625,
-0.252197265625,
0.357421875,
0.98193359375,
-1.3037109375,
-0.61962890625,
-0.050872802734375,
0.049560546875,
0.1441650390625,
0.10321044921875,
0.6875,
0.45556640625,
0.716796875,
0.52880859375,
-0.2105712890625,
-0.320068359375,
-0.5751953125,
-0.8505859375,
-0.98486328125,
-0.25732421875,
-0.94091796875,
-0.1707763671875,
-0.1759033203125,
-1.0341796875,
0.07550048828125,
-0.56298828125,
-0.0762939453125,
0.1519775390625,
-0.430908203125,
0.9521484375,
-0.1629638671875,
0.1353759765625,
-0.533203125,
0.53466796875,
0.1746826171875,
1.0810546875,
-0.82177734375,
0.0899658203125,
-0.363525390625,
-0.59375,
-0.0217132568359375,
0.277587890625,
0.42138671875,
0.173095703125,
-0.67041015625,
-0.76953125,
-0.5146484375,
0.133544921875,
-0.382080078125,
0.06781005859375,
-0.654296875,
0.7041015625,
0.42138671875,
-0.76025390625,
0.60791015625,
1.1162109375,
-0.9814453125,
0.68505859375,
0.305419921875,
-0.306396484375,
-0.7373046875,
1.2958984375,
0.560546875,
0.60693359375,
-0.371337890625,
-0.75244140625,
-0.421630859375,
0.0557861328125,
0.1064453125,
-0.7119140625,
-0.369873046875,
0.6474609375,
0.0408935546875,
-0.94091796875,
0.5283203125,
-1.1396484375,
-0.499267578125,
-0.6015625,
-0.560546875,
1.0771484375,
0.8955078125,
0.1993408203125,
0.206787109375,
-0.019012451171875,
0.04022216796875,
0.70458984375,
0.59423828125,
-0.849609375,
0.242431640625,
1.0302734375,
-0.07415771484375,
0.2432861328125,
0.2489013671875,
-0.433837890625,
-0.220458984375,
0.04486083984375,
0.020477294921875,
0.65185546875,
-0.0489501953125,
0.51220703125,
0.2491455078125,
0.5849609375,
-0.87939453125,
0.0865478515625,
-0.1846923828125,
0.87841796875,
0.38720703125,
0.734375,
0.253662109375,
-0.038604736328125,
-0.64013671875,
-1.126953125,
0.038299560546875,
0.1431884765625,
0.58740234375,
-0.37646484375,
1.0888671875,
0.0653076171875,
-0.732421875,
0.56689453125,
-0.65087890625,
0.50927734375,
1.13671875,
0.268310546875,
0.8427734375,
-0.83349609375,
0.432373046875,
0.10113525390625,
-0.1920166015625,
0.434814453125,
0.5927734375,
0.40576171875,
-0.413330078125,
-0.7275390625,
-0.4580078125,
0.0297393798828125,
-0.196044921875,
-0.42529296875,
0.1756591796875,
-0.56884765625,
-0.2457275390625,
-0.9482421875,
0.58447265625,
0.65478515625,
0.7978515625,
0.21630859375,
0.2327880859375,
0.08203125,
0.2099609375,
0.64892578125,
0.03289794921875,
0.2144775390625,
-0.650390625,
0.8876953125,
0.28369140625,
-0.2900390625,
-0.51611328125,
-0.4072265625,
-0.12939453125,
0.10565185546875,
-0.492919921875,
-0.08660888671875,
-1.2158203125,
0.19287109375,
-0.2152099609375,
0.60595703125,
-0.845703125,
-0.1192626953125,
-0.3369140625,
0.163818359375,
0.176025390625,
-1.03125,
0.6259765625,
-0.9453125,
0.634765625,
0.53662109375,
-0.10992431640625,
-0.1002197265625,
-0.32568359375,
-0.93994140625,
-0.72314453125,
-0.2095947265625,
0.7451171875,
-0.07904052734375,
0.44287109375,
-1.45703125,
0.5732421875,
0.40478515625,
-0.6181640625,
0.25048828125,
-0.491455078125,
0.64013671875,
-0.189697265625,
0.72265625,
-0.467041015625,
-0.66162109375,
0.062347412109375,
-1.4013671875,
0.59228515625,
-0.5478515625,
0.8046875,
0.155517578125,
-0.189208984375,
0.296142578125,
0.25048828125,
-0.1531982421875,
0.24609375,
-0.1767578125,
0.4638671875,
-0.966796875,
-1.037109375,
0.59716796875,
-0.2398681640625,
-0.37841796875,
0.705078125,
-0.06793212890625,
-0.63623046875,
-0.155029296875,
0.47119140625,
-0.446533203125,
0.384521484375,
-0.1759033203125,
0.5869140625,
-0.33984375,
-0.69921875,
-0.280029296875,
-0.65771484375,
0.78515625,
-0.33154296875,
-0.64013671875,
-0.1658935546875,
-1.326171875,
-0.24609375,
0.043060302734375,
-0.358642578125,
0.2568359375,
0.423828125,
0.00951385498046875,
-0.22216796875,
-0.2161865234375,
-0.5625,
-0.425048828125,
-0.6220703125,
-0.335205078125,
0.04931640625,
0.5751953125,
0.9716796875,
-0.0479736328125,
-0.315673828125,
-0.1397705078125,
-0.096435546875,
0.04779052734375,
-0.53173828125,
-0.2861328125,
-0.05401611328125,
-0.447998046875,
-0.26318359375,
0.4150390625,
0.0173492431640625,
0.60546875,
0.77783203125,
-0.155029296875,
0.40625,
0.3408203125,
-0.69677734375,
1.466796875,
0.0000483393669128418,
-1.1953125,
-0.728515625,
0.5576171875,
0.1282958984375,
0.7265625,
0.32861328125,
-1.01953125,
-0.67578125,
-1.0703125,
0.446533203125,
-0.9111328125,
-0.387939453125,
-1.2119140625,
-0.681640625,
-0.62451171875,
0.278076171875,
0.181884765625,
-0.4970703125,
0.533203125,
-0.8642578125,
0.2083740234375,
-0.9609375,
0.0634765625,
-0.62646484375,
-0.509765625,
-0.008148193359375,
0.9736328125,
0.08837890625,
0.27587890625,
-0.0175933837890625,
-0.4033203125,
0.33349609375,
-0.1353759765625,
-0.76220703125,
-0.388671875,
-0.261962890625,
0.2666015625,
-0.263671875,
-0.177490234375,
-0.701171875,
0.95654296875,
-0.6064453125,
0.59716796875,
0.178955078125,
-0.385986328125,
-0.1414794921875,
-0.3095703125,
0.91015625,
-0.412353515625,
0.14306640625,
-0.06304931640625,
0.31591796875,
0.662109375,
-0.497314453125,
-0.3857421875,
-0.63623046875,
-0.5107421875,
-0.99755859375,
0.48095703125,
-0.359375,
0.1771240234375,
-0.86181640625,
-0.122802734375,
1.1650390625,
-0.64892578125,
0.44140625,
1.0283203125,
0.07464599609375,
0.253173828125,
-0.35546875,
0.72265625,
0.52880859375,
-0.311279296875,
0.02081298828125,
-0.0506591796875,
-0.5458984375,
0.0163421630859375,
-0.3427734375,
-0.8447265625,
-0.7158203125,
0.25732421875,
1.35546875,
-0.31201171875,
0.77294921875,
-0.1536865234375,
-1.193359375,
-0.40234375,
0.6494140625,
0.181884765625,
0.177490234375,
0.65234375,
-0.1322021484375,
-0.094970703125,
0.08795166015625,
-0.44091796875,
-0.560546875,
-0.669921875,
1.2978515625,
-0.7333984375,
-0.6435546875,
1.1669921875,
0.943359375,
-1.2236328125,
-1.0234375,
0.13671875,
-0.005176544189453125,
-0.2239990234375,
-0.61669921875,
0.023101806640625,
0.65380859375,
-0.63427734375,
0.05438232421875,
0.156494140625,
-0.036712646484375,
0.290283203125,
-0.05303955078125,
0.57763671875,
-0.369384765625,
0.4658203125,
0.744140625,
-0.62939453125,
-0.275390625,
-0.912109375,
-0.2142333984375,
-0.32373046875,
0.1484375,
0.75,
-0.017974853515625,
0.321044921875,
0.720703125,
-0.08648681640625,
0.73876953125,
-0.53369140625,
-0.256103515625,
0.195068359375,
-0.55859375,
-0.46728515625,
0.05413818359375,
0.31396484375,
-0.03973388671875,
0.5,
-0.57275390625,
-0.09814453125,
0.31591796875,
0.60400390625,
-0.1925048828125,
-0.6875,
-0.226318359375,
-1.4052734375,
-0.483154296875,
-0.58154296875,
-0.90625,
-0.2244873046875,
0.58203125,
0.208740234375,
-0.591796875,
0.04949951171875,
0.50390625,
-0.642578125,
0.58935546875,
-0.482421875,
0.1864013671875,
-0.302734375,
-0.482177734375,
-1.0107421875,
-0.10736083984375,
-0.63330078125,
-0.5,
-0.68994140625,
0.677734375,
0.008453369140625,
0.269287109375,
-0.266845703125,
0.94580078125,
-0.074462890625,
-0.5986328125,
0.459228515625,
0.057342529296875,
-0.22265625,
1.349609375,
0.281982421875,
0.12091064453125,
0.10919189453125,
-0.387939453125,
-0.17529296875,
-0.306396484375,
0.77001953125,
0.377685546875,
-0.369140625,
-0.19873046875,
-0.04364013671875,
0.229736328125,
-0.7548828125,
0.330322265625,
-0.3134765625,
0.0870361328125,
-0.0782470703125,
-0.04779052734375,
0.2978515625,
1.2421875,
-0.2802734375,
0.07122802734375,
0.0992431640625,
0.17626953125,
0.30126953125,
0.3212890625,
0.0863037109375,
0.6015625,
-0.282958984375,
-0.42578125,
-0.10357666015625,
0.397216796875,
0.1160888671875,
0.155517578125,
-0.44921875,
-1.001953125,
-0.7080078125,
-0.1781005859375,
-0.07611083984375,
0.4580078125,
0.4208984375,
-0.45849609375,
0.0158538818359375,
0.0899658203125,
-0.54931640625,
0.158203125,
-1.1591796875,
-1.0556640625,
0.60888671875,
-0.1307373046875,
-0.66015625,
-0.042144775390625,
-0.3232421875,
-0.07275390625,
0.04412841796875,
0.5478515625,
-0.525390625,
0.244873046875,
0.1038818359375,
0.48974609375,
0.0207672119140625,
-0.2255859375,
0.2108154296875,
0.70556640625,
-0.83642578125,
-0.68701171875,
0.021728515625,
0.92626953125,
0.100830078125,
-0.5126953125,
-0.1759033203125,
0.42822265625,
-0.15869140625,
0.16650390625,
-0.5224609375,
0.163330078125,
0.100830078125,
0.96337890625,
-0.82080078125,
0.0882568359375,
-0.2003173828125,
0.22412109375,
-0.1728515625,
-0.724609375,
-0.5712890625,
1.1025390625,
0.5791015625,
-0.10137939453125,
0.53515625,
0.016448974609375,
0.4072265625,
0.03692626953125,
0.02685546875,
0.11065673828125,
0.6279296875,
0.896484375,
0.76220703125,
-0.214599609375,
0.52001953125,
0.8193359375,
-0.285888671875,
-0.12213134765625,
0.46435546875,
0.194580078125,
-0.1287841796875,
-0.1248779296875,
-0.30908203125,
-0.32861328125,
-0.182373046875,
-0.685546875,
0.7763671875,
-0.18896484375,
0.312255859375,
-0.1783447265625,
-0.71923828125,
0.85107421875,
-0.314208984375,
-0.2130126953125,
0.2293701171875,
-0.72509765625,
0.4326171875,
0.58056640625,
-0.3369140625,
-0.379638671875,
0.64501953125,
0.74072265625,
0.5576171875,
0.71826171875,
0.2447509765625,
0.2315673828125,
-0.71044921875,
0.0909423828125,
-0.017822265625,
-0.138916015625,
-0.1817626953125,
-0.7158203125,
-1.224609375,
0.66748046875,
-0.480712890625,
-0.2139892578125,
0.6083984375,
-0.78125,
0.242919921875,
-0.2347412109375,
1.0234375,
-0.54833984375,
0.161376953125,
0.5048828125,
-0.4150390625,
-0.85009765625,
0.97265625,
-0.048797607421875,
0.234375,
-0.08990478515625,
1.345703125,
-0.098388671875,
1.44140625,
0.69140625,
-0.271240234375,
0.284912109375,
0.53564453125,
-0.3525390625,
-0.54345703125,
-0.3974609375,
-0.5859375,
-0.33349609375,
-0.7060546875,
-0.5830078125,
0.01352691650390625,
0.466796875,
0.02777099609375,
-0.7294921875,
-0.32080078125,
0.1978759765625,
-0.71337890625,
0.63134765625,
0.1434326171875,
0.33447265625,
0.31689453125,
-0.12042236328125,
-0.055328369140625,
-0.2425537109375,
0.30908203125,
-0.3671875,
0.444580078125,
-0.939453125,
-0.255859375,
-0.685546875,
-0.650390625,
-0.174072265625,
0.10284423828125,
-0.30419921875,
-0.78662109375,
0.2122802734375,
0.491943359375,
0.203125,
0.292724609375,
-0.265869140625,
0.234130859375,
1.0048828125,
1.0947265625,
-0.05810546875,
0.85693359375,
0.347412109375,
-0.0838623046875,
-0.1173095703125,
-0.268798828125,
0.41015625,
0.0214691162109375,
0.4306640625,
-0.40380859375,
0.2958984375,
-0.662109375,
-1.3095703125,
0.24755859375,
0.378173828125,
-0.0022754669189453125,
-0.767578125,
-1.23828125,
-0.525390625,
-1.197265625,
-0.1436767578125,
-1.0068359375,
1.080078125,
-0.378173828125,
-0.056121826171875,
0.0211944580078125,
-1.1640625,
4.20703125,
0.9921875,
0.73193359375,
0.55322265625,
0.25537109375,
0.7880859375,
0.046783447265625,
-0.60986328125,
0.00901031494140625,
-0.48583984375,
0.708984375,
-0.5224609375,
-0.0819091796875,
0.97900390625,
0.406982421875,
0.45947265625,
-0.5400390625,
0.11102294921875,
0.0222930908203125,
-1.0869140625,
-0.927734375,
0.327392578125,
0.057464599609375,
0.408447265625,
0.1796875,
0.181640625,
0.953125,
-0.9013671875,
0.123046875,
-0.7109375,
0.31689453125,
-0.373779296875,
1.0546875,
0.1671142578125,
0.11297607421875,
0.460205078125,
-0.09246826171875,
-0.349365234375,
-0.0263671875,
0.1220703125,
-0.33349609375,
-0.242919921875,
0.48193359375,
-0.77294921875,
-0.1884765625,
0.5341796875,
-0.72802734375,
0.494140625,
-0.019622802734375,
-1.2294921875,
0.927734375,
-0.205322265625,
0.342529296875,
-0.72119140625,
-0.2371826171875,
0.046173095703125,
0.495849609375,
-0.1207275390625,
-0.260009765625,
0.54052734375,
0.39794921875,
0.564453125,
0.0242462158203125,
0.74951171875,
-1.166015625,
0.09783935546875,
-0.03326416015625,
0.434814453125,
-0.443603515625,
0.0221099853515625,
-0.60888671875,
-0.42236328125,
-0.212646484375,
-0.5791015625,
0.5302734375,
-0.029449462890625,
-0.039337158203125,
0.352294921875,
0.6259765625,
-0.60498046875,
0.1903076171875,
-0.08709716796875,
-0.07891845703125,
-0.724609375,
0.84423828125,
1.328125,
-0.5576171875,
-0.44091796875,
-0.272705078125,
0.51708984375,
0.6865234375,
0.7109375,
-0.044830322265625,
-0.81103515625,
-0.3076171875
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
We have a string of letters 'a' and 'b'. We want to perform some operations on it. On each step we choose one of substrings "ab" in the string and replace it with the string "bba". If we have no "ab" as a substring, our job is done. Print the minimum number of steps we should perform to make our job done modulo 109 + 7.
The string "ab" appears as a substring if there is a letter 'b' right after the letter 'a' somewhere in the string.
Input
The first line contains the initial string consisting of letters 'a' and 'b' only with length from 1 to 106.
Output
Print the minimum number of steps modulo 109 + 7.
Examples
Input
ab
Output
1
Input
aab
Output
3
Note
The first example: "ab" → "bba".
The second example: "aab" → "abba" → "bbaba" → "bbbbaa".
Submitted Solution:
```
import math,string,itertools,fractions,heapq,collections,re,array,bisect,sys,random,time,copy,functools
sys.setrecursionlimit(10**7)
inf = 10**20
mod = 10**9 + 7
def LI(): return [int(x) for x in sys.stdin.readline().split()]
def LI_(): return [int(x)-1 for x in sys.stdin.readline().split()]
def LF(): return [float(x) for x in sys.stdin.readline().split()]
def LS(): return sys.stdin.readline().split()
def I(): return int(sys.stdin.readline())
def F(): return float(sys.stdin.readline())
def S(): return input()
def main():
s = S()
r = 0
b = 0
for c in s[::-1]:
if c == 'a':
r += b
r %= mod
b *= 2
b %= mod
else:
b += 1
return r
print(main())
```
Yes
| 10,471 | [
0.385986328125,
-0.11004638671875,
-0.039947509765625,
0.033843994140625,
-0.95068359375,
-0.42236328125,
-0.10516357421875,
-0.038330078125,
0.177734375,
0.95751953125,
0.51318359375,
-0.468505859375,
-0.262939453125,
-0.92041015625,
-0.407958984375,
-0.054473876953125,
-0.5751953125,
-0.658203125,
-0.37646484375,
-0.40283203125,
0.06719970703125,
-0.11920166015625,
-0.98046875,
0.07080078125,
-0.255859375,
0.845703125,
0.55859375,
0.006061553955078125,
1.0478515625,
1.197265625,
-0.151123046875,
-0.2744140625,
0.492431640625,
-0.92236328125,
-0.19140625,
-0.474365234375,
0.72509765625,
-0.748046875,
-0.335693359375,
-0.37451171875,
0.2010498046875,
-0.318115234375,
0.4619140625,
-0.5908203125,
-1.650390625,
-0.0596923828125,
0.00664520263671875,
-0.489990234375,
-0.05572509765625,
-0.4140625,
-0.139892578125,
-0.249755859375,
0.34130859375,
-0.30078125,
0.04443359375,
0.1790771484375,
0.233642578125,
-0.29052734375,
-0.923828125,
-0.03363037109375,
0.48046875,
0.28466796875,
0.11407470703125,
-0.6630859375,
0.11981201171875,
0.419921875,
-0.4287109375,
0.06732177734375,
-0.241455078125,
-0.6201171875,
-0.166748046875,
0.10589599609375,
-0.331787109375,
-0.677734375,
-0.35546875,
0.07891845703125,
0.451904296875,
-0.01995849609375,
-0.85205078125,
1.1181640625,
-0.403564453125,
0.87451171875,
0.257080078125,
0.25048828125,
-0.40576171875,
-0.5966796875,
0.2587890625,
0.118896484375,
-0.006412506103515625,
-0.1151123046875,
-0.420654296875,
0.453125,
-0.443115234375,
-0.2005615234375,
0.52197265625,
0.580078125,
-0.35107421875,
0.07928466796875,
0.439453125,
0.457763671875,
0.83447265625,
0.92529296875,
-0.5390625,
0.96533203125,
-0.373291015625,
0.11505126953125,
0.2464599609375,
-0.2393798828125,
-0.437744140625,
-0.01053619384765625,
-0.10693359375,
-0.27734375,
0.59130859375,
0.4111328125,
-0.45849609375,
0.92919921875,
0.40966796875,
0.529296875,
-0.53173828125,
0.55615234375,
0.44140625,
0.109619140625,
0.69140625,
-0.360595703125,
-0.12481689453125,
-0.26416015625,
-0.76220703125,
1.0966796875,
-0.68359375,
-0.35009765625,
0.272216796875,
0.1832275390625,
-0.1522216796875,
0.442138671875,
-0.304443359375,
0.70361328125,
-0.126953125,
0.17041015625,
0.703125,
-0.38720703125,
0.70751953125,
-0.260986328125,
-0.12213134765625,
1.880859375,
0.2286376953125,
-0.1812744140625,
0.580078125,
0.464599609375,
-0.8515625,
0.51806640625,
-1.0595703125,
0.6220703125,
0.247802734375,
0.0955810546875,
-0.1629638671875,
0.11895751953125,
-0.37890625,
0.578125,
0.1888427734375,
-0.07391357421875,
-0.491943359375,
0.09033203125,
-0.372802734375,
0.86962890625,
-0.28564453125,
0.6416015625,
-0.217041015625,
-0.322509765625,
-0.10064697265625,
-0.25341796875,
0.1978759765625,
-0.25146484375,
-0.060150146484375,
0.90576171875,
0.45263671875,
0.96728515625,
1.08984375,
-0.258544921875,
0.4765625,
0.439697265625,
-0.55810546875,
0.340576171875,
0.1845703125,
0.98486328125,
0.42822265625,
0.54345703125,
-0.1290283203125,
-0.08026123046875,
-0.60888671875,
-0.546875,
0.4189453125,
0.685546875,
-0.81494140625,
0.3505859375,
-0.3056640625,
-0.0791015625,
-0.72998046875,
-0.285400390625,
-0.097412109375,
-1.01953125,
-0.322265625,
0.44775390625,
0.045501708984375,
0.31005859375,
-0.406982421875,
-0.5,
0.39990234375,
1.2802734375,
-0.35107421875,
0.2998046875,
0.48095703125,
-0.14111328125,
-0.2412109375,
0.379150390625,
0.044586181640625,
-0.385986328125,
-0.60107421875,
0.437744140625,
0.0361328125,
-0.1744384765625,
-0.16845703125,
0.6484375,
0.330078125,
0.6220703125,
-0.431884765625,
-0.5859375,
0.473876953125,
1.1044921875,
-0.137451171875,
0.5869140625,
0.292724609375,
0.7802734375,
0.77880859375,
0.7763671875,
0.71142578125,
0.1614990234375,
0.5361328125,
0.82568359375,
-0.034423828125,
0.30126953125,
0.3896484375,
0.75244140625,
0.164306640625,
0.39599609375,
0.52294921875,
0.361083984375,
0.07073974609375,
-0.35546875,
-0.255615234375,
0.0008115768432617188,
-0.658203125,
0.7255859375,
-0.06903076171875,
0.517578125,
0.129150390625,
-0.3056640625,
0.45068359375,
0.904296875,
-1.2333984375,
-0.50048828125,
0.01360321044921875,
0.0062255859375,
0.1202392578125,
0.07049560546875,
0.7177734375,
0.52099609375,
0.6904296875,
0.476318359375,
-0.224853515625,
-0.2099609375,
-0.488525390625,
-0.85400390625,
-0.9375,
-0.288818359375,
-0.85791015625,
-0.16796875,
-0.236572265625,
-1.103515625,
0.147216796875,
-0.55224609375,
-0.075927734375,
-0.03564453125,
-0.50048828125,
0.96435546875,
-0.17626953125,
0.042572021484375,
-0.58935546875,
0.4580078125,
0.09765625,
1.236328125,
-0.75390625,
0.11175537109375,
-0.30078125,
-0.52294921875,
-0.05670166015625,
0.2127685546875,
0.619140625,
0.122802734375,
-0.5419921875,
-0.74462890625,
-0.578125,
0.08026123046875,
-0.407958984375,
0.276123046875,
-0.54150390625,
0.6884765625,
0.3994140625,
-0.77783203125,
0.61376953125,
0.974609375,
-0.93408203125,
0.5810546875,
0.2626953125,
-0.4619140625,
-0.6376953125,
1.1982421875,
0.418701171875,
0.56689453125,
-0.36083984375,
-0.8125,
-0.303955078125,
0.00881195068359375,
0.12213134765625,
-0.63330078125,
-0.341552734375,
0.6533203125,
-0.0401611328125,
-0.85302734375,
0.50537109375,
-1.0791015625,
-0.2442626953125,
-0.5244140625,
-0.5751953125,
1.171875,
0.80029296875,
0.2900390625,
0.0985107421875,
0.0171661376953125,
-0.0477294921875,
0.67578125,
0.5859375,
-0.9287109375,
0.2491455078125,
0.955078125,
0.01168060302734375,
0.1201171875,
0.266357421875,
-0.58837890625,
-0.11737060546875,
-0.12481689453125,
0.005275726318359375,
0.55810546875,
-0.005001068115234375,
0.57568359375,
0.413818359375,
0.50439453125,
-0.97705078125,
0.09747314453125,
-0.1778564453125,
0.8076171875,
0.44921875,
0.51806640625,
0.1387939453125,
-0.06549072265625,
-0.5234375,
-1.1650390625,
0.01000213623046875,
0.16015625,
0.54833984375,
-0.406982421875,
1.0771484375,
0.02667236328125,
-0.580078125,
0.5546875,
-0.599609375,
0.408203125,
1.126953125,
0.240966796875,
0.8837890625,
-0.79150390625,
0.397216796875,
0.11346435546875,
-0.1588134765625,
0.3759765625,
0.58837890625,
0.421142578125,
-0.431396484375,
-0.65087890625,
-0.5927734375,
-0.07421875,
-0.15673828125,
-0.427490234375,
0.20751953125,
-0.35595703125,
-0.25341796875,
-0.9736328125,
0.59130859375,
0.65185546875,
0.80078125,
0.1402587890625,
0.373046875,
0.0892333984375,
0.1690673828125,
0.6748046875,
-0.10076904296875,
0.3642578125,
-0.5419921875,
0.98828125,
0.240966796875,
-0.22802734375,
-0.5791015625,
-0.501953125,
-0.07269287109375,
0.11785888671875,
-0.47119140625,
0.07470703125,
-1.1220703125,
0.1234130859375,
-0.2822265625,
0.51708984375,
-0.93701171875,
-0.060943603515625,
-0.348388671875,
0.1649169921875,
0.216552734375,
-0.9970703125,
0.477294921875,
-1.033203125,
0.71630859375,
0.4990234375,
-0.1712646484375,
-0.2498779296875,
-0.302001953125,
-0.83056640625,
-0.74658203125,
-0.10546875,
0.7373046875,
-0.090576171875,
0.50146484375,
-1.2666015625,
0.6005859375,
0.381591796875,
-0.55419921875,
0.2244873046875,
-0.359130859375,
0.623046875,
-0.125,
0.63037109375,
-0.44384765625,
-0.60009765625,
0.1051025390625,
-1.34375,
0.64013671875,
-0.55126953125,
0.84228515625,
0.14013671875,
-0.2401123046875,
0.1697998046875,
0.3037109375,
-0.281982421875,
0.253173828125,
-0.1295166015625,
0.4521484375,
-0.88427734375,
-1.13671875,
0.61572265625,
-0.3271484375,
-0.359619140625,
0.81494140625,
-0.03033447265625,
-0.60009765625,
-0.10089111328125,
0.475341796875,
-0.427978515625,
0.382568359375,
-0.2890625,
0.56591796875,
-0.2313232421875,
-0.72509765625,
-0.412353515625,
-0.55322265625,
0.77294921875,
-0.1746826171875,
-0.4853515625,
-0.11126708984375,
-1.22265625,
-0.198974609375,
0.033660888671875,
-0.42138671875,
0.1805419921875,
0.2418212890625,
-0.1796875,
-0.2481689453125,
-0.264892578125,
-0.404296875,
-0.308349609375,
-0.509765625,
-0.32958984375,
0.039459228515625,
0.4775390625,
1.033203125,
-0.11663818359375,
-0.406982421875,
-0.146240234375,
-0.2685546875,
-0.053131103515625,
-0.55517578125,
-0.1802978515625,
-0.185302734375,
-0.431396484375,
-0.425537109375,
0.286376953125,
0.02154541015625,
0.599609375,
0.67822265625,
-0.050872802734375,
0.256103515625,
0.55029296875,
-0.72705078125,
1.384765625,
-0.039642333984375,
-1.03515625,
-0.65576171875,
0.64404296875,
-0.08416748046875,
0.609375,
0.2432861328125,
-0.9775390625,
-0.58837890625,
-1.017578125,
0.3515625,
-0.84423828125,
-0.3427734375,
-1.23046875,
-0.77734375,
-0.66064453125,
0.3876953125,
0.059478759765625,
-0.52001953125,
0.470458984375,
-0.82177734375,
0.1138916015625,
-0.7783203125,
0.006481170654296875,
-0.74072265625,
-0.5224609375,
0.086181640625,
1.08203125,
0.0116119384765625,
0.33251953125,
0.0858154296875,
-0.327880859375,
0.4287109375,
-0.1143798828125,
-0.78271484375,
-0.308837890625,
-0.30126953125,
0.30322265625,
-0.128173828125,
-0.1773681640625,
-0.64990234375,
0.86376953125,
-0.6669921875,
0.5986328125,
0.1627197265625,
-0.387451171875,
-0.078125,
-0.2440185546875,
0.8671875,
-0.58447265625,
0.09613037109375,
-0.08984375,
0.55419921875,
0.6953125,
-0.3798828125,
-0.359375,
-0.5849609375,
-0.4990234375,
-0.9794921875,
0.4921875,
-0.3759765625,
0.2420654296875,
-0.88671875,
-0.1478271484375,
1.2158203125,
-0.69140625,
0.461181640625,
1.0654296875,
0.0780029296875,
0.26318359375,
-0.41455078125,
0.80908203125,
0.5546875,
-0.365966796875,
0.1612548828125,
0.005138397216796875,
-0.58251953125,
0.01474761962890625,
-0.52197265625,
-0.900390625,
-0.6533203125,
0.2646484375,
1.4169921875,
-0.33642578125,
0.61669921875,
-0.169189453125,
-1.1904296875,
-0.325927734375,
0.646484375,
0.234375,
0.2452392578125,
0.53564453125,
-0.14697265625,
0.027587890625,
0.229736328125,
-0.496826171875,
-0.476318359375,
-0.6484375,
1.3076171875,
-0.83740234375,
-0.62939453125,
1.080078125,
0.81103515625,
-1.263671875,
-0.9111328125,
0.1175537109375,
0.1729736328125,
-0.1771240234375,
-0.677734375,
-0.11419677734375,
0.5146484375,
-0.623046875,
-0.008331298828125,
0.247314453125,
-0.107177734375,
0.255859375,
-0.039520263671875,
0.4189453125,
-0.288330078125,
0.52880859375,
0.58349609375,
-0.61669921875,
-0.216552734375,
-0.9208984375,
-0.12548828125,
-0.345458984375,
0.194580078125,
0.87744140625,
-0.139404296875,
0.393798828125,
0.6474609375,
-0.036285400390625,
0.8759765625,
-0.430419921875,
-0.23828125,
0.251708984375,
-0.491455078125,
-0.5546875,
0.08489990234375,
0.327880859375,
-0.0215301513671875,
0.5,
-0.572265625,
-0.05743408203125,
0.3359375,
0.63525390625,
-0.1378173828125,
-0.6875,
-0.2247314453125,
-1.3828125,
-0.479248046875,
-0.5498046875,
-0.96533203125,
-0.1488037109375,
0.54638671875,
0.2103271484375,
-0.57421875,
0.11346435546875,
0.30029296875,
-0.5390625,
0.578125,
-0.52783203125,
0.163818359375,
-0.216064453125,
-0.427001953125,
-1.0517578125,
-0.07275390625,
-0.68701171875,
-0.47705078125,
-0.71435546875,
0.49755859375,
-0.031402587890625,
0.255615234375,
-0.1331787109375,
0.75146484375,
-0.11163330078125,
-0.49609375,
0.399658203125,
0.08502197265625,
-0.14208984375,
1.349609375,
0.29833984375,
0.1607666015625,
0.1473388671875,
-0.31494140625,
-0.2138671875,
-0.3359375,
0.65478515625,
0.40283203125,
-0.392578125,
-0.252685546875,
-0.1612548828125,
0.2235107421875,
-0.7578125,
0.580078125,
-0.374267578125,
0.222900390625,
-0.0097503662109375,
0.041290283203125,
0.447998046875,
1.302734375,
-0.19873046875,
-0.0181884765625,
0.1763916015625,
0.1495361328125,
0.249267578125,
0.232421875,
0.1251220703125,
0.68701171875,
-0.2685546875,
-0.391357421875,
-0.0732421875,
0.38623046875,
0.1214599609375,
0.31494140625,
-0.49853515625,
-0.92041015625,
-0.7529296875,
-0.2078857421875,
-0.0285491943359375,
0.4482421875,
0.56591796875,
-0.5830078125,
-0.18212890625,
0.049072265625,
-0.53369140625,
0.1295166015625,
-1.0205078125,
-1.1376953125,
0.40771484375,
-0.1907958984375,
-0.650390625,
-0.045440673828125,
-0.380859375,
-0.2239990234375,
-0.0517578125,
0.4306640625,
-0.421875,
0.30908203125,
0.1685791015625,
0.517578125,
0.054656982421875,
-0.1746826171875,
0.237548828125,
0.60400390625,
-0.7685546875,
-0.5908203125,
0.1864013671875,
0.90380859375,
0.1746826171875,
-0.49755859375,
-0.1903076171875,
0.37060546875,
-0.102783203125,
0.259521484375,
-0.6318359375,
0.00339508056640625,
0.1346435546875,
0.859375,
-0.89990234375,
-0.053131103515625,
-0.203125,
0.256591796875,
-0.2384033203125,
-0.65478515625,
-0.59423828125,
1.1650390625,
0.63720703125,
-0.0265655517578125,
0.47265625,
0.002552032470703125,
0.478515625,
0.0261383056640625,
-0.003795623779296875,
0.0677490234375,
0.4208984375,
1.0322265625,
0.77978515625,
-0.33544921875,
0.406982421875,
0.86962890625,
-0.291748046875,
-0.303466796875,
0.3310546875,
0.1336669921875,
-0.09381103515625,
-0.0908203125,
-0.36865234375,
-0.42626953125,
-0.1766357421875,
-0.67138671875,
0.66357421875,
-0.220458984375,
0.3125,
-0.244140625,
-0.70654296875,
0.86572265625,
-0.452880859375,
-0.1787109375,
0.298095703125,
-0.8115234375,
0.419921875,
0.5791015625,
-0.1231689453125,
-0.372802734375,
0.6650390625,
0.70458984375,
0.6044921875,
0.65234375,
0.3076171875,
0.3427734375,
-0.55322265625,
0.2027587890625,
-0.2100830078125,
-0.0487060546875,
-0.2376708984375,
-0.48876953125,
-1.265625,
0.68994140625,
-0.474365234375,
-0.364013671875,
0.544921875,
-0.71533203125,
0.21875,
-0.363525390625,
0.94580078125,
-0.56201171875,
0.010498046875,
0.451416015625,
-0.320068359375,
-0.8271484375,
0.9326171875,
-0.064453125,
0.1982421875,
-0.022308349609375,
1.30078125,
0.07843017578125,
1.546875,
0.67626953125,
-0.35009765625,
0.1705322265625,
0.48681640625,
-0.361328125,
-0.53125,
-0.408203125,
-0.319580078125,
-0.146728515625,
-0.70263671875,
-0.469970703125,
0.1082763671875,
0.423583984375,
0.049285888671875,
-0.5546875,
-0.209228515625,
0.1319580078125,
-0.646484375,
0.63330078125,
0.31298828125,
0.27490234375,
0.229736328125,
-0.199462890625,
-0.087646484375,
-0.34814453125,
0.171875,
-0.39208984375,
0.60693359375,
-0.9853515625,
-0.30322265625,
-0.73388671875,
-0.63671875,
-0.2666015625,
0.08526611328125,
-0.26708984375,
-0.79541015625,
0.247802734375,
0.4609375,
0.0701904296875,
0.2486572265625,
-0.288818359375,
0.2056884765625,
1.044921875,
1.0166015625,
0.0899658203125,
0.78759765625,
0.474853515625,
-0.145751953125,
-0.13427734375,
-0.1959228515625,
0.412109375,
0.045654296875,
0.2919921875,
-0.413330078125,
0.1292724609375,
-0.71630859375,
-1.400390625,
0.2073974609375,
0.318115234375,
0.01337432861328125,
-0.7353515625,
-1.2412109375,
-0.50341796875,
-1.1865234375,
-0.0830078125,
-0.9130859375,
0.873046875,
-0.25341796875,
-0.0758056640625,
0.11907958984375,
-1.1142578125,
4.29296875,
1.0908203125,
0.77783203125,
0.484130859375,
0.29541015625,
0.95361328125,
0.01025390625,
-0.6025390625,
-0.0088653564453125,
-0.64013671875,
0.86328125,
-0.51171875,
-0.059295654296875,
0.92138671875,
0.380859375,
0.56005859375,
-0.5126953125,
0.017852783203125,
-0.021026611328125,
-1.109375,
-0.87255859375,
0.40234375,
-0.0562744140625,
0.456787109375,
0.1199951171875,
0.28369140625,
0.90380859375,
-0.98486328125,
0.260009765625,
-0.60791015625,
0.174560546875,
-0.400146484375,
0.96826171875,
0.1588134765625,
0.1490478515625,
0.552734375,
-0.09246826171875,
-0.455322265625,
-0.03668212890625,
0.006992340087890625,
-0.250732421875,
-0.1845703125,
0.4267578125,
-0.79931640625,
-0.0999755859375,
0.5712890625,
-0.6162109375,
0.51123046875,
0.0792236328125,
-1.0986328125,
0.88525390625,
-0.2919921875,
0.305908203125,
-0.6416015625,
-0.276123046875,
0.105712890625,
0.393798828125,
-0.1556396484375,
-0.316162109375,
0.57080078125,
0.45751953125,
0.578125,
0.1099853515625,
0.7861328125,
-0.9150390625,
0.11767578125,
-0.058502197265625,
0.54931640625,
-0.4462890625,
-0.09246826171875,
-0.548828125,
-0.35009765625,
-0.359130859375,
-0.5478515625,
0.58056640625,
-0.004547119140625,
-0.096923828125,
0.327880859375,
0.689453125,
-0.54052734375,
0.396240234375,
-0.10205078125,
-0.10919189453125,
-0.66748046875,
0.8701171875,
1.2802734375,
-0.57421875,
-0.431884765625,
-0.37451171875,
0.455322265625,
0.53369140625,
0.6533203125,
-0.03851318359375,
-0.81103515625,
-0.3212890625
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
We have a string of letters 'a' and 'b'. We want to perform some operations on it. On each step we choose one of substrings "ab" in the string and replace it with the string "bba". If we have no "ab" as a substring, our job is done. Print the minimum number of steps we should perform to make our job done modulo 109 + 7.
The string "ab" appears as a substring if there is a letter 'b' right after the letter 'a' somewhere in the string.
Input
The first line contains the initial string consisting of letters 'a' and 'b' only with length from 1 to 106.
Output
Print the minimum number of steps modulo 109 + 7.
Examples
Input
ab
Output
1
Input
aab
Output
3
Note
The first example: "ab" → "bba".
The second example: "aab" → "abba" → "bbaba" → "bbbbaa".
Submitted Solution:
```
import sys
mod = 10**9 + 7
def solve():
s = input()[::-1]
ans = 0
b_cnt = 0
for ch in s:
if ch == 'b':
b_cnt = (b_cnt + 1) % mod
else:
ans = (ans + b_cnt) % mod
b_cnt = (b_cnt * 2) % mod
print(ans)
if __name__ == '__main__':
solve()
```
Yes
| 10,472 | [
0.51123046875,
-0.141357421875,
0.0076141357421875,
0.06243896484375,
-0.83349609375,
-0.3505859375,
-0.11541748046875,
-0.0740966796875,
0.1549072265625,
0.80029296875,
0.50927734375,
-0.3759765625,
-0.1533203125,
-0.9423828125,
-0.484619140625,
-0.02911376953125,
-0.453369140625,
-0.64013671875,
-0.363525390625,
-0.3994140625,
0.0648193359375,
-0.236572265625,
-1.189453125,
0.1453857421875,
-0.1483154296875,
0.89501953125,
0.58740234375,
-0.1046142578125,
1.0185546875,
1.1494140625,
-0.2176513671875,
-0.277099609375,
0.57177734375,
-0.7392578125,
-0.216552734375,
-0.6181640625,
0.6025390625,
-0.841796875,
-0.329345703125,
-0.439697265625,
0.1507568359375,
-0.424072265625,
0.493408203125,
-0.55712890625,
-1.720703125,
-0.087890625,
-0.005474090576171875,
-0.364013671875,
-0.038604736328125,
-0.457275390625,
-0.1668701171875,
-0.267578125,
0.32470703125,
-0.241455078125,
0.1533203125,
0.31201171875,
0.27294921875,
-0.2452392578125,
-1.025390625,
-0.053497314453125,
0.42578125,
0.2213134765625,
0.10235595703125,
-0.74853515625,
-0.07354736328125,
0.259033203125,
-0.2342529296875,
-0.00193023681640625,
-0.12176513671875,
-0.48388671875,
-0.08160400390625,
0.1588134765625,
-0.258056640625,
-0.486083984375,
-0.2998046875,
0.059051513671875,
0.375,
-0.06939697265625,
-0.828125,
1.0859375,
-0.40673828125,
0.955078125,
0.251220703125,
0.244873046875,
-0.39501953125,
-0.568359375,
0.241943359375,
0.3251953125,
-0.026397705078125,
-0.06109619140625,
-0.379150390625,
0.513671875,
-0.373779296875,
-0.091552734375,
0.56005859375,
0.546875,
-0.42724609375,
0.081787109375,
0.498779296875,
0.363037109375,
0.96484375,
0.89794921875,
-0.537109375,
0.99951171875,
-0.38134765625,
-0.09417724609375,
0.0141754150390625,
-0.2314453125,
-0.295654296875,
-0.1287841796875,
-0.1566162109375,
-0.2225341796875,
0.475830078125,
0.344970703125,
-0.533203125,
0.91064453125,
0.34912109375,
0.5439453125,
-0.568359375,
0.440673828125,
0.330078125,
0.06451416015625,
0.82421875,
-0.266357421875,
-0.1337890625,
-0.041717529296875,
-0.91552734375,
1.20703125,
-0.62939453125,
-0.326171875,
0.337890625,
0.165771484375,
-0.1197509765625,
0.369140625,
-0.51416015625,
0.650390625,
-0.0352783203125,
0.2607421875,
0.75439453125,
-0.369384765625,
0.78466796875,
-0.160400390625,
-0.10296630859375,
1.787109375,
0.16259765625,
-0.2010498046875,
0.61181640625,
0.482177734375,
-0.88232421875,
0.282958984375,
-1.0283203125,
0.7373046875,
0.222412109375,
0.1123046875,
-0.28515625,
0.10955810546875,
-0.2415771484375,
0.373779296875,
0.259765625,
-0.2432861328125,
-0.5185546875,
0.198974609375,
-0.446533203125,
0.79931640625,
-0.356689453125,
0.5234375,
-0.0946044921875,
-0.1268310546875,
-0.033660888671875,
-0.38134765625,
0.06439208984375,
-0.16064453125,
-0.039642333984375,
1.01953125,
0.481201171875,
0.96240234375,
1.154296875,
-0.130615234375,
0.424560546875,
0.347900390625,
-0.42431640625,
0.2227783203125,
0.303466796875,
0.93310546875,
0.404052734375,
0.56005859375,
-0.29833984375,
0.04852294921875,
-0.462158203125,
-0.465576171875,
0.388427734375,
0.5859375,
-0.8095703125,
0.484619140625,
-0.1768798828125,
-0.1119384765625,
-0.833984375,
-0.336669921875,
0.062225341796875,
-0.98779296875,
-0.346435546875,
0.53955078125,
-0.10247802734375,
0.400390625,
-0.41943359375,
-0.578125,
0.28857421875,
1.2880859375,
-0.232666015625,
0.255859375,
0.368896484375,
-0.0955810546875,
-0.09112548828125,
0.3154296875,
0.1849365234375,
-0.3759765625,
-0.541015625,
0.50146484375,
-0.024139404296875,
-0.09881591796875,
-0.216796875,
0.58056640625,
0.22412109375,
0.69384765625,
-0.356201171875,
-0.60400390625,
0.53955078125,
1.1064453125,
-0.1915283203125,
0.61328125,
0.375,
0.7529296875,
0.89404296875,
0.94580078125,
0.60498046875,
0.275390625,
0.66357421875,
0.806640625,
-0.07525634765625,
0.3046875,
0.32568359375,
0.5400390625,
0.275390625,
0.499755859375,
0.494140625,
0.450927734375,
0.1363525390625,
-0.2344970703125,
-0.156494140625,
-0.13671875,
-0.50537109375,
0.7138671875,
0.034393310546875,
0.6103515625,
0.07452392578125,
-0.07763671875,
0.3974609375,
0.9775390625,
-1.2705078125,
-0.642578125,
-0.0192108154296875,
0.06036376953125,
0.11798095703125,
0.079833984375,
0.68212890625,
0.46142578125,
0.75146484375,
0.537109375,
-0.236083984375,
-0.247314453125,
-0.55224609375,
-0.87744140625,
-1.0595703125,
-0.302978515625,
-0.91796875,
-0.1866455078125,
-0.1805419921875,
-0.95361328125,
0.07366943359375,
-0.525390625,
-0.0513916015625,
0.1708984375,
-0.4033203125,
0.9521484375,
-0.09869384765625,
0.232177734375,
-0.60498046875,
0.45068359375,
0.04736328125,
1.080078125,
-0.822265625,
0.058929443359375,
-0.317626953125,
-0.70703125,
-0.041015625,
0.256591796875,
0.446044921875,
0.11004638671875,
-0.673828125,
-0.7060546875,
-0.56298828125,
0.1529541015625,
-0.293212890625,
0.1287841796875,
-0.6015625,
0.65966796875,
0.400390625,
-0.74755859375,
0.59375,
1.052734375,
-1.0126953125,
0.71728515625,
0.3212890625,
-0.268310546875,
-0.75537109375,
1.2138671875,
0.5908203125,
0.61083984375,
-0.417724609375,
-0.79345703125,
-0.449951171875,
0.13623046875,
0.1661376953125,
-0.72607421875,
-0.40673828125,
0.66845703125,
-0.0207366943359375,
-0.892578125,
0.5400390625,
-1.1044921875,
-0.54541015625,
-0.59619140625,
-0.609375,
1.0087890625,
0.822265625,
0.26953125,
0.2178955078125,
0.044403076171875,
-0.047882080078125,
0.65283203125,
0.55859375,
-0.86181640625,
0.30615234375,
0.984375,
-0.060516357421875,
0.2398681640625,
0.26416015625,
-0.5458984375,
-0.270263671875,
-0.02764892578125,
0.0132598876953125,
0.580078125,
-0.05328369140625,
0.44580078125,
0.308837890625,
0.533203125,
-0.95458984375,
0.052734375,
-0.253173828125,
0.83056640625,
0.389404296875,
0.7607421875,
0.3056640625,
-0.052978515625,
-0.6376953125,
-1.0859375,
-0.0181884765625,
0.182373046875,
0.5537109375,
-0.355712890625,
1.017578125,
0.10205078125,
-0.7685546875,
0.5322265625,
-0.64404296875,
0.5029296875,
1.1279296875,
0.38232421875,
0.81689453125,
-0.822265625,
0.408203125,
0.13525390625,
-0.101806640625,
0.425048828125,
0.5751953125,
0.3916015625,
-0.48828125,
-0.68798828125,
-0.410888671875,
0.053375244140625,
-0.1676025390625,
-0.398681640625,
0.244384765625,
-0.51171875,
-0.248291015625,
-0.95458984375,
0.67431640625,
0.595703125,
0.78564453125,
0.1898193359375,
0.361572265625,
0.11517333984375,
0.262451171875,
0.61865234375,
0.033660888671875,
0.242431640625,
-0.6357421875,
0.90087890625,
0.285400390625,
-0.286376953125,
-0.51025390625,
-0.421875,
-0.045135498046875,
0.12091064453125,
-0.42919921875,
-0.08251953125,
-1.1826171875,
0.1168212890625,
-0.2047119140625,
0.6728515625,
-0.931640625,
-0.1119384765625,
-0.358154296875,
0.095703125,
0.1973876953125,
-1.0087890625,
0.64208984375,
-1.0126953125,
0.65771484375,
0.52392578125,
-0.11834716796875,
-0.08660888671875,
-0.283447265625,
-0.89208984375,
-0.7197265625,
-0.2109375,
0.7099609375,
-0.0270843505859375,
0.452880859375,
-1.423828125,
0.6123046875,
0.363525390625,
-0.58544921875,
0.299560546875,
-0.425048828125,
0.6083984375,
-0.12481689453125,
0.67724609375,
-0.4052734375,
-0.576171875,
0.057708740234375,
-1.322265625,
0.5693359375,
-0.47314453125,
0.7783203125,
0.218994140625,
-0.180908203125,
0.254638671875,
0.271484375,
-0.154541015625,
0.1787109375,
-0.210693359375,
0.43701171875,
-0.97900390625,
-0.99853515625,
0.59814453125,
-0.18994140625,
-0.30078125,
0.70361328125,
-0.036712646484375,
-0.6787109375,
-0.12432861328125,
0.5302734375,
-0.47314453125,
0.4033203125,
-0.241455078125,
0.6513671875,
-0.3154296875,
-0.7900390625,
-0.302978515625,
-0.732421875,
0.75390625,
-0.381591796875,
-0.63427734375,
-0.12286376953125,
-1.287109375,
-0.26904296875,
-0.016815185546875,
-0.392578125,
0.2685546875,
0.35205078125,
-0.04962158203125,
-0.26171875,
-0.1527099609375,
-0.5751953125,
-0.40283203125,
-0.63134765625,
-0.301513671875,
0.0135345458984375,
0.53466796875,
1.0029296875,
0.00006669759750366211,
-0.314208984375,
-0.11505126953125,
-0.0024051666259765625,
0.056854248046875,
-0.58935546875,
-0.302734375,
-0.016143798828125,
-0.468505859375,
-0.320556640625,
0.44189453125,
-0.008026123046875,
0.61279296875,
0.763671875,
-0.1787109375,
0.378173828125,
0.3984375,
-0.6728515625,
1.4248046875,
0.033050537109375,
-1.220703125,
-0.6904296875,
0.56689453125,
0.128662109375,
0.7001953125,
0.309814453125,
-1.05078125,
-0.60498046875,
-1.0224609375,
0.365234375,
-0.9326171875,
-0.43115234375,
-1.162109375,
-0.67724609375,
-0.62841796875,
0.29052734375,
0.201171875,
-0.459228515625,
0.47216796875,
-0.912109375,
0.20166015625,
-0.97705078125,
0.032989501953125,
-0.7109375,
-0.50732421875,
-0.0033702850341796875,
1.001953125,
0.1373291015625,
0.285400390625,
-0.00008857250213623047,
-0.3603515625,
0.37548828125,
-0.165771484375,
-0.6806640625,
-0.3212890625,
-0.2086181640625,
0.249755859375,
-0.250244140625,
-0.1163330078125,
-0.65283203125,
0.892578125,
-0.6220703125,
0.5849609375,
0.2083740234375,
-0.401611328125,
-0.07049560546875,
-0.2958984375,
1.0166015625,
-0.461181640625,
0.115966796875,
-0.1014404296875,
0.311767578125,
0.64892578125,
-0.59814453125,
-0.4384765625,
-0.53857421875,
-0.5166015625,
-1.044921875,
0.4736328125,
-0.378662109375,
0.1712646484375,
-0.80322265625,
-0.1373291015625,
1.1455078125,
-0.61767578125,
0.445556640625,
1.017578125,
0.1002197265625,
0.2108154296875,
-0.330810546875,
0.7236328125,
0.552734375,
-0.277587890625,
-0.0178070068359375,
-0.0601806640625,
-0.47509765625,
0.044952392578125,
-0.390869140625,
-0.88525390625,
-0.689453125,
0.226806640625,
1.3125,
-0.28759765625,
0.818359375,
-0.192626953125,
-1.20703125,
-0.44091796875,
0.59033203125,
0.06878662109375,
0.14892578125,
0.58154296875,
-0.089111328125,
-0.1011962890625,
0.033966064453125,
-0.36083984375,
-0.5537109375,
-0.669921875,
1.224609375,
-0.794921875,
-0.61279296875,
1.052734375,
0.994140625,
-1.216796875,
-1.015625,
0.1251220703125,
0.027984619140625,
-0.144287109375,
-0.60498046875,
0.0814208984375,
0.619140625,
-0.73291015625,
0.06671142578125,
0.1859130859375,
-0.06536865234375,
0.30908203125,
-0.05535888671875,
0.56005859375,
-0.4384765625,
0.498046875,
0.6708984375,
-0.6015625,
-0.356689453125,
-0.9736328125,
-0.1783447265625,
-0.302001953125,
0.1329345703125,
0.8125,
-0.032073974609375,
0.34326171875,
0.76953125,
-0.1033935546875,
0.77099609375,
-0.52392578125,
-0.2081298828125,
0.2049560546875,
-0.57568359375,
-0.5,
0.037872314453125,
0.363037109375,
-0.0170440673828125,
0.439208984375,
-0.560546875,
-0.0576171875,
0.315185546875,
0.63818359375,
-0.2132568359375,
-0.6279296875,
-0.2724609375,
-1.4296875,
-0.51708984375,
-0.6064453125,
-0.87158203125,
-0.2332763671875,
0.56103515625,
0.11572265625,
-0.5810546875,
0.05810546875,
0.5458984375,
-0.7177734375,
0.60302734375,
-0.4775390625,
0.16943359375,
-0.393798828125,
-0.53271484375,
-0.908203125,
-0.1954345703125,
-0.5712890625,
-0.422607421875,
-0.60302734375,
0.67431640625,
-0.033294677734375,
0.302978515625,
-0.314697265625,
0.89990234375,
-0.0928955078125,
-0.5791015625,
0.455810546875,
0.111572265625,
-0.2481689453125,
1.3798828125,
0.26220703125,
0.17626953125,
0.0728759765625,
-0.345458984375,
-0.154052734375,
-0.339111328125,
0.765625,
0.285888671875,
-0.405517578125,
-0.170166015625,
-0.03466796875,
0.123291015625,
-0.82470703125,
0.343505859375,
-0.353759765625,
0.1483154296875,
-0.099853515625,
-0.024444580078125,
0.278564453125,
1.2236328125,
-0.3583984375,
0.117431640625,
0.14990234375,
0.154296875,
0.259033203125,
0.192626953125,
0.09490966796875,
0.61767578125,
-0.2340087890625,
-0.335205078125,
-0.1634521484375,
0.48486328125,
0.01617431640625,
0.1795654296875,
-0.34765625,
-1.005859375,
-0.72705078125,
-0.17138671875,
-0.07672119140625,
0.475341796875,
0.462646484375,
-0.52001953125,
-0.0022754669189453125,
0.1192626953125,
-0.6474609375,
0.11944580078125,
-1.0810546875,
-1.0322265625,
0.5224609375,
-0.1646728515625,
-0.62158203125,
0.037841796875,
-0.329833984375,
-0.07269287109375,
0.049224853515625,
0.54443359375,
-0.52783203125,
0.27685546875,
0.0718994140625,
0.456787109375,
-0.064453125,
-0.292724609375,
0.169189453125,
0.60546875,
-0.77294921875,
-0.61572265625,
0.101806640625,
0.92041015625,
0.1966552734375,
-0.5400390625,
-0.19677734375,
0.46435546875,
-0.14697265625,
0.16162109375,
-0.53173828125,
0.193603515625,
0.1075439453125,
0.99609375,
-0.86572265625,
0.08526611328125,
-0.20947265625,
0.1800537109375,
-0.2037353515625,
-0.701171875,
-0.62255859375,
1.025390625,
0.61865234375,
-0.1123046875,
0.56494140625,
0.044158935546875,
0.43505859375,
0.0283660888671875,
-0.0102386474609375,
0.11968994140625,
0.52587890625,
0.837890625,
0.701171875,
-0.226806640625,
0.496337890625,
0.86669921875,
-0.1912841796875,
-0.192138671875,
0.404052734375,
0.253662109375,
-0.057891845703125,
-0.1063232421875,
-0.2481689453125,
-0.34130859375,
-0.154052734375,
-0.64990234375,
0.724609375,
-0.2359619140625,
0.283447265625,
-0.18310546875,
-0.6904296875,
0.751953125,
-0.33056640625,
-0.120849609375,
0.2354736328125,
-0.77099609375,
0.470458984375,
0.53125,
-0.29052734375,
-0.357177734375,
0.587890625,
0.7802734375,
0.65087890625,
0.6923828125,
0.251708984375,
0.26611328125,
-0.65966796875,
0.0850830078125,
-0.0025634765625,
-0.04180908203125,
-0.1324462890625,
-0.681640625,
-1.1884765625,
0.7001953125,
-0.55908203125,
-0.310302734375,
0.58935546875,
-0.81494140625,
0.240966796875,
-0.20703125,
0.91357421875,
-0.5341796875,
0.1136474609375,
0.50830078125,
-0.408447265625,
-0.8525390625,
0.96728515625,
-0.1025390625,
0.2086181640625,
-0.02459716796875,
1.2509765625,
-0.01092529296875,
1.4140625,
0.67431640625,
-0.273193359375,
0.1986083984375,
0.5205078125,
-0.366455078125,
-0.5029296875,
-0.362060546875,
-0.52490234375,
-0.327392578125,
-0.73046875,
-0.603515625,
0.1279296875,
0.355224609375,
-0.046966552734375,
-0.64111328125,
-0.30029296875,
0.214599609375,
-0.6728515625,
0.60595703125,
0.1646728515625,
0.338623046875,
0.270751953125,
-0.058685302734375,
-0.0736083984375,
-0.251220703125,
0.292724609375,
-0.48828125,
0.47705078125,
-0.88916015625,
-0.2137451171875,
-0.67041015625,
-0.61865234375,
-0.17431640625,
0.0295257568359375,
-0.3759765625,
-0.828125,
0.2474365234375,
0.481689453125,
0.1815185546875,
0.31005859375,
-0.2154541015625,
0.248779296875,
1.009765625,
1.0810546875,
-0.0274200439453125,
0.91162109375,
0.3798828125,
-0.092529296875,
-0.1541748046875,
-0.268310546875,
0.370361328125,
-0.0059051513671875,
0.455810546875,
-0.437255859375,
0.228759765625,
-0.62353515625,
-1.3115234375,
0.201416015625,
0.430419921875,
0.0869140625,
-0.7861328125,
-1.2392578125,
-0.54345703125,
-1.2314453125,
-0.1292724609375,
-0.95947265625,
1.0302734375,
-0.41845703125,
-0.09014892578125,
-0.030517578125,
-1.13671875,
4.26953125,
0.96533203125,
0.68505859375,
0.58056640625,
0.259033203125,
0.6796875,
0.0164642333984375,
-0.62744140625,
0.091064453125,
-0.5166015625,
0.64404296875,
-0.44873046875,
-0.02459716796875,
0.95751953125,
0.319091796875,
0.473388671875,
-0.5087890625,
0.1722412109375,
-0.02142333984375,
-1.0673828125,
-1.01953125,
0.330078125,
-0.00571441650390625,
0.339111328125,
0.139404296875,
0.2191162109375,
0.888671875,
-0.9443359375,
0.1341552734375,
-0.66796875,
0.2061767578125,
-0.35498046875,
1.09375,
0.146484375,
0.14501953125,
0.464599609375,
-0.053131103515625,
-0.367431640625,
-0.025115966796875,
0.12213134765625,
-0.33984375,
-0.2279052734375,
0.57470703125,
-0.76513671875,
-0.11199951171875,
0.6240234375,
-0.69873046875,
0.53271484375,
-0.0419921875,
-1.1376953125,
0.970703125,
-0.203369140625,
0.370849609375,
-0.6982421875,
-0.15478515625,
0.0916748046875,
0.40087890625,
-0.157958984375,
-0.2685546875,
0.56298828125,
0.4287109375,
0.462890625,
-0.027252197265625,
0.6845703125,
-1.0791015625,
0.07757568359375,
-0.01342010498046875,
0.437255859375,
-0.4091796875,
-0.038818359375,
-0.59814453125,
-0.438720703125,
-0.2388916015625,
-0.5927734375,
0.591796875,
-0.042572021484375,
-0.08807373046875,
0.353759765625,
0.63916015625,
-0.54052734375,
0.31787109375,
-0.152587890625,
-0.118408203125,
-0.71044921875,
0.9423828125,
1.2255859375,
-0.50390625,
-0.37939453125,
-0.33837890625,
0.546875,
0.7353515625,
0.677734375,
-0.01123809814453125,
-0.85693359375,
-0.31396484375
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
We have a string of letters 'a' and 'b'. We want to perform some operations on it. On each step we choose one of substrings "ab" in the string and replace it with the string "bba". If we have no "ab" as a substring, our job is done. Print the minimum number of steps we should perform to make our job done modulo 109 + 7.
The string "ab" appears as a substring if there is a letter 'b' right after the letter 'a' somewhere in the string.
Input
The first line contains the initial string consisting of letters 'a' and 'b' only with length from 1 to 106.
Output
Print the minimum number of steps modulo 109 + 7.
Examples
Input
ab
Output
1
Input
aab
Output
3
Note
The first example: "ab" → "bba".
The second example: "aab" → "abba" → "bbaba" → "bbbbaa".
Submitted Solution:
```
import sys
import re
def solve():
str = input()
iter=re.finditer('ab', str)
astart = [x.start()+1 for x in iter]
iter=re.finditer('ba', str)
bstart = [x.start()+1 for x in iter]
if not bstart:
bstart=[0]
if not astart:
astart=[0]
if astart[0]<bstart[0]:
bstart.insert(0,0)
if len(bstart) == len(astart):
bstart.append(len(str))
A=[]
B=[]
incr=[]
MOD=1000000007
for i in range(len(astart)):
A.append(astart[i]-bstart[i])
B.append(bstart[i+1]-astart[i])
incr.append(((2**sum(A)-1)*B[i]) % MOD)
#print(A)
#print(B)
print(sum(incr))
if __name__ == '__main__':
solve()
```
No
| 10,473 | [
0.351318359375,
-0.06036376953125,
-0.05987548828125,
0.009521484375,
-0.7783203125,
-0.3212890625,
-0.120849609375,
-0.0877685546875,
0.209228515625,
0.80029296875,
0.52099609375,
-0.5048828125,
-0.1986083984375,
-1.009765625,
-0.358642578125,
-0.0938720703125,
-0.5419921875,
-0.7880859375,
-0.274658203125,
-0.384521484375,
-0.09625244140625,
-0.35205078125,
-1.1298828125,
-0.07781982421875,
-0.17041015625,
0.912109375,
0.464111328125,
-0.1290283203125,
1.1015625,
1.158203125,
-0.1026611328125,
-0.305908203125,
0.495849609375,
-0.6865234375,
-0.2159423828125,
-0.60205078125,
0.62451171875,
-0.900390625,
-0.275390625,
-0.357177734375,
0.21435546875,
-0.3681640625,
0.450439453125,
-0.58056640625,
-1.841796875,
0.009674072265625,
0.01425933837890625,
-0.45068359375,
0.056549072265625,
-0.445068359375,
-0.053436279296875,
-0.302734375,
0.368408203125,
-0.265625,
0.1810302734375,
0.161376953125,
0.2265625,
-0.324462890625,
-0.95361328125,
0.0197296142578125,
0.484130859375,
0.2161865234375,
0.1805419921875,
-0.69287109375,
-0.0196533203125,
0.3076171875,
-0.1981201171875,
-0.07708740234375,
-0.2032470703125,
-0.5849609375,
-0.2296142578125,
0.12249755859375,
-0.268310546875,
-0.52294921875,
-0.350830078125,
0.11566162109375,
0.412353515625,
-0.0269927978515625,
-0.779296875,
0.97412109375,
-0.353515625,
0.869140625,
0.294921875,
0.27734375,
-0.470703125,
-0.59814453125,
0.2578125,
0.298095703125,
0.1029052734375,
-0.10186767578125,
-0.42431640625,
0.53955078125,
-0.420166015625,
-0.0478515625,
0.54296875,
0.54931640625,
-0.3330078125,
0.0819091796875,
0.397705078125,
0.330078125,
0.89599609375,
0.9130859375,
-0.54736328125,
0.96337890625,
-0.423828125,
0.032379150390625,
0.1522216796875,
-0.328857421875,
-0.27978515625,
-0.106689453125,
-0.10589599609375,
-0.1368408203125,
0.51611328125,
0.29736328125,
-0.459228515625,
1.021484375,
0.24755859375,
0.56103515625,
-0.50634765625,
0.53955078125,
0.42041015625,
0.08050537109375,
0.740234375,
-0.2254638671875,
-0.1695556640625,
-0.08447265625,
-0.947265625,
1.3330078125,
-0.62744140625,
-0.285888671875,
0.311279296875,
0.153076171875,
-0.155517578125,
0.276611328125,
-0.5166015625,
0.58544921875,
-0.0201568603515625,
0.19970703125,
0.77001953125,
-0.3935546875,
0.7314453125,
-0.320068359375,
-0.106689453125,
1.8623046875,
0.1724853515625,
-0.2325439453125,
0.65625,
0.316162109375,
-0.8779296875,
0.353759765625,
-1.0380859375,
0.69384765625,
0.1492919921875,
0.048370361328125,
-0.305419921875,
0.208251953125,
-0.2064208984375,
0.354736328125,
0.271240234375,
-0.302734375,
-0.5029296875,
0.1434326171875,
-0.50390625,
0.86474609375,
-0.31591796875,
0.57275390625,
-0.2457275390625,
-0.06439208984375,
0.017974853515625,
-0.371826171875,
0.2122802734375,
-0.2464599609375,
0.0889892578125,
0.84033203125,
0.46923828125,
1.0341796875,
1.1689453125,
-0.1497802734375,
0.52392578125,
0.389404296875,
-0.5615234375,
0.258544921875,
0.304931640625,
0.96044921875,
0.435302734375,
0.55810546875,
-0.215087890625,
0.015838623046875,
-0.400634765625,
-0.50537109375,
0.419921875,
0.666015625,
-0.91064453125,
0.457275390625,
-0.2469482421875,
-0.0108184814453125,
-0.6611328125,
-0.37548828125,
-0.1947021484375,
-1.013671875,
-0.38720703125,
0.533203125,
0.10137939453125,
0.377685546875,
-0.424072265625,
-0.6044921875,
0.410400390625,
1.2783203125,
-0.29345703125,
0.260009765625,
0.479248046875,
0.0672607421875,
-0.11663818359375,
0.345458984375,
0.1226806640625,
-0.305908203125,
-0.63232421875,
0.564453125,
-0.08056640625,
-0.050506591796875,
-0.1934814453125,
0.525390625,
0.263916015625,
0.69091796875,
-0.26220703125,
-0.6435546875,
0.442626953125,
1.05859375,
-0.1737060546875,
0.5615234375,
0.2437744140625,
0.763671875,
0.96533203125,
0.86767578125,
0.7041015625,
0.27099609375,
0.6259765625,
0.85986328125,
-0.04437255859375,
0.367919921875,
0.321533203125,
0.485107421875,
0.417236328125,
0.5361328125,
0.388916015625,
0.44482421875,
0.025482177734375,
-0.288330078125,
-0.16015625,
0.00827789306640625,
-0.55224609375,
0.75537109375,
-0.10418701171875,
0.5595703125,
0.08306884765625,
-0.1964111328125,
0.400390625,
0.9697265625,
-1.279296875,
-0.63916015625,
-0.1343994140625,
0.056854248046875,
0.071044921875,
-0.04052734375,
0.6845703125,
0.475830078125,
0.68017578125,
0.59765625,
-0.21923828125,
-0.2342529296875,
-0.5712890625,
-0.83984375,
-0.978515625,
-0.2320556640625,
-0.8671875,
-0.1990966796875,
-0.052703857421875,
-0.93701171875,
0.12457275390625,
-0.53759765625,
-0.09576416015625,
0.224609375,
-0.443603515625,
1.025390625,
-0.13330078125,
0.31298828125,
-0.5654296875,
0.409423828125,
0.130615234375,
1.0947265625,
-0.8076171875,
0.01959228515625,
-0.2176513671875,
-0.5615234375,
-0.08245849609375,
0.395751953125,
0.55224609375,
0.2161865234375,
-0.5546875,
-0.7373046875,
-0.475830078125,
0.1302490234375,
-0.36572265625,
0.12744140625,
-0.6435546875,
0.69677734375,
0.402587890625,
-0.76123046875,
0.6181640625,
1.0615234375,
-0.9833984375,
0.62451171875,
0.333740234375,
-0.356689453125,
-0.7138671875,
1.0458984375,
0.5205078125,
0.59375,
-0.33154296875,
-0.8505859375,
-0.375732421875,
0.08367919921875,
0.12176513671875,
-0.76025390625,
-0.463623046875,
0.70703125,
-0.116455078125,
-0.85595703125,
0.51611328125,
-1.0810546875,
-0.43896484375,
-0.75390625,
-0.41796875,
1.0859375,
0.79833984375,
0.26806640625,
0.1409912109375,
0.08514404296875,
-0.06378173828125,
0.732421875,
0.53515625,
-0.80322265625,
0.329833984375,
1.1181640625,
0.0128936767578125,
0.2183837890625,
0.2125244140625,
-0.45703125,
-0.2183837890625,
0.01776123046875,
-0.060791015625,
0.57763671875,
-0.008544921875,
0.5400390625,
0.440673828125,
0.61474609375,
-0.83447265625,
-0.0157928466796875,
-0.223876953125,
0.81005859375,
0.36572265625,
0.6953125,
0.2496337890625,
-0.0635986328125,
-0.52978515625,
-1.1640625,
0.10614013671875,
0.1729736328125,
0.57177734375,
-0.51953125,
0.9482421875,
0.1387939453125,
-0.72802734375,
0.478759765625,
-0.70361328125,
0.33056640625,
1.078125,
0.41796875,
0.82421875,
-0.7705078125,
0.341064453125,
-0.065673828125,
-0.09552001953125,
0.453857421875,
0.6953125,
0.56787109375,
-0.36962890625,
-0.5546875,
-0.4013671875,
0.035888671875,
-0.197998046875,
-0.3173828125,
0.392578125,
-0.432861328125,
-0.271484375,
-1.0380859375,
0.65234375,
0.71484375,
0.75146484375,
0.147216796875,
0.315185546875,
0.0836181640625,
0.10076904296875,
0.6083984375,
-0.125,
0.2587890625,
-0.5791015625,
0.8994140625,
0.209716796875,
-0.216552734375,
-0.479248046875,
-0.54736328125,
-0.2073974609375,
0.1448974609375,
-0.438720703125,
-0.04473876953125,
-1.1748046875,
0.2020263671875,
-0.40966796875,
0.548828125,
-0.89599609375,
-0.2012939453125,
-0.42333984375,
0.09698486328125,
0.0709228515625,
-1.0927734375,
0.63671875,
-1.068359375,
0.62939453125,
0.42431640625,
-0.07647705078125,
-0.2069091796875,
-0.259765625,
-0.89404296875,
-0.59765625,
-0.156005859375,
0.69482421875,
-0.042144775390625,
0.43310546875,
-1.43359375,
0.57080078125,
0.396728515625,
-0.50341796875,
0.31005859375,
-0.4345703125,
0.59130859375,
-0.0833740234375,
0.66552734375,
-0.360107421875,
-0.6474609375,
0.019439697265625,
-1.314453125,
0.75146484375,
-0.46484375,
0.94384765625,
0.2900390625,
-0.1920166015625,
0.339599609375,
0.1688232421875,
-0.0985107421875,
0.2333984375,
-0.29443359375,
0.484130859375,
-0.9736328125,
-1.0908203125,
0.6376953125,
-0.2322998046875,
-0.403564453125,
0.7568359375,
-0.138916015625,
-0.666015625,
-0.281005859375,
0.475341796875,
-0.49267578125,
0.37060546875,
-0.260498046875,
0.68408203125,
-0.23828125,
-0.81201171875,
-0.1995849609375,
-0.70556640625,
0.81103515625,
-0.29248046875,
-0.666015625,
-0.10498046875,
-1.251953125,
-0.16796875,
0.1021728515625,
-0.341552734375,
0.2022705078125,
0.43994140625,
-0.12744140625,
-0.316650390625,
-0.2431640625,
-0.5546875,
-0.373046875,
-0.583984375,
-0.333984375,
0.099609375,
0.51611328125,
0.92578125,
-0.0823974609375,
-0.296875,
-0.1595458984375,
-0.029388427734375,
0.0185089111328125,
-0.65771484375,
-0.48046875,
-0.2171630859375,
-0.369140625,
-0.349853515625,
0.49560546875,
-0.034698486328125,
0.54541015625,
0.75732421875,
0.0193328857421875,
0.349853515625,
0.5439453125,
-0.69140625,
1.38671875,
0.04754638671875,
-1.1357421875,
-0.73486328125,
0.591796875,
0.06732177734375,
0.60107421875,
0.302490234375,
-0.9208984375,
-0.66943359375,
-1.1533203125,
0.4599609375,
-0.83642578125,
-0.456298828125,
-1.240234375,
-0.78076171875,
-0.58447265625,
0.290771484375,
0.277099609375,
-0.54443359375,
0.437255859375,
-0.8896484375,
0.22705078125,
-0.9033203125,
-0.01467132568359375,
-0.6904296875,
-0.45654296875,
0.017364501953125,
1.033203125,
0.119384765625,
0.268310546875,
0.0623779296875,
-0.3564453125,
0.3564453125,
-0.087890625,
-0.84619140625,
-0.39892578125,
-0.277587890625,
0.0904541015625,
-0.1375732421875,
-0.201904296875,
-0.66455078125,
0.89453125,
-0.62353515625,
0.55859375,
0.304443359375,
-0.34521484375,
-0.2281494140625,
-0.347900390625,
0.998046875,
-0.464111328125,
0.1953125,
-0.0684814453125,
0.397705078125,
0.6953125,
-0.395751953125,
-0.399169921875,
-0.56787109375,
-0.5859375,
-1.0537109375,
0.380126953125,
-0.3681640625,
0.1710205078125,
-0.7890625,
-0.2412109375,
1.232421875,
-0.71923828125,
0.438720703125,
1.1083984375,
0.0902099609375,
0.310546875,
-0.444091796875,
0.67138671875,
0.491455078125,
-0.350341796875,
0.1297607421875,
-0.047271728515625,
-0.49755859375,
-0.006557464599609375,
-0.318359375,
-0.93115234375,
-0.70703125,
0.291748046875,
1.2880859375,
-0.35107421875,
0.73388671875,
-0.1383056640625,
-1.2060546875,
-0.46142578125,
0.6435546875,
0.1568603515625,
0.180419921875,
0.5048828125,
-0.203857421875,
-0.048675537109375,
0.1949462890625,
-0.4150390625,
-0.432861328125,
-0.642578125,
1.2763671875,
-0.74072265625,
-0.73779296875,
1.1455078125,
0.916015625,
-1.24609375,
-0.97607421875,
0.1832275390625,
0.011505126953125,
-0.12548828125,
-0.6025390625,
-0.0146026611328125,
0.489990234375,
-0.6259765625,
0.0200042724609375,
0.09259033203125,
-0.0687255859375,
0.3701171875,
-0.053680419921875,
0.5361328125,
-0.353271484375,
0.5732421875,
0.68994140625,
-0.548828125,
-0.3173828125,
-0.91357421875,
-0.2408447265625,
-0.309326171875,
0.1407470703125,
0.79345703125,
-0.021728515625,
0.38037109375,
0.64892578125,
-0.0809326171875,
0.802734375,
-0.61767578125,
-0.2100830078125,
0.184814453125,
-0.5751953125,
-0.525390625,
-0.0270233154296875,
0.2890625,
0.0479736328125,
0.544921875,
-0.371826171875,
-0.01316070556640625,
0.21484375,
0.56201171875,
-0.19482421875,
-0.70263671875,
-0.2305908203125,
-1.296875,
-0.481689453125,
-0.640625,
-0.98779296875,
-0.1124267578125,
0.5439453125,
0.2154541015625,
-0.58203125,
0.09686279296875,
0.469970703125,
-0.64794921875,
0.65625,
-0.42822265625,
0.168212890625,
-0.28955078125,
-0.479248046875,
-1.119140625,
-0.0438232421875,
-0.55615234375,
-0.437255859375,
-0.78515625,
0.6640625,
-0.1363525390625,
0.37939453125,
-0.209716796875,
1.0390625,
-0.056671142578125,
-0.576171875,
0.487548828125,
0.043975830078125,
-0.261962890625,
1.2001953125,
0.2281494140625,
0.1070556640625,
0.035675048828125,
-0.356201171875,
-0.244384765625,
-0.314697265625,
0.83984375,
0.403564453125,
-0.434326171875,
-0.07720947265625,
-0.0494384765625,
0.28173828125,
-0.80126953125,
0.348388671875,
-0.3330078125,
0.11492919921875,
-0.150146484375,
-0.049468994140625,
0.40966796875,
1.330078125,
-0.403076171875,
0.0292510986328125,
0.1588134765625,
0.18896484375,
0.2105712890625,
0.3310546875,
0.05706787109375,
0.6171875,
-0.287353515625,
-0.417236328125,
-0.08148193359375,
0.380615234375,
0.207275390625,
0.2890625,
-0.48974609375,
-0.87890625,
-0.70556640625,
-0.08819580078125,
0.0211944580078125,
0.55908203125,
0.419677734375,
-0.513671875,
-0.0225067138671875,
0.09466552734375,
-0.7705078125,
0.07720947265625,
-1.056640625,
-1.0537109375,
0.56591796875,
-0.1539306640625,
-0.68701171875,
0.03961181640625,
-0.36083984375,
0.0278167724609375,
0.17236328125,
0.365478515625,
-0.486083984375,
0.297119140625,
0.0865478515625,
0.441162109375,
0.0186309814453125,
-0.1845703125,
0.179931640625,
0.640625,
-0.81005859375,
-0.64892578125,
0.1798095703125,
0.9970703125,
0.1837158203125,
-0.55126953125,
-0.125732421875,
0.377197265625,
-0.1734619140625,
0.10302734375,
-0.5107421875,
0.1746826171875,
0.0274658203125,
0.955078125,
-0.93896484375,
0.07623291015625,
-0.11700439453125,
0.25048828125,
-0.150390625,
-0.60546875,
-0.62646484375,
0.99951171875,
0.6748046875,
-0.0262603759765625,
0.51904296875,
0.10345458984375,
0.417236328125,
0.166259765625,
0.01016998291015625,
0.1610107421875,
0.64404296875,
0.8271484375,
0.744140625,
-0.26123046875,
0.51904296875,
0.833984375,
-0.1898193359375,
-0.248046875,
0.346923828125,
0.2308349609375,
0.020050048828125,
-0.07318115234375,
-0.2890625,
-0.370361328125,
-0.181396484375,
-0.681640625,
0.63330078125,
-0.1353759765625,
0.260986328125,
-0.344970703125,
-0.73046875,
0.7236328125,
-0.2366943359375,
-0.1119384765625,
0.30859375,
-0.80517578125,
0.52978515625,
0.63720703125,
-0.2958984375,
-0.35888671875,
0.58251953125,
0.79296875,
0.56884765625,
0.64892578125,
0.147216796875,
0.26953125,
-0.5966796875,
0.1156005859375,
-0.1539306640625,
-0.042022705078125,
-0.1605224609375,
-0.5458984375,
-1.330078125,
0.69384765625,
-0.52734375,
-0.33447265625,
0.65625,
-0.73046875,
0.170166015625,
-0.293701171875,
0.91064453125,
-0.578125,
0.16552734375,
0.56005859375,
-0.4541015625,
-0.91552734375,
1.052734375,
-0.0506591796875,
0.12890625,
-0.063232421875,
1.392578125,
-0.00952911376953125,
1.4736328125,
0.55078125,
-0.25341796875,
0.2083740234375,
0.56103515625,
-0.242919921875,
-0.673828125,
-0.30712890625,
-0.56103515625,
-0.357666015625,
-0.8388671875,
-0.64990234375,
0.041229248046875,
0.387451171875,
0.11541748046875,
-0.74267578125,
-0.36474609375,
0.130126953125,
-0.8173828125,
0.66162109375,
0.19873046875,
0.39453125,
0.2117919921875,
-0.169677734375,
0.058685302734375,
-0.417724609375,
0.19921875,
-0.4775390625,
0.55419921875,
-0.92724609375,
-0.359375,
-0.60546875,
-0.5556640625,
-0.222412109375,
0.0572509765625,
-0.404541015625,
-0.74609375,
0.312744140625,
0.44287109375,
0.2301025390625,
0.294921875,
-0.25927734375,
0.2451171875,
1.029296875,
1.03515625,
0.041900634765625,
0.97607421875,
0.3447265625,
-0.036346435546875,
-0.1346435546875,
-0.228759765625,
0.363525390625,
0.0655517578125,
0.333740234375,
-0.38232421875,
0.1646728515625,
-0.5908203125,
-1.4228515625,
0.33154296875,
0.291015625,
-0.0357666015625,
-0.5947265625,
-1.2734375,
-0.4111328125,
-1.27734375,
-0.2626953125,
-0.93115234375,
0.89990234375,
-0.419189453125,
-0.10992431640625,
0.10797119140625,
-1.091796875,
4.22265625,
1.0673828125,
0.79345703125,
0.529296875,
0.276611328125,
0.85498046875,
0.1197509765625,
-0.77783203125,
-0.058929443359375,
-0.54345703125,
0.58154296875,
-0.70556640625,
0.07183837890625,
0.7890625,
0.315673828125,
0.60791015625,
-0.43701171875,
0.2080078125,
-0.01477813720703125,
-1.091796875,
-1.076171875,
0.204345703125,
0.0633544921875,
0.360107421875,
0.0908203125,
0.249755859375,
0.92138671875,
-0.9951171875,
0.0802001953125,
-0.71337890625,
0.1495361328125,
-0.386962890625,
1.1064453125,
0.1383056640625,
0.124267578125,
0.67236328125,
-0.09600830078125,
-0.464111328125,
0.020904541015625,
0.1484375,
-0.294921875,
-0.2301025390625,
0.603515625,
-0.7744140625,
-0.05072021484375,
0.71826171875,
-0.5927734375,
0.488037109375,
0.070556640625,
-1.162109375,
1.0068359375,
-0.2890625,
0.276123046875,
-0.568359375,
-0.2418212890625,
0.0535888671875,
0.5078125,
-0.1490478515625,
-0.260009765625,
0.64794921875,
0.49267578125,
0.54541015625,
0.01263427734375,
0.6552734375,
-1.03515625,
0.05987548828125,
-0.0140533447265625,
0.479736328125,
-0.481201171875,
0.026123046875,
-0.61279296875,
-0.51708984375,
-0.30712890625,
-0.52880859375,
0.57666015625,
0.0011930465698242188,
-0.19921875,
0.1990966796875,
0.642578125,
-0.64453125,
0.298583984375,
-0.0863037109375,
-0.1470947265625,
-0.6611328125,
0.87158203125,
1.1787109375,
-0.492431640625,
-0.51416015625,
-0.461181640625,
0.55712890625,
0.61865234375,
0.64697265625,
0.006134033203125,
-0.798828125,
-0.2685546875
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
We have a string of letters 'a' and 'b'. We want to perform some operations on it. On each step we choose one of substrings "ab" in the string and replace it with the string "bba". If we have no "ab" as a substring, our job is done. Print the minimum number of steps we should perform to make our job done modulo 109 + 7.
The string "ab" appears as a substring if there is a letter 'b' right after the letter 'a' somewhere in the string.
Input
The first line contains the initial string consisting of letters 'a' and 'b' only with length from 1 to 106.
Output
Print the minimum number of steps modulo 109 + 7.
Examples
Input
ab
Output
1
Input
aab
Output
3
Note
The first example: "ab" → "bba".
The second example: "aab" → "abba" → "bbaba" → "bbbbaa".
Submitted Solution:
```
s=input()
ans=0
j=0
for i in range(0,len(s)):
if i>=j:
cnt1=0
while i<len(s) and s[i]=='a':
cnt1=cnt1+1
i=i+1
cnt2=0
while i<len(s) and s[i]=='b':
cnt2=cnt2+1
i=i+1
j=i;
if cnt1>0 and cnt2>0:
ans=ans + cnt2
bb= cnt2*2
cnt1=cnt1-1
ans = ans + bb*(pow(2,cnt1,1000000007)-1)
#print(ans)
print(ans%1000000007)
```
No
| 10,474 | [
0.47998046875,
-0.1317138671875,
-0.010833740234375,
0.07525634765625,
-0.77099609375,
-0.35302734375,
-0.06573486328125,
-0.1522216796875,
0.2095947265625,
0.91064453125,
0.5693359375,
-0.33984375,
-0.3173828125,
-1.10546875,
-0.43017578125,
-0.08056640625,
-0.53564453125,
-0.70654296875,
-0.3388671875,
-0.361328125,
0.06787109375,
-0.36572265625,
-1.2158203125,
-0.0277099609375,
-0.200927734375,
0.8916015625,
0.6279296875,
-0.043365478515625,
0.966796875,
1.1337890625,
-0.25927734375,
-0.31005859375,
0.501953125,
-0.7998046875,
-0.262939453125,
-0.60205078125,
0.5087890625,
-0.875,
-0.204833984375,
-0.364013671875,
0.1590576171875,
-0.489990234375,
0.439697265625,
-0.56591796875,
-1.642578125,
-0.148193359375,
0.042205810546875,
-0.3828125,
0.07708740234375,
-0.470947265625,
-0.200927734375,
-0.30517578125,
0.404052734375,
-0.17333984375,
0.167236328125,
0.354736328125,
0.32275390625,
-0.305419921875,
-1.0146484375,
0.10809326171875,
0.4833984375,
0.1239013671875,
0.07525634765625,
-0.888671875,
-0.05670166015625,
0.2744140625,
-0.301513671875,
0.08489990234375,
-0.10455322265625,
-0.6015625,
-0.08843994140625,
0.10626220703125,
-0.470947265625,
-0.5673828125,
-0.287353515625,
0.1942138671875,
0.436767578125,
-0.06304931640625,
-0.90234375,
1.080078125,
-0.403076171875,
0.83935546875,
0.2529296875,
0.276611328125,
-0.38916015625,
-0.71337890625,
0.195556640625,
0.222900390625,
0.0181732177734375,
-0.0699462890625,
-0.35986328125,
0.473388671875,
-0.432373046875,
-0.263671875,
0.480712890625,
0.52294921875,
-0.5341796875,
0.08685302734375,
0.51123046875,
0.33349609375,
0.953125,
0.94384765625,
-0.501953125,
0.94873046875,
-0.422119140625,
0.002552032470703125,
0.03521728515625,
-0.26416015625,
-0.385498046875,
-0.1634521484375,
-0.0982666015625,
-0.115966796875,
0.485107421875,
0.36181640625,
-0.62060546875,
0.96826171875,
0.375,
0.54248046875,
-0.4970703125,
0.55615234375,
0.336669921875,
-0.0018415451049804688,
0.8115234375,
-0.2041015625,
-0.095458984375,
-0.071044921875,
-0.80712890625,
1.1455078125,
-0.71826171875,
-0.314453125,
0.3818359375,
0.1456298828125,
-0.13037109375,
0.290771484375,
-0.5947265625,
0.603515625,
-0.0167236328125,
0.2032470703125,
0.7548828125,
-0.5302734375,
0.72412109375,
-0.1802978515625,
-0.006198883056640625,
1.8486328125,
0.16552734375,
-0.167236328125,
0.56982421875,
0.4013671875,
-0.771484375,
0.322998046875,
-1.123046875,
0.82080078125,
0.19140625,
0.1259765625,
-0.31787109375,
0.08282470703125,
-0.301513671875,
0.3271484375,
0.1343994140625,
-0.2568359375,
-0.398681640625,
0.11370849609375,
-0.5029296875,
0.91064453125,
-0.45263671875,
0.57861328125,
-0.224365234375,
-0.06878662109375,
0.01265716552734375,
-0.409423828125,
0.0848388671875,
-0.29931640625,
0.01763916015625,
1.0126953125,
0.46728515625,
1.029296875,
1.0986328125,
-0.2034912109375,
0.50439453125,
0.380615234375,
-0.326416015625,
0.2061767578125,
0.2724609375,
0.93701171875,
0.4267578125,
0.560546875,
-0.3330078125,
-0.05548095703125,
-0.334716796875,
-0.374755859375,
0.341796875,
0.568359375,
-0.8232421875,
0.468994140625,
-0.2880859375,
-0.11419677734375,
-0.84912109375,
-0.306640625,
0.061798095703125,
-1.0244140625,
-0.232666015625,
0.552734375,
0.015167236328125,
0.431396484375,
-0.62109375,
-0.491943359375,
0.42236328125,
1.2294921875,
-0.2484130859375,
0.338134765625,
0.450927734375,
-0.08038330078125,
-0.06817626953125,
0.314453125,
0.1126708984375,
-0.2890625,
-0.5703125,
0.556640625,
0.03643798828125,
-0.150634765625,
-0.231201171875,
0.62646484375,
0.29541015625,
0.7373046875,
-0.19189453125,
-0.6669921875,
0.53759765625,
1.162109375,
-0.18212890625,
0.65234375,
0.346435546875,
0.8642578125,
0.93017578125,
1.0048828125,
0.7421875,
0.303955078125,
0.6552734375,
0.8818359375,
-0.10894775390625,
0.2666015625,
0.26904296875,
0.482421875,
0.385986328125,
0.5380859375,
0.5302734375,
0.434326171875,
0.14013671875,
-0.284423828125,
-0.133544921875,
-0.0498046875,
-0.5029296875,
0.8125,
0.0248260498046875,
0.6201171875,
0.050201416015625,
-0.1712646484375,
0.52783203125,
1.009765625,
-1.248046875,
-0.73095703125,
-0.06402587890625,
0.0130157470703125,
0.053375244140625,
0.0185394287109375,
0.6865234375,
0.5263671875,
0.74462890625,
0.6337890625,
-0.230712890625,
-0.25537109375,
-0.55322265625,
-0.8251953125,
-1.0302734375,
-0.32763671875,
-0.9208984375,
-0.2091064453125,
-0.08795166015625,
-1.0185546875,
0.10955810546875,
-0.5654296875,
-0.1859130859375,
0.110107421875,
-0.451171875,
1.0205078125,
-0.0736083984375,
0.189208984375,
-0.6572265625,
0.50390625,
-0.027557373046875,
1.1435546875,
-0.779296875,
0.077880859375,
-0.251953125,
-0.73681640625,
-0.0701904296875,
0.2073974609375,
0.46826171875,
0.1492919921875,
-0.64404296875,
-0.67919921875,
-0.50537109375,
0.205810546875,
-0.3349609375,
0.259765625,
-0.61083984375,
0.71484375,
0.27197265625,
-0.65087890625,
0.52783203125,
1.0634765625,
-0.98974609375,
0.62841796875,
0.322998046875,
-0.1536865234375,
-0.740234375,
1.125,
0.63232421875,
0.63720703125,
-0.3994140625,
-0.78125,
-0.431640625,
-0.01036834716796875,
0.1622314453125,
-0.74267578125,
-0.41259765625,
0.69580078125,
0.0021076202392578125,
-0.97802734375,
0.4658203125,
-1.0595703125,
-0.43896484375,
-0.5634765625,
-0.58447265625,
1.01953125,
0.83056640625,
0.239990234375,
0.145751953125,
0.0389404296875,
-0.099609375,
0.64794921875,
0.61474609375,
-0.85205078125,
0.352294921875,
1.0458984375,
0.021759033203125,
0.168212890625,
0.22509765625,
-0.45751953125,
-0.29296875,
0.1458740234375,
-0.08465576171875,
0.69287109375,
0.006679534912109375,
0.449951171875,
0.40966796875,
0.58642578125,
-0.865234375,
0.09075927734375,
-0.324462890625,
0.86279296875,
0.427001953125,
0.72412109375,
0.382568359375,
-0.08551025390625,
-0.65771484375,
-1.06640625,
0.03271484375,
0.03265380859375,
0.6025390625,
-0.414794921875,
0.9931640625,
0.144775390625,
-0.67919921875,
0.50390625,
-0.69580078125,
0.41357421875,
1.078125,
0.3232421875,
0.84521484375,
-0.87646484375,
0.365966796875,
0.1212158203125,
-0.0030517578125,
0.56640625,
0.6435546875,
0.40087890625,
-0.580078125,
-0.6962890625,
-0.35791015625,
-0.044586181640625,
-0.1849365234375,
-0.398681640625,
0.163818359375,
-0.343505859375,
-0.2135009765625,
-0.90576171875,
0.6669921875,
0.66357421875,
0.7724609375,
0.20458984375,
0.257080078125,
0.21533203125,
0.2301025390625,
0.65966796875,
0.0295867919921875,
0.2010498046875,
-0.59033203125,
0.95263671875,
0.3828125,
-0.335693359375,
-0.486083984375,
-0.397216796875,
-0.0306243896484375,
0.10845947265625,
-0.544921875,
-0.02093505859375,
-1.080078125,
0.245849609375,
-0.3623046875,
0.64208984375,
-0.9208984375,
-0.1260986328125,
-0.369873046875,
0.319091796875,
0.252197265625,
-1.060546875,
0.5703125,
-1.0029296875,
0.705078125,
0.58154296875,
-0.139892578125,
-0.08367919921875,
-0.303955078125,
-0.8994140625,
-0.7412109375,
-0.2039794921875,
0.65234375,
-0.0733642578125,
0.462646484375,
-1.3134765625,
0.5849609375,
0.365478515625,
-0.62841796875,
0.1837158203125,
-0.3623046875,
0.611328125,
-0.1619873046875,
0.5888671875,
-0.41015625,
-0.66162109375,
0.162109375,
-1.39453125,
0.60205078125,
-0.489013671875,
0.79296875,
0.286865234375,
-0.2232666015625,
0.277099609375,
0.1751708984375,
-0.1358642578125,
0.099609375,
-0.291748046875,
0.521484375,
-0.98193359375,
-0.966796875,
0.5546875,
-0.145263671875,
-0.3330078125,
0.732421875,
-0.02850341796875,
-0.54833984375,
-0.158203125,
0.492919921875,
-0.5126953125,
0.386962890625,
-0.2376708984375,
0.6123046875,
-0.353759765625,
-0.7744140625,
-0.264404296875,
-0.66455078125,
0.8779296875,
-0.4248046875,
-0.6572265625,
-0.1370849609375,
-1.353515625,
-0.31787109375,
-0.0027027130126953125,
-0.341064453125,
0.306396484375,
0.42919921875,
-0.08038330078125,
-0.259033203125,
-0.0908203125,
-0.53466796875,
-0.424072265625,
-0.77392578125,
-0.260009765625,
0.05914306640625,
0.480712890625,
1.103515625,
-0.1043701171875,
-0.28857421875,
-0.03485107421875,
-0.060455322265625,
0.053863525390625,
-0.56103515625,
-0.285400390625,
-0.1531982421875,
-0.427978515625,
-0.302734375,
0.3759765625,
0.0031299591064453125,
0.5078125,
0.76953125,
-0.018402099609375,
0.234130859375,
0.406005859375,
-0.72119140625,
1.521484375,
0.0689697265625,
-1.02734375,
-0.72412109375,
0.6640625,
0.1524658203125,
0.72021484375,
0.2978515625,
-1.0703125,
-0.66162109375,
-0.9462890625,
0.41796875,
-0.88525390625,
-0.42236328125,
-1.12890625,
-0.76513671875,
-0.658203125,
0.29931640625,
0.1649169921875,
-0.5244140625,
0.52197265625,
-0.8671875,
0.2802734375,
-1.0087890625,
0.0648193359375,
-0.69140625,
-0.63525390625,
-0.08746337890625,
0.97021484375,
0.010223388671875,
0.28173828125,
0.053192138671875,
-0.34423828125,
0.3984375,
-0.1324462890625,
-0.73828125,
-0.286376953125,
-0.1619873046875,
0.306884765625,
-0.292236328125,
-0.1676025390625,
-0.5478515625,
0.90380859375,
-0.55908203125,
0.466064453125,
0.20947265625,
-0.33203125,
-0.12078857421875,
-0.273681640625,
0.99853515625,
-0.48193359375,
0.179443359375,
-0.01271820068359375,
0.27734375,
0.6826171875,
-0.62451171875,
-0.48876953125,
-0.62890625,
-0.6044921875,
-1.0810546875,
0.51708984375,
-0.2337646484375,
0.12109375,
-0.79736328125,
-0.1539306640625,
1.1064453125,
-0.7470703125,
0.432861328125,
0.91650390625,
0.01239013671875,
0.286376953125,
-0.37353515625,
0.78759765625,
0.483642578125,
-0.302734375,
-0.005573272705078125,
-0.10650634765625,
-0.5185546875,
-0.0157318115234375,
-0.458251953125,
-0.94580078125,
-0.6640625,
0.291748046875,
1.2939453125,
-0.251953125,
0.7548828125,
-0.1455078125,
-1.1962890625,
-0.505859375,
0.61572265625,
0.06964111328125,
0.1329345703125,
0.67236328125,
-0.040802001953125,
-0.04705810546875,
0.0110626220703125,
-0.439453125,
-0.66796875,
-0.7314453125,
1.310546875,
-0.73388671875,
-0.60205078125,
0.97998046875,
0.89013671875,
-1.1494140625,
-0.9970703125,
0.129150390625,
0.07794189453125,
-0.22216796875,
-0.64599609375,
0.0733642578125,
0.60205078125,
-0.5751953125,
0.06805419921875,
0.1663818359375,
-0.0157928466796875,
0.253173828125,
-0.052520751953125,
0.56103515625,
-0.39599609375,
0.46826171875,
0.7177734375,
-0.465576171875,
-0.344970703125,
-0.93115234375,
-0.1796875,
-0.3125,
0.0706787109375,
0.80419921875,
-0.0216522216796875,
0.340576171875,
0.7578125,
-0.0985107421875,
0.798828125,
-0.490478515625,
-0.174560546875,
0.341796875,
-0.391357421875,
-0.4365234375,
0.08563232421875,
0.358642578125,
-0.045318603515625,
0.488037109375,
-0.5869140625,
-0.046630859375,
0.288330078125,
0.66845703125,
-0.28173828125,
-0.65869140625,
-0.31298828125,
-1.3349609375,
-0.578125,
-0.53564453125,
-0.9208984375,
-0.184326171875,
0.62744140625,
0.07586669921875,
-0.4609375,
-0.0433349609375,
0.48095703125,
-0.66845703125,
0.5634765625,
-0.429443359375,
0.254638671875,
-0.4228515625,
-0.54150390625,
-0.96044921875,
-0.2095947265625,
-0.66357421875,
-0.54833984375,
-0.57421875,
0.703125,
0.07867431640625,
0.239501953125,
-0.391845703125,
0.86474609375,
-0.1597900390625,
-0.6826171875,
0.366943359375,
0.123291015625,
-0.110107421875,
1.3916015625,
0.302490234375,
0.25439453125,
0.0199432373046875,
-0.33740234375,
-0.15576171875,
-0.322265625,
0.908203125,
0.3330078125,
-0.403076171875,
-0.2042236328125,
-0.004245758056640625,
0.2178955078125,
-0.7314453125,
0.2900390625,
-0.277099609375,
0.2010498046875,
-0.08929443359375,
-0.056243896484375,
0.270263671875,
1.240234375,
-0.433837890625,
0.0914306640625,
0.0760498046875,
0.233642578125,
0.30322265625,
0.322509765625,
0.05621337890625,
0.5595703125,
-0.15576171875,
-0.486083984375,
-0.1751708984375,
0.4521484375,
0.017974853515625,
0.2154541015625,
-0.486572265625,
-0.95263671875,
-0.6884765625,
-0.268798828125,
-0.07281494140625,
0.477294921875,
0.58935546875,
-0.53466796875,
0.041534423828125,
0.238525390625,
-0.70458984375,
0.09716796875,
-1.125,
-1.0771484375,
0.552734375,
-0.1575927734375,
-0.6259765625,
-0.033782958984375,
-0.3515625,
-0.11505126953125,
-0.06134033203125,
0.5205078125,
-0.47265625,
0.22998046875,
0.1722412109375,
0.59619140625,
-0.1187744140625,
-0.3037109375,
0.12548828125,
0.58447265625,
-0.8291015625,
-0.7109375,
0.055023193359375,
0.93310546875,
0.1456298828125,
-0.5576171875,
-0.236572265625,
0.353759765625,
-0.0711669921875,
0.1881103515625,
-0.541015625,
0.02471923828125,
0.06842041015625,
0.94482421875,
-0.8046875,
-0.0066680908203125,
-0.19775390625,
0.2100830078125,
-0.0755615234375,
-0.71728515625,
-0.72412109375,
1.0810546875,
0.650390625,
-0.2376708984375,
0.6044921875,
0.045867919921875,
0.42578125,
0.06976318359375,
0.084228515625,
0.1829833984375,
0.50390625,
0.85107421875,
0.70849609375,
-0.0863037109375,
0.39013671875,
0.9052734375,
-0.300048828125,
-0.291748046875,
0.447021484375,
0.2354736328125,
-0.0220947265625,
-0.07305908203125,
-0.274658203125,
-0.4501953125,
-0.166015625,
-0.6875,
0.70263671875,
-0.269287109375,
0.294677734375,
-0.1636962890625,
-0.6953125,
0.85888671875,
-0.378173828125,
-0.1923828125,
0.29833984375,
-0.763671875,
0.48388671875,
0.484130859375,
-0.30859375,
-0.378662109375,
0.6376953125,
0.74462890625,
0.72607421875,
0.79638671875,
0.23291015625,
0.34228515625,
-0.60302734375,
0.10693359375,
-0.035247802734375,
-0.09619140625,
-0.1328125,
-0.67041015625,
-1.3349609375,
0.64453125,
-0.57421875,
-0.39404296875,
0.64697265625,
-0.70849609375,
0.305908203125,
-0.274169921875,
0.935546875,
-0.53662109375,
0.2041015625,
0.5,
-0.384765625,
-0.90087890625,
1.064453125,
-0.16552734375,
0.2413330078125,
-0.08819580078125,
1.2646484375,
-0.0181121826171875,
1.51953125,
0.654296875,
-0.2459716796875,
0.271728515625,
0.461181640625,
-0.37255859375,
-0.49951171875,
-0.357177734375,
-0.51171875,
-0.304931640625,
-0.61865234375,
-0.5986328125,
0.0880126953125,
0.44189453125,
0.0129241943359375,
-0.703125,
-0.272705078125,
0.2073974609375,
-0.67724609375,
0.62158203125,
0.1866455078125,
0.319580078125,
0.271728515625,
-0.1817626953125,
-0.0931396484375,
-0.284912109375,
0.2333984375,
-0.396728515625,
0.5,
-1.0048828125,
-0.297607421875,
-0.7685546875,
-0.6884765625,
-0.2548828125,
-0.03692626953125,
-0.369384765625,
-0.83203125,
0.2327880859375,
0.472412109375,
0.148681640625,
0.45361328125,
-0.40771484375,
0.1439208984375,
1.017578125,
1.0537109375,
-0.03729248046875,
0.86572265625,
0.4267578125,
0.0648193359375,
-0.1724853515625,
-0.205078125,
0.475341796875,
-0.0081329345703125,
0.505859375,
-0.382568359375,
0.32373046875,
-0.6328125,
-1.3271484375,
0.2734375,
0.430908203125,
0.07025146484375,
-0.8583984375,
-1.2763671875,
-0.5546875,
-1.1416015625,
-0.11285400390625,
-0.89794921875,
1.0830078125,
-0.454833984375,
-0.12213134765625,
-0.08831787109375,
-1.16796875,
4.19921875,
0.8994140625,
0.65869140625,
0.58740234375,
0.316650390625,
0.79443359375,
0.041290283203125,
-0.60498046875,
-0.0138702392578125,
-0.373291015625,
0.67138671875,
-0.5,
-0.108642578125,
0.92333984375,
0.325439453125,
0.54638671875,
-0.491455078125,
0.039642333984375,
0.03717041015625,
-1.0478515625,
-0.93798828125,
0.351806640625,
0.011962890625,
0.44921875,
0.12347412109375,
0.21044921875,
0.8271484375,
-0.97314453125,
0.14794921875,
-0.5908203125,
0.2191162109375,
-0.387451171875,
1.126953125,
0.29443359375,
0.1148681640625,
0.44775390625,
0.0133209228515625,
-0.322509765625,
0.00922393798828125,
0.1588134765625,
-0.332275390625,
-0.17724609375,
0.478759765625,
-0.81640625,
-0.1771240234375,
0.70068359375,
-0.69677734375,
0.68212890625,
0.05133056640625,
-1.1533203125,
0.9794921875,
-0.176513671875,
0.325927734375,
-0.6806640625,
-0.2423095703125,
0.0859375,
0.341552734375,
-0.1324462890625,
-0.158935546875,
0.568359375,
0.366455078125,
0.50830078125,
0.032623291015625,
0.61474609375,
-1.1396484375,
0.055908203125,
-0.007595062255859375,
0.4892578125,
-0.46728515625,
-0.01094818115234375,
-0.5673828125,
-0.50732421875,
-0.327880859375,
-0.6015625,
0.65771484375,
0.161865234375,
-0.07464599609375,
0.359619140625,
0.5048828125,
-0.66357421875,
0.1541748046875,
-0.239990234375,
-0.1593017578125,
-0.7685546875,
0.95166015625,
1.330078125,
-0.497314453125,
-0.359375,
-0.379150390625,
0.501953125,
0.6767578125,
0.7109375,
-0.0665283203125,
-0.83984375,
-0.24755859375
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
We have a string of letters 'a' and 'b'. We want to perform some operations on it. On each step we choose one of substrings "ab" in the string and replace it with the string "bba". If we have no "ab" as a substring, our job is done. Print the minimum number of steps we should perform to make our job done modulo 109 + 7.
The string "ab" appears as a substring if there is a letter 'b' right after the letter 'a' somewhere in the string.
Input
The first line contains the initial string consisting of letters 'a' and 'b' only with length from 1 to 106.
Output
Print the minimum number of steps modulo 109 + 7.
Examples
Input
ab
Output
1
Input
aab
Output
3
Note
The first example: "ab" → "bba".
The second example: "aab" → "abba" → "bbaba" → "bbbbaa".
Submitted Solution:
```
m=1000*1000*1000+7
s=input()
from math import pow
#pow=[1]
#for i in range (1,len(s)):
# pow.append(pow[i-1]*2)
ans=0
m=1000*1000*1000+7
cnt=0
for i in s:
if(i=='a') :
cnt=cnt+1
else:
ans=(int(ans+pow(2,cnt)-1)) %m
print(ans)
```
No
| 10,475 | [
0.51318359375,
-0.1544189453125,
-0.032684326171875,
0.08966064453125,
-0.8916015625,
-0.17333984375,
-0.1759033203125,
-0.135986328125,
0.280517578125,
0.7529296875,
0.71484375,
-0.318603515625,
-0.260009765625,
-1.0205078125,
-0.32080078125,
-0.022216796875,
-0.5087890625,
-0.71728515625,
-0.31298828125,
-0.290283203125,
-0.0123291015625,
-0.2406005859375,
-1.12109375,
0.1263427734375,
-0.1251220703125,
0.98681640625,
0.71728515625,
0.0914306640625,
0.9443359375,
1.3056640625,
-0.265380859375,
-0.250732421875,
0.53759765625,
-0.8046875,
-0.2047119140625,
-0.65625,
0.5908203125,
-0.85986328125,
-0.2607421875,
-0.4892578125,
-0.0187835693359375,
-0.306884765625,
0.412109375,
-0.390869140625,
-1.7744140625,
-0.0703125,
0.00658416748046875,
-0.422119140625,
0.06256103515625,
-0.4775390625,
-0.286376953125,
-0.34228515625,
0.3681640625,
-0.144775390625,
0.2459716796875,
0.35693359375,
0.3056640625,
-0.480712890625,
-1.1806640625,
0.172607421875,
0.325439453125,
0.14013671875,
0.1312255859375,
-0.6884765625,
-0.12298583984375,
0.416259765625,
-0.1453857421875,
-0.03167724609375,
-0.11358642578125,
-0.66845703125,
-0.005672454833984375,
0.195556640625,
-0.47216796875,
-0.5634765625,
-0.3369140625,
0.10333251953125,
0.3974609375,
0.0643310546875,
-0.89501953125,
1.03125,
-0.2060546875,
0.87744140625,
0.22607421875,
0.2802734375,
-0.3369140625,
-0.75537109375,
0.170654296875,
0.1591796875,
0.0980224609375,
0.003814697265625,
-0.264404296875,
0.3955078125,
-0.478515625,
-0.29931640625,
0.401123046875,
0.63134765625,
-0.455322265625,
0.1478271484375,
0.455810546875,
0.5205078125,
0.93896484375,
0.7783203125,
-0.56298828125,
0.95361328125,
-0.443603515625,
0.054229736328125,
0.2235107421875,
-0.126708984375,
-0.329833984375,
-0.136962890625,
-0.230224609375,
-0.1624755859375,
0.479736328125,
0.313720703125,
-0.609375,
0.87353515625,
0.1402587890625,
0.42041015625,
-0.47119140625,
0.54443359375,
0.416259765625,
0.08770751953125,
0.775390625,
-0.0838623046875,
-0.213623046875,
-0.0205230712890625,
-0.75048828125,
1.1943359375,
-0.7451171875,
-0.314453125,
0.284912109375,
0.1424560546875,
-0.1455078125,
0.293701171875,
-0.56982421875,
0.55419921875,
0.022491455078125,
0.314208984375,
0.82763671875,
-0.5029296875,
0.6015625,
-0.276123046875,
0.0041656494140625,
1.6806640625,
0.15673828125,
-0.241943359375,
0.69677734375,
0.31103515625,
-0.89453125,
0.339111328125,
-1.1162109375,
0.6640625,
0.31689453125,
0.0653076171875,
-0.2357177734375,
0.12939453125,
-0.2469482421875,
0.387451171875,
0.10614013671875,
-0.1383056640625,
-0.458740234375,
0.2203369140625,
-0.6279296875,
0.93359375,
-0.322265625,
0.445068359375,
-0.27294921875,
-0.190673828125,
0.08251953125,
-0.40283203125,
0.10284423828125,
-0.058563232421875,
0.0233306884765625,
1.0048828125,
0.3955078125,
1.017578125,
1.0595703125,
-0.1527099609375,
0.560546875,
0.33935546875,
-0.456787109375,
0.26025390625,
0.389404296875,
1,
0.324462890625,
0.662109375,
-0.3232421875,
0.096923828125,
-0.366455078125,
-0.397705078125,
0.281494140625,
0.64990234375,
-0.95458984375,
0.489990234375,
-0.149658203125,
-0.1400146484375,
-0.80517578125,
-0.455810546875,
-0.0892333984375,
-1.0390625,
-0.395751953125,
0.58740234375,
-0.054046630859375,
0.53271484375,
-0.58935546875,
-0.47607421875,
0.431640625,
1.189453125,
-0.36767578125,
0.1279296875,
0.43701171875,
-0.00433349609375,
-0.03289794921875,
0.397705078125,
0.010498046875,
-0.358642578125,
-0.62548828125,
0.63037109375,
-0.07171630859375,
-0.062164306640625,
-0.3193359375,
0.65087890625,
0.1923828125,
0.71142578125,
-0.09698486328125,
-0.7001953125,
0.53857421875,
1.10546875,
-0.339599609375,
0.451416015625,
0.255859375,
0.916015625,
0.8818359375,
0.90966796875,
0.7021484375,
0.339599609375,
0.5947265625,
0.9013671875,
-0.05096435546875,
0.1517333984375,
0.181640625,
0.58984375,
0.257080078125,
0.384765625,
0.57080078125,
0.451171875,
0.0863037109375,
-0.2161865234375,
0.039031982421875,
0.038421630859375,
-0.646484375,
0.8505859375,
-0.09588623046875,
0.73486328125,
-0.0634765625,
-0.1322021484375,
0.427978515625,
1.0576171875,
-1.2177734375,
-0.70703125,
-0.1058349609375,
-0.050384521484375,
0.070068359375,
0.09375,
0.7763671875,
0.39697265625,
0.68798828125,
0.52294921875,
-0.2415771484375,
-0.2164306640625,
-0.55419921875,
-0.8447265625,
-0.97216796875,
-0.479248046875,
-0.86767578125,
-0.1318359375,
-0.08282470703125,
-0.93701171875,
0.0926513671875,
-0.49755859375,
-0.03741455078125,
0.11419677734375,
-0.460693359375,
0.93896484375,
-0.09478759765625,
0.24462890625,
-0.55078125,
0.499755859375,
0.05303955078125,
1.2275390625,
-0.80322265625,
0.0936279296875,
-0.12078857421875,
-0.6689453125,
0.0987548828125,
0.1588134765625,
0.32958984375,
0.0733642578125,
-0.521484375,
-0.705078125,
-0.37744140625,
0.3037109375,
-0.333251953125,
0.06890869140625,
-0.53515625,
0.833984375,
0.41796875,
-0.7568359375,
0.748046875,
1.037109375,
-0.8740234375,
0.74755859375,
0.358642578125,
-0.187744140625,
-0.82568359375,
1.1845703125,
0.494140625,
0.459228515625,
-0.5546875,
-0.85888671875,
-0.479736328125,
-0.017181396484375,
0.0802001953125,
-0.7861328125,
-0.314208984375,
0.67578125,
-0.12841796875,
-0.916015625,
0.58447265625,
-0.97998046875,
-0.5205078125,
-0.7431640625,
-0.56591796875,
0.87353515625,
0.81982421875,
0.2279052734375,
0.166748046875,
0.036651611328125,
-0.1129150390625,
0.67431640625,
0.58984375,
-0.7919921875,
0.442138671875,
1.0087890625,
0.142578125,
0.1356201171875,
0.25341796875,
-0.407958984375,
-0.35693359375,
0.139892578125,
-0.01336669921875,
0.65576171875,
0.048370361328125,
0.60400390625,
0.323486328125,
0.64697265625,
-0.94287109375,
0.01456451416015625,
-0.2335205078125,
0.77587890625,
0.305908203125,
0.765625,
0.30224609375,
-0.060089111328125,
-0.68359375,
-1.109375,
0.03936767578125,
0.1634521484375,
0.6923828125,
-0.599609375,
1.0908203125,
0.044952392578125,
-0.72607421875,
0.6533203125,
-0.6474609375,
0.358154296875,
1.1015625,
0.4833984375,
0.71435546875,
-0.79833984375,
0.296630859375,
0.1522216796875,
0.049346923828125,
0.595703125,
0.6669921875,
0.432373046875,
-0.51025390625,
-0.6064453125,
-0.30224609375,
-0.06475830078125,
-0.3203125,
-0.2998046875,
0.2783203125,
-0.398681640625,
-0.27880859375,
-0.873046875,
0.576171875,
0.54052734375,
0.6923828125,
0.2049560546875,
0.11920166015625,
0.1439208984375,
0.210205078125,
0.595703125,
-0.0445556640625,
0.1405029296875,
-0.4921875,
0.95166015625,
0.29150390625,
-0.456787109375,
-0.53076171875,
-0.463623046875,
-0.2415771484375,
0.034820556640625,
-0.36083984375,
-0.05755615234375,
-1.0087890625,
0.2440185546875,
-0.32421875,
0.72900390625,
-0.82763671875,
-0.2364501953125,
-0.3115234375,
0.21240234375,
0.1602783203125,
-1.107421875,
0.564453125,
-1.009765625,
0.5380859375,
0.65185546875,
-0.2705078125,
-0.1993408203125,
-0.248046875,
-1.0595703125,
-0.80712890625,
-0.345947265625,
0.72705078125,
-0.1258544921875,
0.398193359375,
-1.474609375,
0.50634765625,
0.447998046875,
-0.5673828125,
0.23046875,
-0.3544921875,
0.55615234375,
-0.148193359375,
0.5439453125,
-0.41455078125,
-0.63134765625,
0.11505126953125,
-1.45703125,
0.58642578125,
-0.5693359375,
0.6728515625,
0.20654296875,
-0.1199951171875,
0.28955078125,
0.37646484375,
-0.05810546875,
0.154541015625,
-0.1800537109375,
0.626953125,
-0.95361328125,
-0.9033203125,
0.55517578125,
-0.3740234375,
-0.41162109375,
0.833984375,
-0.0745849609375,
-0.437255859375,
-0.0567626953125,
0.404052734375,
-0.3955078125,
0.22412109375,
-0.310791015625,
0.654296875,
-0.395751953125,
-0.546875,
-0.3251953125,
-0.64794921875,
0.7939453125,
-0.432373046875,
-0.58642578125,
-0.1195068359375,
-1.236328125,
-0.364501953125,
-0.0289459228515625,
-0.387939453125,
0.3564453125,
0.29296875,
-0.0985107421875,
-0.09332275390625,
-0.430419921875,
-0.398193359375,
-0.389404296875,
-0.75048828125,
-0.296630859375,
0.1513671875,
0.5634765625,
0.9033203125,
-0.054351806640625,
-0.4736328125,
0.059600830078125,
-0.00708770751953125,
0.1876220703125,
-0.458984375,
-0.184326171875,
-0.10711669921875,
-0.43408203125,
-0.39599609375,
0.42919921875,
-0.089111328125,
0.646484375,
0.74560546875,
0.00261688232421875,
0.355224609375,
0.352783203125,
-0.74560546875,
1.6123046875,
0.092529296875,
-1.0283203125,
-0.7685546875,
0.68408203125,
0.1319580078125,
0.75,
0.294677734375,
-1.0498046875,
-0.6162109375,
-1.0517578125,
0.39306640625,
-0.90478515625,
-0.466552734375,
-1.1826171875,
-0.83984375,
-0.6357421875,
0.38037109375,
0.1448974609375,
-0.58935546875,
0.53125,
-0.85302734375,
0.3056640625,
-0.8720703125,
0.1295166015625,
-0.487548828125,
-0.53173828125,
0.133056640625,
0.96337890625,
0.006439208984375,
0.31201171875,
0.12353515625,
-0.39208984375,
0.41015625,
-0.1822509765625,
-0.80029296875,
-0.330810546875,
-0.08477783203125,
0.25341796875,
-0.184814453125,
-0.19287109375,
-0.541015625,
0.9140625,
-0.53173828125,
0.4150390625,
0.155029296875,
-0.31640625,
-0.138916015625,
-0.35595703125,
1.001953125,
-0.47998046875,
0.144775390625,
0.037445068359375,
0.1800537109375,
0.6474609375,
-0.46728515625,
-0.3955078125,
-0.60498046875,
-0.533203125,
-1.0595703125,
0.62548828125,
-0.2288818359375,
0.04559326171875,
-0.978515625,
-0.0858154296875,
1.0634765625,
-0.6748046875,
0.371337890625,
1.0341796875,
0.11907958984375,
0.24951171875,
-0.374755859375,
0.6767578125,
0.5625,
-0.326416015625,
0.0791015625,
-0.06494140625,
-0.5390625,
-0.01264190673828125,
-0.38720703125,
-0.89599609375,
-0.67724609375,
0.196533203125,
1.3369140625,
-0.282958984375,
0.859375,
-0.1939697265625,
-1.2294921875,
-0.41455078125,
0.572265625,
0.15625,
0.1641845703125,
0.64697265625,
-0.00714111328125,
-0.19775390625,
0.00009393692016601562,
-0.40771484375,
-0.76220703125,
-0.59375,
1.3125,
-0.7353515625,
-0.62841796875,
1.0126953125,
0.9306640625,
-1.1416015625,
-1.07421875,
0.040618896484375,
-0.03314208984375,
-0.2354736328125,
-0.60205078125,
0.042388916015625,
0.5458984375,
-0.7333984375,
0.08856201171875,
0.138671875,
0.03863525390625,
0.11248779296875,
-0.1708984375,
0.6494140625,
-0.41064453125,
0.336669921875,
0.779296875,
-0.39306640625,
-0.469482421875,
-0.90771484375,
-0.11279296875,
-0.352294921875,
-0.0033283233642578125,
0.79833984375,
-0.0296630859375,
0.388671875,
0.6875,
-0.154296875,
0.80078125,
-0.59033203125,
0.03961181640625,
0.283447265625,
-0.4482421875,
-0.4814453125,
0.237060546875,
0.362548828125,
-0.026397705078125,
0.5029296875,
-0.75732421875,
0.0357666015625,
0.34814453125,
0.65576171875,
-0.281982421875,
-0.54541015625,
-0.28564453125,
-1.322265625,
-0.65673828125,
-0.59228515625,
-0.7431640625,
-0.2484130859375,
0.544921875,
0.059661865234375,
-0.333984375,
-0.123291015625,
0.53466796875,
-0.82275390625,
0.72216796875,
-0.487548828125,
0.2254638671875,
-0.251220703125,
-0.429443359375,
-0.98779296875,
-0.275146484375,
-0.5771484375,
-0.658203125,
-0.47119140625,
0.6923828125,
-0.036956787109375,
0.32373046875,
-0.2496337890625,
0.74072265625,
-0.26025390625,
-0.64111328125,
0.39990234375,
0.16357421875,
-0.131591796875,
1.33203125,
0.211181640625,
0.1112060546875,
0.0943603515625,
-0.2103271484375,
-0.1402587890625,
-0.2900390625,
0.85107421875,
0.393310546875,
-0.4873046875,
-0.228271484375,
-0.0333251953125,
0.173095703125,
-0.86376953125,
0.382568359375,
-0.36669921875,
0.1575927734375,
0.0421142578125,
-0.11126708984375,
0.24072265625,
1.208984375,
-0.51904296875,
0.1468505859375,
0.1982421875,
0.29443359375,
0.438232421875,
0.314208984375,
0.1370849609375,
0.41162109375,
-0.2822265625,
-0.439453125,
-0.08123779296875,
0.3408203125,
0.214111328125,
0.23095703125,
-0.46435546875,
-0.908203125,
-0.552734375,
-0.427734375,
-0.10711669921875,
0.458740234375,
0.4833984375,
-0.55712890625,
-0.07220458984375,
0.271484375,
-0.64013671875,
0.04876708984375,
-1.2314453125,
-1.056640625,
0.60498046875,
-0.106689453125,
-0.5634765625,
-0.12347412109375,
-0.419921875,
-0.07421875,
-0.04876708984375,
0.404541015625,
-0.5400390625,
0.325439453125,
0.29296875,
0.403076171875,
0.04815673828125,
-0.1881103515625,
0.05908203125,
0.6015625,
-0.830078125,
-0.8486328125,
-0.0136566162109375,
1.05078125,
0.2120361328125,
-0.3740234375,
-0.256591796875,
0.33251953125,
-0.118408203125,
0.2327880859375,
-0.5087890625,
0.1025390625,
-0.0121002197265625,
0.900390625,
-0.71435546875,
0.0094146728515625,
-0.196044921875,
0.308349609375,
-0.04608154296875,
-0.6533203125,
-0.66845703125,
1.1767578125,
0.56591796875,
-0.0151519775390625,
0.548828125,
0.08416748046875,
0.39111328125,
0.066650390625,
0.1409912109375,
0.15185546875,
0.68115234375,
0.900390625,
0.7216796875,
-0.292236328125,
0.42333984375,
0.98388671875,
-0.247314453125,
-0.2822265625,
0.417236328125,
0.22021484375,
-0.199462890625,
-0.082763671875,
-0.1912841796875,
-0.5048828125,
-0.2135009765625,
-0.7314453125,
0.77685546875,
-0.276123046875,
0.214599609375,
-0.1231689453125,
-0.52490234375,
0.82763671875,
-0.319091796875,
-0.2177734375,
0.2384033203125,
-0.81396484375,
0.38525390625,
0.50390625,
-0.2919921875,
-0.42236328125,
0.56005859375,
0.82177734375,
0.74951171875,
0.75390625,
0.269287109375,
0.3173828125,
-0.484375,
0.0555419921875,
-0.1634521484375,
0.04473876953125,
-0.1534423828125,
-0.51806640625,
-1.208984375,
0.62890625,
-0.46484375,
-0.171630859375,
0.495361328125,
-0.6650390625,
0.2408447265625,
-0.165283203125,
0.8935546875,
-0.501953125,
0.1885986328125,
0.467041015625,
-0.33251953125,
-0.9677734375,
1.046875,
-0.1771240234375,
0.11102294921875,
-0.0894775390625,
1.384765625,
0.0180206298828125,
1.34765625,
0.6884765625,
-0.304931640625,
0.251953125,
0.5380859375,
-0.32373046875,
-0.60107421875,
-0.462890625,
-0.46044921875,
-0.2086181640625,
-0.58056640625,
-0.66455078125,
0.0013208389282226562,
0.363525390625,
0.12646484375,
-0.796875,
-0.210693359375,
0.104248046875,
-0.69140625,
0.5576171875,
0.20556640625,
0.376953125,
0.2252197265625,
-0.29150390625,
-0.179931640625,
-0.2626953125,
0.171875,
-0.40673828125,
0.341796875,
-0.93505859375,
-0.322265625,
-0.6259765625,
-0.59716796875,
-0.2095947265625,
-0.11370849609375,
-0.25830078125,
-0.7314453125,
0.1280517578125,
0.455810546875,
0.1658935546875,
0.30810546875,
-0.343505859375,
0.120849609375,
1.01953125,
1.0029296875,
-0.020843505859375,
0.87841796875,
0.48583984375,
0.005252838134765625,
-0.08062744140625,
-0.2216796875,
0.54150390625,
-0.08038330078125,
0.50146484375,
-0.52001953125,
0.293701171875,
-0.7587890625,
-1.2900390625,
0.141357421875,
0.39404296875,
-0.001575469970703125,
-0.7744140625,
-1.2578125,
-0.5712890625,
-1.1845703125,
-0.10467529296875,
-0.95458984375,
0.89892578125,
-0.34521484375,
-0.27490234375,
-0.0770263671875,
-1.2080078125,
4.2265625,
0.91064453125,
0.61328125,
0.45166015625,
0.274169921875,
0.8154296875,
0.269775390625,
-0.61328125,
-0.023681640625,
-0.5087890625,
0.6943359375,
-0.388916015625,
-0.1439208984375,
0.88134765625,
0.474609375,
0.5234375,
-0.481689453125,
0.114013671875,
0.12042236328125,
-1.04296875,
-0.947265625,
0.372802734375,
0.13330078125,
0.60400390625,
0.2177734375,
0.2435302734375,
0.8125,
-1.080078125,
0.1876220703125,
-0.5498046875,
0.283203125,
-0.325927734375,
1.1123046875,
0.317626953125,
0.0732421875,
0.505859375,
-0.0296783447265625,
-0.291259765625,
0.006488800048828125,
0.1927490234375,
-0.363037109375,
-0.0723876953125,
0.461669921875,
-0.8818359375,
-0.205810546875,
0.6015625,
-0.64501953125,
0.6337890625,
-0.0810546875,
-1.12890625,
0.9375,
-0.154296875,
0.318359375,
-0.681640625,
-0.2998046875,
0.050201416015625,
0.35205078125,
-0.145263671875,
-0.09442138671875,
0.521484375,
0.4560546875,
0.53857421875,
-0.142822265625,
0.560546875,
-1.1640625,
0.10198974609375,
0.144775390625,
0.3994140625,
-0.50146484375,
-0.08197021484375,
-0.595703125,
-0.5322265625,
-0.239013671875,
-0.58544921875,
0.58154296875,
0.1798095703125,
-0.109375,
0.2352294921875,
0.462646484375,
-0.488525390625,
0.348388671875,
-0.1942138671875,
-0.268310546875,
-0.7265625,
0.82080078125,
1.3271484375,
-0.55810546875,
-0.464599609375,
-0.4248046875,
0.55908203125,
0.67578125,
0.69775390625,
-0.14794921875,
-0.7666015625,
-0.2347412109375
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
We have a string of letters 'a' and 'b'. We want to perform some operations on it. On each step we choose one of substrings "ab" in the string and replace it with the string "bba". If we have no "ab" as a substring, our job is done. Print the minimum number of steps we should perform to make our job done modulo 109 + 7.
The string "ab" appears as a substring if there is a letter 'b' right after the letter 'a' somewhere in the string.
Input
The first line contains the initial string consisting of letters 'a' and 'b' only with length from 1 to 106.
Output
Print the minimum number of steps modulo 109 + 7.
Examples
Input
ab
Output
1
Input
aab
Output
3
Note
The first example: "ab" → "bba".
The second example: "aab" → "abba" → "bbaba" → "bbbbaa".
Submitted Solution:
```
##############--->>>>> Deepcoder Amit Kumar Bhuyan <<<<<---##############
"""
Perfection is achieved not when there is nothing more to add, but rather when there is nothing more to take away.
"""
from __future__ import division, print_function
import os,sys
from io import BytesIO, IOBase
if sys.version_info[0] < 3:
from __builtin__ import xrange as range
from future_builtins import ascii, filter, hex, map, oct, zip
def ii(): return int(input())
def si(): return input()
def mi(): return map(int,input().strip().split(" "))
def msi(): return map(str,input().strip().split(" "))
def li(): return list(mi())
def dmain():
sys.setrecursionlimit(1000000)
threading.stack_size(1024000)
thread = threading.Thread(target=main)
thread.start()
#from collections import deque, Counter, OrderedDict,defaultdict
#from heapq import nsmallest, nlargest, heapify,heappop ,heappush, heapreplace
#from math import log,sqrt,factorial,cos,tan,sin,radians
#from bisect import bisect,bisect_left,bisect_right,insort,insort_left,insort_right
#from decimal import *
#import threading
#from itertools import permutations
#Copy 2D list m = [x[:] for x in mark] .. Avoid Using Deepcopy
import sys
input = sys.stdin.readline
scanner = lambda: int(input())
string = lambda: input().rstrip()
get_list = lambda: list(read())
read = lambda: map(int, input().split())
get_float = lambda: map(float, input().split())
# from bisect import bisect_left as lower_bound;
# from bisect import bisect_right as upper_bound;
# from math import ceil, factorial;
def ceil(x):
if x != int(x):
x = int(x) + 1
return x
def factorial(x, m):
val = 1
while x>0:
val = (val * x) % m
x -= 1
return val
def fact(x):
val = 1
while x > 0:
val *= x
x -= 1
return val
# swap_array function
def swaparr(arr, a,b):
temp = arr[a];
arr[a] = arr[b];
arr[b] = temp;
## gcd function
def gcd(a,b):
if b == 0:
return a;
return gcd(b, a % b);
## lcm function
def lcm(a, b):
return (a * b) // math.gcd(a, b)
def is_integer(n):
return math.ceil(n) == math.floor(n)
## nCr function efficient using Binomial Cofficient
def nCr(n, k):
if k > n:
return 0
if(k > n - k):
k = n - k
res = 1
for i in range(k):
res = res * (n - i)
res = res / (i + 1)
return int(res)
## upper bound function code -- such that e in a[:i] e < x;
## prime factorization
def primefs(n):
## if n == 1 ## calculating primes
primes = {}
while(n%2 == 0 and n > 0):
primes[2] = primes.get(2, 0) + 1
n = n//2
for i in range(3, int(n**0.5)+2, 2):
while(n%i == 0 and n > 0):
primes[i] = primes.get(i, 0) + 1
n = n//i
if n > 2:
primes[n] = primes.get(n, 0) + 1
## prime factoriazation of n is stored in dictionary
## primes and can be accesed. O(sqrt n)
return primes
## MODULAR EXPONENTIATION FUNCTION
def power(x, y, p):
res = 1
x = x % p
if (x == 0) :
return 0
while (y > 0) :
if ((y & 1) == 1) :
res = (res * x) % p
y = y >> 1
x = (x * x) % p
return res
## DISJOINT SET UNINON FUNCTIONS
def swap(a,b):
temp = a
a = b
b = temp
return a,b;
# find function with path compression included (recursive)
# def find(x, link):
# if link[x] == x:
# return x
# link[x] = find(link[x], link);
# return link[x];
# find function with path compression (ITERATIVE)
def find(x, link):
p = x;
while( p != link[p]):
p = link[p];
while( x != p):
nex = link[x];
link[x] = p;
x = nex;
return p;
# the union function which makes union(x,y)
# of two nodes x and y
def union(x, y, link, size):
x = find(x, link)
y = find(y, link)
if size[x] < size[y]:
x,y = swap(x,y)
if x != y:
size[x] += size[y]
link[y] = x
## returns an array of boolean if primes or not USING SIEVE OF ERATOSTHANES
def sieve(n):
prime = [True for i in range(n+1)]
prime[0], prime[1] = False, False
p = 2
while (p * p <= n):
if (prime[p] == True):
for i in range(p * p, n+1, p):
prime[i] = False
p += 1
return prime
# Euler's Toitent Function phi
def phi(n) :
result = n
p = 2
while(p * p<= n) :
if (n % p == 0) :
while (n % p == 0) :
n = n // p
result = result * (1.0 - (1.0 / (float) (p)))
p = p + 1
if (n > 1) :
result = result * (1.0 - (1.0 / (float)(n)))
return (int)(result)
def is_prime(n):
if n == 0:
return False
if n == 1:
return True
for i in range(2, int(n ** (1 / 2)) + 1):
if not n % i:
return False
return True
def next_prime(n, primes):
while primes[n] != True:
n += 1
return n
#### PRIME FACTORIZATION IN O(log n) using Sieve ####
MAXN = int(1e5 + 5)
def spf_sieve():
spf[1] = 1;
for i in range(2, MAXN):
spf[i] = i;
for i in range(4, MAXN, 2):
spf[i] = 2;
for i in range(3, ceil(MAXN ** 0.5), 2):
if spf[i] == i:
for j in range(i*i, MAXN, i):
if spf[j] == j:
spf[j] = i;
## function for storing smallest prime factors (spf) in the array
################## un-comment below 2 lines when using factorization #################
spf = [0 for i in range(MAXN)]
# spf_sieve();
def factoriazation(x):
res = []
for i in range(2, int(x ** 0.5) + 1):
while x % i == 0:
res.append(i)
x //= i
if x != 1:
res.append(x)
return res
## this function is useful for multiple queries only, o/w use
## primefs function above. complexity O(log n)
def factors(n):
res = []
for i in range(1, int(n ** 0.5) + 1):
if n % i == 0:
res.append(i)
res.append(n // i)
return list(set(res))
## taking integer array input
def int_array():
return list(map(int, input().strip().split()));
def float_array():
return list(map(float, input().strip().split()));
## taking string array input
def str_array():
return input().strip().split();
def binary_search(low, high, w, h, n):
while low < high:
mid = low + (high - low) // 2
# print(low, mid, high)
if check(mid, w, h, n):
low = mid + 1
else:
high = mid
return low
## for checking any conditions
def check(beauty, s, n, count):
pass
#defining a couple constants
MOD = int(1e9)+7;
CMOD = 998244353;
INF = float('inf'); NINF = -float('inf');
alphs = "abcdefghijklmnopqrstuvwxyz"
################### ---------------- TEMPLATE ENDS HERE ---------------- ###################
from itertools import permutations
import math
import bisect as bis
import random
import sys
import collections as collect
def solve():
s = string()
l = len(s)
i = 0
j = l - 1
ans = 0
while j >= 0:
if s[j] == 'b':
i += 1
else:
ans += i % MOD
i *= 2
j -= 1
print(ans)
# region fastio
# template taken from https://github.com/cheran-senthil/PyRival/blob/master/templates/template.py
BUFSIZE = 8192
class FastIO(IOBase):
newlines = 0
def __init__(self, file):
self._fd = file.fileno()
self.buffer = BytesIO()
self.writable = "x" in file.mode or "r" not in file.mode
self.write = self.buffer.write if self.writable else None
def read(self):
while True:
b = os.read(self._fd, max(os.fstat(self._fd).st_size, BUFSIZE))
if not b:
break
ptr = self.buffer.tell()
self.buffer.seek(0, 2), self.buffer.write(b), self.buffer.seek(ptr)
self.newlines = 0
return self.buffer.read()
def readline(self):
while self.newlines == 0:
b = os.read(self._fd, max(os.fstat(self._fd).st_size, BUFSIZE))
self.newlines = b.count(b"\n") + (not b)
ptr = self.buffer.tell()
self.buffer.seek(0, 2), self.buffer.write(b), self.buffer.seek(ptr)
self.newlines -= 1
return self.buffer.readline()
def flush(self):
if self.writable:
os.write(self._fd, self.buffer.getvalue())
self.buffer.truncate(0), self.buffer.seek(0)
class IOWrapper(IOBase):
def __init__(self, file):
self.buffer = FastIO(file)
self.flush = self.buffer.flush
self.writable = self.buffer.writable
self.write = lambda s: self.buffer.write(s.encode("ascii"))
self.read = lambda: self.buffer.read().decode("ascii")
self.readline = lambda: self.buffer.readline().decode("ascii")
def print(*args, **kwargs):
"""Prints the values to a stream, or to sys.stdout by default."""
sep, file = kwargs.pop("sep", " "), kwargs.pop("file", sys.stdout)
at_start = True
for x in args:
if not at_start:
file.write(sep)
file.write(str(x))
at_start = False
file.write(kwargs.pop("end", "\n"))
if kwargs.pop("flush", False):
file.flush()
if sys.version_info[0] < 3:
sys.stdin, sys.stdout = FastIO(sys.stdin), FastIO(sys.stdout)
else:
sys.stdin, sys.stdout = IOWrapper(sys.stdin), IOWrapper(sys.stdout)
input = lambda: sys.stdin.readline().rstrip("\r\n")
# endregion
if __name__ == "__main__":
#read()
for i in range(1):
solve()
#dmain()
# Comment Read()
# fin_time = datetime.now()
# print("Execution time (for loop): ", (fin_time-init_time))
```
No
| 10,476 | [
0.47216796875,
-0.0721435546875,
-0.226318359375,
-0.1185302734375,
-0.84423828125,
-0.372314453125,
-0.225830078125,
-0.09100341796875,
0.08624267578125,
0.85498046875,
0.424560546875,
-0.32275390625,
-0.11016845703125,
-0.9697265625,
-0.259765625,
-0.07562255859375,
-0.52978515625,
-0.6572265625,
-0.336669921875,
-0.350341796875,
0.11163330078125,
-0.291259765625,
-1.1279296875,
0.0855712890625,
-0.34716796875,
0.9794921875,
0.57080078125,
0.0977783203125,
1.111328125,
1.009765625,
-0.169677734375,
-0.1737060546875,
0.60546875,
-0.97705078125,
-0.02728271484375,
-0.59130859375,
0.6357421875,
-0.68212890625,
-0.494873046875,
-0.50537109375,
0.1439208984375,
-0.40380859375,
0.5380859375,
-0.7060546875,
-1.673828125,
-0.14892578125,
0.0924072265625,
-0.31640625,
-0.166015625,
-0.497314453125,
-0.231689453125,
-0.12744140625,
0.326416015625,
-0.170654296875,
0.192138671875,
0.227783203125,
0.1337890625,
-0.2301025390625,
-0.91357421875,
-0.10040283203125,
0.458740234375,
0.2384033203125,
0.1251220703125,
-0.85546875,
0.04827880859375,
0.31103515625,
-0.242919921875,
0.031707763671875,
-0.2474365234375,
-0.46435546875,
-0.1072998046875,
0.06817626953125,
-0.37890625,
-0.61669921875,
-0.17529296875,
0.1534423828125,
0.24658203125,
-0.093505859375,
-0.85986328125,
0.98388671875,
-0.259521484375,
1.0224609375,
0.1712646484375,
0.10162353515625,
-0.410888671875,
-0.65380859375,
0.2305908203125,
0.09124755859375,
0.0721435546875,
-0.1912841796875,
-0.3544921875,
0.33984375,
-0.345703125,
-0.059844970703125,
0.3515625,
0.479736328125,
-0.3876953125,
0.064453125,
0.25146484375,
0.5244140625,
0.7431640625,
1.0302734375,
-0.415283203125,
1.1005859375,
-0.388427734375,
-0.02740478515625,
0.061248779296875,
-0.2391357421875,
-0.23291015625,
0.0112762451171875,
-0.1861572265625,
-0.30224609375,
0.31298828125,
0.52587890625,
-0.49267578125,
0.93017578125,
0.241943359375,
0.48681640625,
-0.62353515625,
0.41943359375,
0.336669921875,
0.0196380615234375,
0.6982421875,
-0.25537109375,
-0.03619384765625,
-0.264404296875,
-0.75048828125,
0.98583984375,
-0.5009765625,
-0.26513671875,
0.471435546875,
0.1575927734375,
-0.2705078125,
0.355224609375,
-0.3515625,
0.53662109375,
-0.050689697265625,
0.15478515625,
0.609375,
-0.299072265625,
0.65576171875,
-0.1865234375,
-0.1024169921875,
1.9208984375,
0.1605224609375,
-0.195556640625,
0.57666015625,
0.3447265625,
-0.79736328125,
0.401123046875,
-0.931640625,
0.70751953125,
0.362548828125,
0.1400146484375,
-0.25537109375,
0.0297393798828125,
-0.47021484375,
0.445068359375,
0.2464599609375,
-0.06634521484375,
-0.2421875,
0.0667724609375,
-0.56103515625,
0.9560546875,
-0.420654296875,
0.7470703125,
-0.2003173828125,
-0.37939453125,
0.0205535888671875,
-0.270751953125,
0.231201171875,
-0.19287109375,
-0.1119384765625,
0.9228515625,
0.3701171875,
0.974609375,
1.1943359375,
-0.144775390625,
0.470947265625,
0.26611328125,
-0.365234375,
0.33154296875,
0.2607421875,
1.0869140625,
0.427734375,
0.41015625,
-0.09088134765625,
-0.089599609375,
-0.39208984375,
-0.544921875,
0.23681640625,
0.69384765625,
-0.833984375,
0.51025390625,
-0.18505859375,
0.03204345703125,
-0.7490234375,
-0.317626953125,
0.10113525390625,
-0.95947265625,
-0.1387939453125,
0.50048828125,
-0.05230712890625,
0.61865234375,
-0.52587890625,
-0.384765625,
0.254638671875,
1.3232421875,
-0.268798828125,
0.1451416015625,
0.405029296875,
-0.23779296875,
-0.32568359375,
0.2783203125,
0.286376953125,
-0.43994140625,
-0.57421875,
0.5546875,
0.02947998046875,
-0.1973876953125,
-0.257568359375,
0.52978515625,
0.412353515625,
0.4716796875,
-0.353515625,
-0.5791015625,
0.4130859375,
0.91845703125,
-0.2352294921875,
0.3349609375,
0.29150390625,
0.73291015625,
0.69091796875,
0.86669921875,
0.6796875,
0.0655517578125,
0.5634765625,
0.81884765625,
-0.08837890625,
0.248291015625,
0.357177734375,
0.5009765625,
0.13525390625,
0.415771484375,
0.37353515625,
0.356689453125,
0.0765380859375,
-0.37109375,
-0.2998046875,
-0.0217132568359375,
-0.6396484375,
0.65869140625,
0.1390380859375,
0.744140625,
-0.05108642578125,
-0.16015625,
0.404541015625,
1.0185546875,
-1.2333984375,
-0.62353515625,
0.0078887939453125,
0.1346435546875,
0.1644287109375,
0.09942626953125,
0.583984375,
0.439453125,
0.6904296875,
0.50830078125,
-0.1893310546875,
-0.325927734375,
-0.59375,
-0.79931640625,
-0.95556640625,
-0.296630859375,
-0.87255859375,
-0.2490234375,
-0.0924072265625,
-0.958984375,
0.1866455078125,
-0.572265625,
0.008697509765625,
0.056427001953125,
-0.260498046875,
0.9453125,
0.0518798828125,
0.374267578125,
-0.51220703125,
0.466064453125,
0.0885009765625,
1.1923828125,
-0.68115234375,
-0.08465576171875,
-0.403564453125,
-0.478515625,
0.045074462890625,
0.262451171875,
0.517578125,
0.1829833984375,
-0.74609375,
-0.59716796875,
-0.356201171875,
0.06402587890625,
-0.4287109375,
-0.0122528076171875,
-0.55419921875,
0.83935546875,
0.42041015625,
-0.6025390625,
0.71826171875,
0.85009765625,
-0.849609375,
0.73193359375,
0.354736328125,
-0.1536865234375,
-0.69482421875,
1.2744140625,
0.402587890625,
0.5458984375,
-0.51611328125,
-0.8291015625,
-0.448486328125,
0.0309295654296875,
0.1331787109375,
-0.80029296875,
-0.29833984375,
0.72412109375,
0.0574951171875,
-0.99267578125,
0.51171875,
-1.1669921875,
-0.39501953125,
-0.469970703125,
-0.449462890625,
0.89501953125,
0.9697265625,
0.339599609375,
0.160888671875,
0.0958251953125,
-0.1463623046875,
0.6376953125,
0.6171875,
-0.82275390625,
0.270751953125,
1.0341796875,
-0.046112060546875,
0.329345703125,
0.291015625,
-0.505859375,
-0.0316162109375,
0.0246429443359375,
-0.0755615234375,
0.55615234375,
-0.197021484375,
0.3984375,
0.353271484375,
0.437744140625,
-0.94287109375,
0.1298828125,
-0.1881103515625,
0.78125,
0.357666015625,
0.6640625,
0.1920166015625,
-0.07708740234375,
-0.7216796875,
-0.97607421875,
0.076171875,
0.262939453125,
0.6591796875,
-0.40185546875,
0.8955078125,
0.07501220703125,
-0.79443359375,
0.61279296875,
-0.59423828125,
0.36083984375,
1.0927734375,
0.2469482421875,
0.82421875,
-0.703125,
0.29296875,
0.2174072265625,
-0.060638427734375,
0.338623046875,
0.77978515625,
0.58447265625,
-0.609375,
-0.463623046875,
-0.41845703125,
-0.0209503173828125,
-0.1339111328125,
-0.3798828125,
0.15966796875,
-0.40283203125,
-0.257568359375,
-0.86669921875,
0.59521484375,
0.5732421875,
0.9150390625,
0.202880859375,
0.459228515625,
0.0221405029296875,
0.15966796875,
0.70068359375,
-0.04791259765625,
0.27099609375,
-0.5556640625,
0.77099609375,
0.408203125,
-0.315185546875,
-0.325439453125,
-0.481201171875,
0.0421142578125,
-0.00853729248046875,
-0.5068359375,
-0.10284423828125,
-1.1787109375,
0.14794921875,
-0.29052734375,
0.73095703125,
-0.84130859375,
-0.056396484375,
-0.421630859375,
0.0948486328125,
0.278076171875,
-1.0302734375,
0.580078125,
-0.80712890625,
0.65771484375,
0.501953125,
-0.06817626953125,
-0.25537109375,
-0.2388916015625,
-0.86376953125,
-0.7734375,
-0.0005731582641601562,
0.765625,
-0.052886962890625,
0.5185546875,
-1.20703125,
0.53759765625,
0.417236328125,
-0.53466796875,
0.1944580078125,
-0.416015625,
0.591796875,
-0.11846923828125,
0.61865234375,
-0.44287109375,
-0.58642578125,
0.337158203125,
-1.2099609375,
0.5859375,
-0.38720703125,
0.62158203125,
0.084716796875,
-0.20556640625,
0.190185546875,
0.2457275390625,
-0.0797119140625,
0.12127685546875,
-0.297119140625,
0.65380859375,
-1.04296875,
-1.181640625,
0.5712890625,
-0.229736328125,
-0.317138671875,
0.60205078125,
-0.09173583984375,
-0.59033203125,
-0.2152099609375,
0.37353515625,
-0.472412109375,
0.4072265625,
-0.1866455078125,
0.64794921875,
-0.2147216796875,
-0.7236328125,
-0.1641845703125,
-0.587890625,
0.97216796875,
-0.2188720703125,
-0.5341796875,
0.09527587890625,
-1.392578125,
-0.298828125,
-0.03466796875,
-0.491455078125,
0.0733642578125,
0.3212890625,
-0.127685546875,
-0.318115234375,
-0.0716552734375,
-0.45361328125,
-0.22216796875,
-0.482177734375,
-0.243896484375,
0.281494140625,
0.53515625,
1.0078125,
-0.044464111328125,
-0.42626953125,
-0.032958984375,
-0.302001953125,
0.08447265625,
-0.62646484375,
-0.056732177734375,
-0.1300048828125,
-0.426513671875,
-0.2347412109375,
0.30859375,
-0.0290985107421875,
0.5390625,
0.63720703125,
0.035247802734375,
0.25390625,
0.290283203125,
-0.7919921875,
1.36328125,
0.01043701171875,
-1.1650390625,
-0.75,
0.67236328125,
0.185546875,
0.6787109375,
0.27783203125,
-0.88232421875,
-0.66748046875,
-1.041015625,
0.47314453125,
-0.87158203125,
-0.2384033203125,
-1.2607421875,
-0.6865234375,
-0.57470703125,
0.313720703125,
0.1507568359375,
-0.490234375,
0.390869140625,
-0.93408203125,
0.2115478515625,
-0.82275390625,
0.032135009765625,
-0.84375,
-0.42529296875,
-0.072021484375,
0.89306640625,
0.0867919921875,
0.1707763671875,
-0.01788330078125,
-0.350830078125,
0.306640625,
-0.1962890625,
-0.83447265625,
-0.1707763671875,
-0.225830078125,
0.18115234375,
-0.0997314453125,
-0.129638671875,
-0.69580078125,
0.71630859375,
-0.54052734375,
0.487548828125,
-0.02301025390625,
-0.30908203125,
0.07452392578125,
-0.294189453125,
0.93505859375,
-0.55712890625,
0.20947265625,
-0.12152099609375,
0.393310546875,
0.4658203125,
-0.41748046875,
-0.2281494140625,
-0.56591796875,
-0.61181640625,
-1.1083984375,
0.3369140625,
-0.436279296875,
0.08404541015625,
-0.7392578125,
-0.1104736328125,
1.142578125,
-0.64501953125,
0.447509765625,
0.9658203125,
0.2098388671875,
0.01311492919921875,
-0.380126953125,
0.59521484375,
0.428955078125,
-0.2159423828125,
-0.03564453125,
-0.2305908203125,
-0.475341796875,
0.0321044921875,
-0.55419921875,
-0.93896484375,
-0.61328125,
0.2880859375,
1.36328125,
-0.447998046875,
0.82275390625,
-0.086181640625,
-1.236328125,
-0.407958984375,
0.499267578125,
0.270263671875,
-0.0132904052734375,
0.47705078125,
-0.0740966796875,
-0.0075225830078125,
0.2069091796875,
-0.29541015625,
-0.580078125,
-0.72412109375,
1.3095703125,
-0.6943359375,
-0.56884765625,
1.052734375,
1.0107421875,
-1.18359375,
-1.1240234375,
0.07867431640625,
0.253662109375,
-0.06756591796875,
-0.68701171875,
-0.123291015625,
0.36865234375,
-0.61767578125,
0.0599365234375,
0.19091796875,
0.0411376953125,
0.2027587890625,
0.2197265625,
0.498046875,
-0.5068359375,
0.32763671875,
0.8525390625,
-0.580078125,
-0.411376953125,
-0.94677734375,
-0.2122802734375,
-0.44775390625,
0.11865234375,
0.80712890625,
0.0105743408203125,
0.282470703125,
0.72314453125,
-0.1923828125,
0.869140625,
-0.453369140625,
-0.10406494140625,
0.1512451171875,
-0.5439453125,
-0.57470703125,
0.1363525390625,
0.5537109375,
-0.1314697265625,
0.446533203125,
-0.5732421875,
0.06561279296875,
0.46044921875,
0.57861328125,
-0.05645751953125,
-0.69775390625,
-0.1513671875,
-1.3017578125,
-0.49462890625,
-0.53466796875,
-0.91943359375,
-0.24609375,
0.65625,
0.177490234375,
-0.53076171875,
0.1787109375,
0.64794921875,
-0.669921875,
0.5078125,
-0.471435546875,
0.1318359375,
-0.497802734375,
-0.384521484375,
-0.83056640625,
-0.044677734375,
-0.611328125,
-0.42041015625,
-0.59130859375,
0.69873046875,
0.09857177734375,
0.33251953125,
-0.1650390625,
0.9248046875,
-0.191650390625,
-0.4228515625,
0.1688232421875,
-0.026702880859375,
-0.28955078125,
1.2841796875,
0.3583984375,
-0.08154296875,
0.0499267578125,
-0.359130859375,
-0.06182861328125,
-0.427734375,
0.60498046875,
0.34228515625,
-0.298095703125,
-0.061248779296875,
-0.01197052001953125,
0.31201171875,
-0.67333984375,
0.302490234375,
-0.1798095703125,
0.0208892822265625,
-0.06219482421875,
0.0787353515625,
0.51318359375,
0.98681640625,
-0.418701171875,
-0.06329345703125,
0.169189453125,
0.299072265625,
0.20068359375,
0.179443359375,
0.20947265625,
0.439697265625,
-0.277587890625,
-0.55517578125,
-0.2255859375,
0.54296875,
-0.03594970703125,
0.33154296875,
-0.50830078125,
-0.8203125,
-0.73046875,
-0.3134765625,
0.0697021484375,
0.4873046875,
0.46533203125,
-0.482666015625,
-0.042510986328125,
0.1396484375,
-0.55078125,
0.0941162109375,
-1.0732421875,
-1.1787109375,
0.64306640625,
-0.1629638671875,
-0.6416015625,
-0.11810302734375,
-0.291015625,
0.0156707763671875,
0.277099609375,
0.568359375,
-0.441650390625,
0.166015625,
0.1715087890625,
0.442138671875,
-0.1697998046875,
-0.326171875,
0.146728515625,
0.7080078125,
-0.7919921875,
-0.52587890625,
0.186767578125,
1.0458984375,
0.047943115234375,
-0.482421875,
-0.39404296875,
0.447998046875,
-0.1519775390625,
0.154541015625,
-0.66162109375,
0.2392578125,
0.15771484375,
0.86376953125,
-0.814453125,
0.1785888671875,
-0.09478759765625,
0.346923828125,
-0.105224609375,
-0.66259765625,
-0.61572265625,
0.98193359375,
0.5361328125,
-0.1741943359375,
0.68310546875,
-0.161376953125,
0.451904296875,
0.00847625732421875,
0.0203094482421875,
0.0325927734375,
0.69189453125,
0.78515625,
0.7177734375,
-0.395263671875,
0.57080078125,
0.84521484375,
-0.270751953125,
-0.2235107421875,
0.353515625,
0.289306640625,
-0.11279296875,
-0.107666015625,
-0.55078125,
-0.421142578125,
-0.1441650390625,
-0.55126953125,
0.476806640625,
-0.19091796875,
0.0863037109375,
-0.2027587890625,
-0.7861328125,
0.759765625,
-0.2451171875,
-0.248291015625,
0.187744140625,
-0.60888671875,
0.5478515625,
0.52734375,
-0.2252197265625,
-0.458251953125,
0.4873046875,
0.72314453125,
0.58740234375,
0.7470703125,
0.10455322265625,
0.1650390625,
-0.5751953125,
0.1607666015625,
0.0528564453125,
-0.1304931640625,
-0.06964111328125,
-0.60546875,
-1.2119140625,
0.74462890625,
-0.4326171875,
-0.39794921875,
0.487060546875,
-0.68017578125,
0.1121826171875,
-0.3720703125,
1,
-0.70556640625,
0.2021484375,
0.34423828125,
-0.325927734375,
-0.77587890625,
0.84912109375,
-0.22705078125,
0.10540771484375,
0.0689697265625,
1.3466796875,
-0.0310821533203125,
1.5234375,
0.77197265625,
-0.225830078125,
0.26953125,
0.53564453125,
-0.310546875,
-0.4833984375,
-0.2548828125,
-0.378662109375,
-0.240234375,
-0.796875,
-0.67822265625,
0.13525390625,
0.43310546875,
0.036041259765625,
-0.7041015625,
-0.22314453125,
0.1439208984375,
-0.74951171875,
0.6220703125,
0.204833984375,
0.217529296875,
0.295166015625,
0.05511474609375,
-0.11767578125,
-0.4013671875,
0.177734375,
-0.64013671875,
0.55419921875,
-0.94287109375,
-0.4189453125,
-0.6572265625,
-0.8125,
-0.314697265625,
0.0811767578125,
-0.367431640625,
-0.72119140625,
0.328369140625,
0.642578125,
0.178955078125,
0.3828125,
-0.271728515625,
0.217529296875,
1.0546875,
1.0439453125,
0.1370849609375,
0.81298828125,
0.2548828125,
-0.06707763671875,
-0.07464599609375,
-0.1754150390625,
0.328125,
0.0704345703125,
0.36962890625,
-0.221923828125,
0.2371826171875,
-0.57373046875,
-1.40625,
0.259033203125,
0.333251953125,
0.06439208984375,
-0.74267578125,
-1.1767578125,
-0.476318359375,
-1.2060546875,
-0.1966552734375,
-0.869140625,
0.90234375,
-0.35400390625,
-0.0948486328125,
0.01035308837890625,
-1.0771484375,
4.3515625,
1.0947265625,
0.8017578125,
0.458984375,
0.332763671875,
0.83544921875,
0.052093505859375,
-0.4033203125,
0.06585693359375,
-0.49853515625,
0.7529296875,
-0.3916015625,
-0.03375244140625,
0.84765625,
0.27099609375,
0.5009765625,
-0.5283203125,
0.29345703125,
-0.10211181640625,
-0.9208984375,
-1.06640625,
0.230712890625,
-0.057159423828125,
0.285400390625,
0.1644287109375,
0.294921875,
0.8798828125,
-0.90576171875,
0.068115234375,
-0.63134765625,
0.1427001953125,
-0.48291015625,
1.150390625,
0.06842041015625,
0.1484375,
0.490966796875,
0.080810546875,
-0.4638671875,
0.005023956298828125,
0.06549072265625,
-0.347412109375,
-0.40966796875,
0.4521484375,
-0.77099609375,
-0.0994873046875,
0.63037109375,
-0.51953125,
0.541015625,
-0.032958984375,
-1.142578125,
0.732421875,
-0.259765625,
0.278564453125,
-0.783203125,
-0.1407470703125,
0.020904541015625,
0.281005859375,
-0.10870361328125,
-0.2254638671875,
0.41357421875,
0.49462890625,
0.51953125,
-0.1282958984375,
0.6123046875,
-1.044921875,
0.1448974609375,
-0.0010929107666015625,
0.607421875,
-0.440673828125,
-0.175048828125,
-0.6201171875,
-0.2396240234375,
-0.283935546875,
-0.41162109375,
0.513671875,
0.01837158203125,
-0.09521484375,
0.28076171875,
0.54345703125,
-0.54052734375,
0.256103515625,
-0.0791015625,
-0.022918701171875,
-0.6884765625,
0.91650390625,
1.1171875,
-0.517578125,
-0.345458984375,
-0.49658203125,
0.5966796875,
0.7978515625,
0.72998046875,
-0.09619140625,
-0.91552734375,
-0.26220703125
] | 0 |
Provide a correct Python 3 solution for this coding contest problem.
If the strings are consecutive, you can replace the characters with a rule to shorten the string. For example, for the string AAAA, the expression @ 4A will compress one character. Create a program that restores the character string compressed by this rule to the original character string. However, it is assumed that the @ character does not appear in the restored character string.
In addition, the original character string is uppercase letters, lowercase letters, numbers, and symbols, and can be up to 100 characters, and consecutive characters can be up to 9 characters.
input
Multiple strings are given. One string is given per line. The number of strings does not exceed 50.
output
For each character string, output the restored character string for each character on one line.
Example
Input
ab@5C1@8050
@99+1=1@90
Output
abCCCCC10000000050
999999999+1=1000000000
"Correct Solution:
```
while True:
try:
Tlist = list(input())
except:
break
while '@' in Tlist:
at = Tlist.index('@')
t = Tlist[at+2]
x = int(Tlist[at+1])
del(Tlist[at:at+3])
Tlist.insert(at,t*x)
print(''.join(Tlist))
```
| 10,678 | [
0.50732421875,
-0.00868988037109375,
-0.0362548828125,
0.271240234375,
-0.6064453125,
-0.420166015625,
0.24755859375,
-0.0836181640625,
0.28662109375,
0.63671875,
0.70068359375,
-0.5029296875,
-0.150634765625,
-0.7978515625,
-0.441162109375,
0.0224761962890625,
-0.1419677734375,
-0.84326171875,
-0.216064453125,
-0.219482421875,
0.1151123046875,
0.11151123046875,
-1.400390625,
-0.279052734375,
-0.18212890625,
0.52099609375,
0.56884765625,
0.0823974609375,
0.63623046875,
1.2490234375,
-0.8037109375,
-0.292236328125,
0.78515625,
-0.90185546875,
-0.270263671875,
-0.379150390625,
0.56591796875,
-0.8056640625,
-0.41650390625,
-0.387451171875,
0.002063751220703125,
-0.64501953125,
0.62939453125,
-0.85205078125,
-1.3974609375,
-0.06365966796875,
-0.180419921875,
0.0657958984375,
0.0306854248046875,
-0.6376953125,
-0.185302734375,
-0.242919921875,
0.3544921875,
-0.1363525390625,
0.08526611328125,
-0.01093292236328125,
0.2469482421875,
-0.1143798828125,
-0.64892578125,
0.028045654296875,
-0.0892333984375,
0.27685546875,
0.254150390625,
-0.73828125,
-0.27587890625,
0.3017578125,
-0.4580078125,
0.0986328125,
0.09619140625,
-0.36083984375,
-0.40673828125,
0.2734375,
-0.607421875,
-0.406005859375,
-0.56787109375,
0.095947265625,
0.46826171875,
-0.032684326171875,
-0.87548828125,
0.75146484375,
-0.2939453125,
1.1982421875,
0.99755859375,
0.2177734375,
-0.44091796875,
-0.9306640625,
0.309814453125,
0.0916748046875,
0.568359375,
-0.21142578125,
-0.54833984375,
0.384521484375,
-0.734375,
0.021728515625,
0.297119140625,
0.55322265625,
-0.274658203125,
0.10498046875,
0.378662109375,
-0.061981201171875,
0.7021484375,
0.57958984375,
-0.37109375,
1.2158203125,
-0.6728515625,
0.199951171875,
0.402587890625,
-0.322998046875,
-0.00531005859375,
0.08026123046875,
-0.2437744140625,
-0.6220703125,
0.79052734375,
-0.007343292236328125,
-0.32568359375,
0.81298828125,
0.11871337890625,
0.2369384765625,
-0.66943359375,
0.11981201171875,
0.6669921875,
-0.10174560546875,
0.96337890625,
-0.50927734375,
-0.34716796875,
-0.06671142578125,
-0.07440185546875,
0.6884765625,
-0.6259765625,
-0.021514892578125,
0.53857421875,
-0.1773681640625,
-0.07293701171875,
0.08489990234375,
-0.045806884765625,
1.017578125,
-0.245849609375,
0.66552734375,
0.60888671875,
-0.425537109375,
0.78515625,
-0.01959228515625,
-0.143310546875,
1.5556640625,
0.1884765625,
-0.1485595703125,
1.0146484375,
0.4423828125,
-0.80126953125,
0.5576171875,
-1.134765625,
0.75537109375,
-0.08355712890625,
-0.1341552734375,
-0.51904296875,
0.09033203125,
-0.061370849609375,
0.57958984375,
0.113037109375,
0.0855712890625,
-0.1964111328125,
0.178955078125,
-0.724609375,
0.77490234375,
-0.2281494140625,
0.921875,
-0.3349609375,
-0.165283203125,
-0.302490234375,
-0.1622314453125,
0.08441162109375,
-0.4892578125,
-0.015960693359375,
1.099609375,
0.47607421875,
1.0048828125,
1.11328125,
-0.22509765625,
0.1396484375,
0.78466796875,
-0.35400390625,
0.318359375,
0.10760498046875,
0.443359375,
0.63818359375,
-0.181884765625,
0.1195068359375,
-0.442626953125,
-0.69287109375,
-0.37451171875,
0.275634765625,
1.0146484375,
-0.436767578125,
0.4755859375,
-0.08935546875,
-0.442138671875,
-0.888671875,
-0.03521728515625,
-0.266357421875,
-0.7578125,
-0.720703125,
0.58740234375,
-0.442626953125,
0.431396484375,
-0.10546875,
-0.5498046875,
0.5908203125,
1.640625,
-0.285888671875,
0.10003662109375,
0.79736328125,
0.125,
-0.24267578125,
0.560546875,
-0.01401519775390625,
-0.447021484375,
-0.234375,
0.9384765625,
-0.0261383056640625,
-0.156494140625,
-0.3232421875,
0.79150390625,
-0.0290679931640625,
0.80859375,
-0.314453125,
-0.194580078125,
0.63818359375,
0.8759765625,
0.00571441650390625,
0.19091796875,
0.1815185546875,
0.9326171875,
0.75,
0.39794921875,
0.355224609375,
0.52001953125,
0.433837890625,
1.03125,
-0.07659912109375,
0.32763671875,
-0.12255859375,
-0.0489501953125,
0.415283203125,
0.72021484375,
0.0001125335693359375,
0.26171875,
-0.2276611328125,
-0.3369140625,
-0.89404296875,
0.293701171875,
-0.291259765625,
0.64404296875,
0.16357421875,
0.50830078125,
-0.4794921875,
-0.306396484375,
0.4072265625,
0.82763671875,
-1.10546875,
-0.69384765625,
0.2059326171875,
-0.159423828125,
0.3828125,
-0.275390625,
0.477294921875,
0.2958984375,
0.8447265625,
0.43798828125,
-0.177734375,
-0.49951171875,
-0.68505859375,
-1.0673828125,
-0.9140625,
-0.396240234375,
-0.73779296875,
-0.0645751953125,
0.330322265625,
-1.169921875,
0.295166015625,
-0.470947265625,
-0.11083984375,
-0.289306640625,
-0.94384765625,
0.87646484375,
-0.341064453125,
0.265625,
-0.83935546875,
0.4814453125,
0.431640625,
1.2958984375,
-0.54638671875,
0.11541748046875,
-0.2152099609375,
-0.72119140625,
0.2073974609375,
0.09161376953125,
0.1204833984375,
0.1668701171875,
-0.60595703125,
-0.91162109375,
-0.4169921875,
0.0947265625,
-0.591796875,
0.130859375,
-0.395751953125,
0.9931640625,
0.6025390625,
-0.7978515625,
0.7666015625,
0.96826171875,
-0.7587890625,
0.7353515625,
-0.0287628173828125,
0.72216796875,
-0.6875,
1.298828125,
0.50830078125,
0.309814453125,
-0.5673828125,
-0.67529296875,
-0.55615234375,
0.218017578125,
0.152099609375,
-0.439697265625,
-0.638671875,
0.298828125,
-0.1484375,
-0.876953125,
0.44677734375,
-1.3798828125,
-0.399169921875,
-0.39794921875,
-0.712890625,
0.9921875,
1.0966796875,
0.359375,
-0.30615234375,
-0.305908203125,
-0.1746826171875,
0.6064453125,
0.62255859375,
-1.05859375,
0.2218017578125,
0.79541015625,
-0.09698486328125,
0.228515625,
0.356201171875,
-0.51025390625,
-0.6884765625,
0.02679443359375,
0.2314453125,
0.5390625,
0.354736328125,
0.36181640625,
0.51513671875,
0.52978515625,
-1.064453125,
0.21533203125,
-0.55029296875,
0.8544921875,
0.6904296875,
0.54345703125,
0.3076171875,
-0.254150390625,
-0.13232421875,
-0.7763671875,
0.464599609375,
0.3232421875,
0.66845703125,
-0.06353759765625,
0.77392578125,
0.32275390625,
-0.66552734375,
0.86865234375,
-0.8486328125,
0.0278472900390625,
1.68359375,
-0.3505859375,
0.482177734375,
-0.72412109375,
0.02471923828125,
-0.1365966796875,
-0.1907958984375,
0.62841796875,
0.487060546875,
0.5966796875,
-0.2724609375,
-0.422607421875,
-0.1473388671875,
0.022125244140625,
-0.236083984375,
-0.2802734375,
0.1021728515625,
-0.473388671875,
-0.72412109375,
-0.9423828125,
0.317626953125,
0.88134765625,
0.48388671875,
0.50830078125,
0.298095703125,
0.129638671875,
0.7861328125,
0.767578125,
0.0205078125,
0.03399658203125,
-0.7255859375,
1.1455078125,
0.382568359375,
-0.414794921875,
-0.638671875,
-0.416259765625,
-0.395263671875,
0.203369140625,
-0.022552490234375,
-0.10223388671875,
-0.77685546875,
0.370849609375,
-0.123046875,
0.517578125,
-0.5390625,
0.03289794921875,
-0.475341796875,
0.0604248046875,
0.274169921875,
-0.89013671875,
0.296875,
-0.84326171875,
0.56982421875,
0.40087890625,
0.321533203125,
-0.5908203125,
-0.1895751953125,
-0.5986328125,
-0.66650390625,
0.3466796875,
0.39501953125,
0.40478515625,
0.232421875,
-1.443359375,
0.44873046875,
0.297119140625,
-0.71875,
0.36083984375,
-0.36474609375,
0.5771484375,
0.0655517578125,
0.7216796875,
-0.4677734375,
-0.73095703125,
0.1529541015625,
-1.265625,
0.8154296875,
-0.7138671875,
0.5009765625,
0.2425537109375,
-0.1785888671875,
0.050018310546875,
0.4619140625,
-0.08123779296875,
-0.0882568359375,
-0.6552734375,
0.22412109375,
-0.85107421875,
-0.67431640625,
0.73486328125,
-0.13134765625,
-0.4638671875,
0.6494140625,
0.035919189453125,
-0.169189453125,
0.5068359375,
0.416748046875,
-0.5244140625,
0.390625,
-0.52685546875,
0.44287109375,
-0.323486328125,
-0.6767578125,
-0.17529296875,
-0.2418212890625,
0.4501953125,
0.05908203125,
-1.01171875,
0.060516357421875,
-1.11328125,
0.039337158203125,
0.1876220703125,
-0.59814453125,
0.18408203125,
0.1851806640625,
0.12200927734375,
0.0638427734375,
-0.265625,
-0.6201171875,
-0.07659912109375,
-0.78955078125,
-0.41162109375,
0.3173828125,
0.953125,
0.83203125,
-0.28564453125,
-0.272705078125,
0.06097412109375,
0.1170654296875,
-0.1468505859375,
-0.9619140625,
-0.28173828125,
-0.08984375,
-0.366943359375,
-0.307373046875,
0.476806640625,
-0.27294921875,
0.72607421875,
0.9091796875,
-0.0850830078125,
0.72314453125,
0.1392822265625,
-0.6552734375,
1.119140625,
0.321044921875,
-1.1005859375,
-0.60107421875,
0.6806640625,
-0.25634765625,
0.64013671875,
0.0294189453125,
-0.62548828125,
-0.6953125,
-1.2470703125,
0.275634765625,
-0.8623046875,
-0.56396484375,
-1.1689453125,
-0.7958984375,
-0.42236328125,
0.5400390625,
-0.197998046875,
-0.4912109375,
0.1622314453125,
-1.005859375,
0.2109375,
-1.2158203125,
-0.456787109375,
-0.426513671875,
-0.8642578125,
0.391845703125,
1.1298828125,
-0.2061767578125,
0.2099609375,
0.00939178466796875,
-0.066650390625,
0.267333984375,
0.0238494873046875,
-1.11328125,
-0.35498046875,
-0.187744140625,
0.162353515625,
-0.1044921875,
0.0576171875,
-0.43994140625,
0.43115234375,
-0.55224609375,
0.43310546875,
0.2890625,
-0.2489013671875,
-0.050323486328125,
-0.3193359375,
0.865234375,
-0.46044921875,
-0.09967041015625,
-0.35791015625,
0.529296875,
0.480712890625,
0.063232421875,
0.053375244140625,
-0.449462890625,
-0.69189453125,
-0.90087890625,
0.46923828125,
-0.54931640625,
0.268798828125,
-0.55322265625,
0.09197998046875,
1.228515625,
-0.62255859375,
0.55859375,
1.1650390625,
0.04644775390625,
0.275634765625,
-0.461669921875,
0.6181640625,
0.23876953125,
-0.88232421875,
-0.315673828125,
0.1302490234375,
-0.9365234375,
-0.191650390625,
-0.91552734375,
-0.59716796875,
-0.638671875,
-0.1494140625,
1.427734375,
-0.36474609375,
1.16015625,
-0.300537109375,
-0.8427734375,
-0.467529296875,
0.62060546875,
-0.25439453125,
0.591796875,
0.89794921875,
-0.525390625,
-0.240234375,
0.284423828125,
-0.7333984375,
-0.250244140625,
-0.0653076171875,
0.73193359375,
-0.46826171875,
-0.305419921875,
0.7919921875,
0.736328125,
-1.10546875,
-0.98974609375,
-0.39794921875,
-0.321044921875,
-0.591796875,
-0.98681640625,
0.260986328125,
0.59423828125,
-0.60498046875,
0.098388671875,
0.642578125,
-0.2144775390625,
0.5712890625,
-0.22900390625,
0.2232666015625,
-0.7265625,
0.483642578125,
0.495361328125,
-0.2196044921875,
-0.2410888671875,
-1.009765625,
-0.02801513671875,
-0.291748046875,
0.5458984375,
0.6640625,
-0.1187744140625,
0.1309814453125,
0.44140625,
-0.01439666748046875,
0.966796875,
-0.54052734375,
-0.2310791015625,
0.10943603515625,
-0.267578125,
-0.634765625,
-0.1478271484375,
0.1392822265625,
-0.189697265625,
0.57373046875,
-0.8115234375,
-0.10943603515625,
0.65380859375,
0.422607421875,
-0.346923828125,
-1.1591796875,
-0.279296875,
-1.0078125,
-0.56201171875,
-0.62060546875,
-0.66455078125,
-0.454345703125,
0.5341796875,
0.08367919921875,
-0.7080078125,
-0.33935546875,
0.388916015625,
-0.70166015625,
0.77099609375,
-0.367919921875,
0.62060546875,
-0.421630859375,
-0.1832275390625,
-0.91650390625,
-0.018157958984375,
-0.9990234375,
-0.06695556640625,
0.1124267578125,
0.533203125,
-0.62646484375,
0.17333984375,
-0.06488037109375,
0.274658203125,
-0.26220703125,
-0.386474609375,
-0.0552978515625,
0.045013427734375,
-0.1201171875,
0.8017578125,
0.8134765625,
0.1640625,
0.28271484375,
-0.2371826171875,
-0.0888671875,
-0.364990234375,
0.814453125,
0.65771484375,
-0.232177734375,
-0.25390625,
-0.209228515625,
0.2012939453125,
-1.3388671875,
0.329833984375,
-0.1085205078125,
0.248046875,
0.3203125,
-0.1722412109375,
0.2200927734375,
1.4599609375,
-0.333251953125,
0.09210205078125,
-0.1541748046875,
0.109130859375,
0.49951171875,
0.305908203125,
-0.257568359375,
0.3505859375,
-0.0232696533203125,
-0.195556640625,
-0.286865234375,
0.23876953125,
-0.13330078125,
0.5830078125,
-0.39453125,
-0.58203125,
-1.1962890625,
-0.11566162109375,
0.2315673828125,
0.359375,
0.369873046875,
-0.63232421875,
-0.0911865234375,
0.2181396484375,
-0.705078125,
-0.036834716796875,
-0.9443359375,
-0.9873046875,
0.264892578125,
-0.1519775390625,
-0.50830078125,
-0.1663818359375,
-0.11676025390625,
-0.0064849853515625,
-0.1663818359375,
0.1153564453125,
-1.0126953125,
0.2763671875,
0.455810546875,
0.7119140625,
-0.0970458984375,
-0.218994140625,
-0.10662841796875,
0.50341796875,
-0.56103515625,
-0.396484375,
0.1632080078125,
0.8154296875,
0.08123779296875,
-0.242431640625,
-0.30810546875,
0.414306640625,
0.002101898193359375,
0.281005859375,
-0.240966796875,
-0.0904541015625,
-0.1944580078125,
0.69287109375,
-0.89990234375,
-0.00780487060546875,
-0.1475830078125,
0.2305908203125,
0.53515625,
-0.45361328125,
-0.41748046875,
0.96875,
0.796875,
0.127197265625,
0.246826171875,
0.11761474609375,
0.385498046875,
-0.2861328125,
-0.240966796875,
-0.36669921875,
0.85693359375,
0.84814453125,
0.529296875,
-0.146240234375,
0.59033203125,
0.486572265625,
0.0638427734375,
-0.06524658203125,
0.5458984375,
0.272216796875,
-0.278564453125,
0.0187530517578125,
-0.375,
-0.78662109375,
-0.1697998046875,
-0.59521484375,
0.7470703125,
-0.59521484375,
0.1275634765625,
-0.42138671875,
-0.95458984375,
0.994140625,
-0.11602783203125,
-0.291015625,
0.402099609375,
-0.52734375,
0.073486328125,
0.666015625,
-0.1627197265625,
-0.12347412109375,
0.603515625,
0.83056640625,
0.71142578125,
0.697265625,
0.607421875,
0.419189453125,
-1.23046875,
0.326171875,
-0.0233612060546875,
-0.05609130859375,
-0.010528564453125,
-0.167236328125,
-0.93359375,
0.2744140625,
-0.81103515625,
-0.195068359375,
0.49169921875,
-0.8896484375,
-0.2421875,
-0.1522216796875,
0.5673828125,
-0.654296875,
0.139404296875,
0.56298828125,
-0.10064697265625,
-0.34619140625,
1.212890625,
-0.008758544921875,
0.54345703125,
0.284423828125,
0.78466796875,
0.065673828125,
1.6044921875,
0.54931640625,
-0.456298828125,
0.091796875,
0.56201171875,
-0.172607421875,
-0.7001953125,
-0.60986328125,
-0.2646484375,
-0.09423828125,
-0.611328125,
-0.24755859375,
-0.15625,
0.7021484375,
0.1710205078125,
-1.4072265625,
-0.2293701171875,
0.2607421875,
-0.85888671875,
0.91357421875,
0.35302734375,
0.5322265625,
0.03826904296875,
-0.452880859375,
0.065673828125,
-0.703125,
0.35791015625,
-0.2069091796875,
0.4541015625,
-0.625,
-0.327392578125,
-0.95068359375,
-0.580078125,
-0.07916259765625,
-0.303466796875,
-0.271484375,
-0.63818359375,
0.82177734375,
0.298095703125,
0.293212890625,
0.59521484375,
-0.4384765625,
0.28076171875,
1.1953125,
0.94775390625,
-0.12744140625,
1.111328125,
0.56201171875,
-0.076904296875,
0.037994384765625,
-0.337890625,
0.414794921875,
-0.11541748046875,
0.449951171875,
-0.28564453125,
0.168212890625,
-0.52734375,
-0.96484375,
0.0587158203125,
0.441650390625,
0.10443115234375,
-0.96923828125,
-0.9658203125,
-0.4326171875,
-0.98291015625,
-0.049468994140625,
-0.88037109375,
1.0087890625,
-0.2288818359375,
0.343017578125,
0.1805419921875,
-1.0625,
4.09765625,
0.927734375,
0.951171875,
-0.044677734375,
0.298583984375,
1.3779296875,
0.2265625,
-0.65087890625,
-0.63330078125,
-0.435791015625,
0.57080078125,
-0.84033203125,
0.52880859375,
0.7861328125,
0.171630859375,
0.5048828125,
-0.484130859375,
-0.12841796875,
0.36376953125,
-0.81103515625,
-0.72412109375,
0.26708984375,
0.2548828125,
0.9150390625,
0.08355712890625,
0.580078125,
0.79931640625,
-0.330810546875,
-0.392333984375,
-0.87255859375,
0.416015625,
-0.6376953125,
0.7001953125,
-0.330078125,
-0.1943359375,
0.7197265625,
-0.328857421875,
-0.70458984375,
0.12347412109375,
0.2978515625,
-0.3974609375,
0.20166015625,
0.385009765625,
-1.1689453125,
0.0299072265625,
0.5185546875,
-0.60791015625,
0.49755859375,
0.572265625,
-1.568359375,
0.85107421875,
-0.4951171875,
0.0157470703125,
-0.54443359375,
-0.27392578125,
0.1517333984375,
0.154052734375,
0.177490234375,
-0.07952880859375,
0.246826171875,
0.489013671875,
0.64111328125,
-0.0247955322265625,
0.9453125,
-1.087890625,
0.84521484375,
-0.07806396484375,
0.6611328125,
-0.61572265625,
-0.137939453125,
-0.2841796875,
-0.44140625,
-0.16748046875,
-0.3095703125,
0.60400390625,
0.281494140625,
0.314208984375,
0.416259765625,
0.234619140625,
-0.51123046875,
0.1695556640625,
-0.390380859375,
-0.299560546875,
-0.560546875,
0.221923828125,
1.4296875,
-0.88623046875,
-0.359619140625,
0.02630615234375,
0.82421875,
0.7109375,
1.146484375,
0.283935546875,
-0.62353515625,
-0.544921875
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
You are given a string s of length n consisting only of lowercase Latin letters.
A substring of a string is a contiguous subsequence of that string. So, string "forces" is substring of string "codeforces", but string "coder" is not.
Your task is to calculate the number of ways to remove exactly one substring from this string in such a way that all remaining characters are equal (the number of distinct characters either zero or one).
It is guaranteed that there is at least two different characters in s.
Note that you can remove the whole string and it is correct. Also note that you should remove at least one character.
Since the answer can be rather large (not very large though) print it modulo 998244353.
If you are Python programmer, consider using PyPy instead of Python when you submit your code.
Input
The first line of the input contains one integer n (2 ≤ n ≤ 2 ⋅ 10^5) — the length of the string s.
The second line of the input contains the string s of length n consisting only of lowercase Latin letters.
It is guaranteed that there is at least two different characters in s.
Output
Print one integer — the number of ways modulo 998244353 to remove exactly one substring from s in such way that all remaining characters are equal.
Examples
Input
4
abaa
Output
6
Input
7
aacdeee
Output
6
Input
2
az
Output
3
Note
Let s[l; r] be the substring of s from the position l to the position r inclusive.
Then in the first example you can remove the following substrings:
* s[1; 2];
* s[1; 3];
* s[1; 4];
* s[2; 2];
* s[2; 3];
* s[2; 4].
In the second example you can remove the following substrings:
* s[1; 4];
* s[1; 5];
* s[1; 6];
* s[1; 7];
* s[2; 7];
* s[3; 7].
In the third example you can remove the following substrings:
* s[1; 1];
* s[1; 2];
* s[2; 2].
Tags: combinatorics, math, strings
Correct Solution:
```
import sys
from fractions import gcd
from itertools import groupby as gb
from itertools import permutations as perm
from collections import Counter as C
from collections import defaultdict as dd
sys.setrecursionlimit(10**5)
mod = 998244353
n = int(input())
s = input()
if s == s[0]*n:
print(n*(n+1)//2)
exit()
g = gb(s)
gg = gb(s[::-1])
a = 0
a_c,b_c = '',''
b = 0
for k,v in g:
a = len(list(v))
a_c = k
break
for k,v in gg:
b = len(list(v))
b_c = k
break
res = 0
if a_c == b_c:
res += a * b
res += a + b + 1
print(int(res)%mod)
```
| 10,831 | [
0.1727294921875,
0.112548828125,
0.17578125,
0.33203125,
-0.404541015625,
-0.437744140625,
-0.2198486328125,
-0.289306640625,
0.1993408203125,
0.66943359375,
0.68701171875,
-0.2000732421875,
-0.05877685546875,
-1.00390625,
-0.3828125,
0.2191162109375,
-0.51953125,
-0.802734375,
-0.263916015625,
-0.088134765625,
0.1744384765625,
-0.2144775390625,
-1.0654296875,
-0.42626953125,
-0.441650390625,
1.125,
0.5146484375,
-0.062164306640625,
1.1845703125,
1.16015625,
-0.472412109375,
-0.8466796875,
0.46533203125,
-1.1796875,
-0.40966796875,
-0.68408203125,
0.9228515625,
-0.7197265625,
-0.01232147216796875,
-0.5458984375,
0.313232421875,
-0.456298828125,
0.68017578125,
-0.87841796875,
-1.208984375,
0.07000732421875,
-0.3193359375,
0.07635498046875,
-0.517578125,
-0.053497314453125,
0.0755615234375,
-0.1304931640625,
0.65673828125,
-0.338134765625,
0.25341796875,
0.268798828125,
0.08062744140625,
0.01363372802734375,
-0.5478515625,
0.330078125,
-0.17236328125,
0.445068359375,
-0.261474609375,
-0.6650390625,
-0.36279296875,
0.1964111328125,
-0.286376953125,
-0.01468658447265625,
0.2109375,
-0.8740234375,
0.0654296875,
0.032989501953125,
-0.6064453125,
-0.439208984375,
-0.298828125,
-0.006137847900390625,
-0.1256103515625,
-0.162109375,
-0.7060546875,
0.8271484375,
-0.1683349609375,
1.0224609375,
0.51416015625,
0.5029296875,
-0.69140625,
-0.487060546875,
0.0728759765625,
0.1871337890625,
0.24609375,
-0.1849365234375,
-0.191162109375,
0.767578125,
-0.80712890625,
-0.042999267578125,
0.2587890625,
0.497314453125,
0.1962890625,
0.350830078125,
0.270263671875,
-0.028106689453125,
0.990234375,
1.0546875,
-0.634765625,
1.1826171875,
-0.3837890625,
-0.1785888671875,
0.53564453125,
-0.01371002197265625,
-0.27978515625,
-0.11834716796875,
-0.3662109375,
-0.440185546875,
0.6865234375,
0.5947265625,
-0.3154296875,
0.95947265625,
-0.328369140625,
0.28466796875,
-0.56298828125,
0.29052734375,
0.53955078125,
0.02874755859375,
0.36181640625,
-0.17431640625,
-0.175048828125,
-0.435791015625,
-0.189208984375,
1.0458984375,
-0.449462890625,
0.2445068359375,
0.72802734375,
-0.13330078125,
0.193115234375,
0.042236328125,
-0.1131591796875,
0.94287109375,
-0.09564208984375,
0.51953125,
0.662109375,
-0.38330078125,
0.8330078125,
0.1436767578125,
-0.0176544189453125,
1.345703125,
0.362548828125,
0.01136016845703125,
0.716796875,
0.235595703125,
-0.6279296875,
0.1572265625,
-1.12890625,
0.8671875,
0.36669921875,
0.21533203125,
-0.12481689453125,
-0.08428955078125,
-0.296142578125,
0.67822265625,
0.268310546875,
0.09967041015625,
-0.3603515625,
0.1468505859375,
-0.28076171875,
0.91064453125,
-0.35791015625,
0.7431640625,
-0.37060546875,
-0.431640625,
-0.2410888671875,
-0.281005859375,
0.38720703125,
-0.0762939453125,
-0.34033203125,
0.87060546875,
0.6923828125,
0.77783203125,
0.7294921875,
-0.3349609375,
0.3515625,
0.1552734375,
-0.399169921875,
0.2998046875,
0.300048828125,
0.65966796875,
0.265869140625,
0.2685546875,
0.28955078125,
-0.29736328125,
-0.88134765625,
-0.5146484375,
0.515625,
0.646484375,
-0.466552734375,
0.69482421875,
0.362548828125,
0.06463623046875,
-0.71875,
0.0308990478515625,
-0.2232666015625,
-1.0478515625,
-0.273681640625,
0.7998046875,
-0.224609375,
0.210693359375,
-1.0078125,
-0.334716796875,
0.8232421875,
1.1376953125,
-0.30224609375,
-0.06268310546875,
0.61181640625,
-0.022369384765625,
-0.306396484375,
0.35009765625,
0.049468994140625,
-0.1822509765625,
-0.47998046875,
0.5517578125,
-0.1551513671875,
0.11822509765625,
0.06634521484375,
0.767578125,
0.406982421875,
0.3818359375,
-0.1983642578125,
-0.482421875,
0.1634521484375,
1.3271484375,
0.138427734375,
0.544921875,
0.46142578125,
1.0361328125,
0.5849609375,
0.60205078125,
0.4619140625,
0.1251220703125,
0.6328125,
1.201171875,
0.080322265625,
0.2705078125,
-0.032501220703125,
0.5625,
0.5693359375,
0.5439453125,
0.179443359375,
0.371826171875,
-0.25830078125,
-0.0875244140625,
-0.86376953125,
0.1724853515625,
-0.38330078125,
0.5302734375,
0.134521484375,
0.59228515625,
-0.5126953125,
-0.30322265625,
0.0526123046875,
0.6884765625,
-1.068359375,
-0.2099609375,
0.170654296875,
-0.0875244140625,
0.1744384765625,
0.06378173828125,
0.529296875,
0.2296142578125,
0.7646484375,
0.1925048828125,
-0.19140625,
-0.69775390625,
-0.78271484375,
-0.92822265625,
-0.7978515625,
-0.5712890625,
-0.75146484375,
-0.0120391845703125,
-0.03387451171875,
-0.88330078125,
0.375,
-0.244384765625,
-0.2225341796875,
0.53173828125,
-0.68505859375,
0.423583984375,
-0.357421875,
0.53271484375,
-0.46923828125,
0.375,
0.1903076171875,
1.095703125,
-0.634765625,
-0.2880859375,
-0.385009765625,
-0.5703125,
-0.004444122314453125,
0.1878662109375,
0.337646484375,
-0.341064453125,
-0.72216796875,
-0.81494140625,
-0.210693359375,
-0.282958984375,
-0.478515625,
0.343017578125,
-0.6201171875,
0.744140625,
0.595703125,
-0.6533203125,
0.71630859375,
1.1455078125,
-0.7861328125,
0.521484375,
0.220703125,
0.0281524658203125,
-0.7548828125,
1.2978515625,
0.50634765625,
0.5234375,
-0.73291015625,
-0.681640625,
-0.370361328125,
0.1793212890625,
0.263916015625,
-0.422607421875,
-0.44189453125,
0.52978515625,
-0.2734375,
-0.919921875,
0.72509765625,
-1.365234375,
-0.3828125,
-0.4453125,
-0.21923828125,
0.5888671875,
0.86572265625,
0.041351318359375,
-0.260986328125,
-0.298095703125,
-0.23876953125,
0.5888671875,
0.1807861328125,
-0.7431640625,
-0.2646484375,
0.5634765625,
-0.22265625,
0.00592803955078125,
-0.004703521728515625,
-0.5478515625,
0.0872802734375,
-0.25439453125,
0.041412353515625,
1.095703125,
0.2392578125,
0.54931640625,
0.541015625,
0.86328125,
-0.8125,
-0.36083984375,
-0.0458984375,
1.06640625,
0.60693359375,
0.5732421875,
0.4775390625,
-0.387451171875,
-0.7568359375,
-0.94482421875,
0.10650634765625,
0.04425048828125,
0.5927734375,
-0.6845703125,
0.38623046875,
0.09735107421875,
-0.6142578125,
0.4423828125,
-0.7783203125,
0.11004638671875,
1.18359375,
-0.293212890625,
0.64990234375,
-0.447998046875,
0.4189453125,
0.166748046875,
0.186279296875,
0.33642578125,
0.53271484375,
0.52685546875,
-0.470703125,
-0.64208984375,
-0.6630859375,
-0.150146484375,
0.1041259765625,
-0.654296875,
0.08160400390625,
-0.207763671875,
0.0308837890625,
-0.67626953125,
0.33544921875,
0.849609375,
0.42529296875,
0.311279296875,
0.40185546875,
0.0843505859375,
0.301025390625,
0.67529296875,
-0.50244140625,
0.08135986328125,
-0.423583984375,
0.58203125,
0.199462890625,
-0.2135009765625,
-0.409423828125,
-0.51025390625,
-0.01186370849609375,
0.498046875,
0.39892578125,
-0.1898193359375,
-0.9931640625,
0.26513671875,
-0.1461181640625,
0.865234375,
-0.7041015625,
-0.0577392578125,
-0.5751953125,
0.68408203125,
0.140869140625,
-0.97900390625,
0.1400146484375,
-1.171875,
0.783203125,
0.448486328125,
-0.056243896484375,
-0.72119140625,
-0.15869140625,
-0.62158203125,
-0.6650390625,
0.43359375,
0.97412109375,
-0.10235595703125,
-0.04241943359375,
-1.23828125,
0.2166748046875,
0.1492919921875,
-0.53466796875,
-0.09918212890625,
0.0274200439453125,
0.4326171875,
0.04656982421875,
0.74658203125,
-0.3359375,
-0.56884765625,
0.0576171875,
-1.1005859375,
0.74267578125,
-0.5576171875,
0.57080078125,
0.06268310546875,
-0.197265625,
0.131103515625,
0.56494140625,
-0.0207366943359375,
0.033905029296875,
-0.18994140625,
0.1263427734375,
-0.9287109375,
-1.2001953125,
0.53271484375,
-0.0657958984375,
-0.376220703125,
0.84423828125,
-0.10791015625,
-0.1405029296875,
0.07916259765625,
0.62646484375,
-0.418701171875,
0.143798828125,
-0.44482421875,
0.55859375,
-0.66064453125,
-0.916015625,
-0.18798828125,
-0.48681640625,
0.916015625,
0.2110595703125,
-0.90478515625,
-0.305908203125,
-0.9140625,
-0.420654296875,
0.007640838623046875,
-0.5126953125,
0.10931396484375,
0.039215087890625,
-0.28857421875,
-0.1851806640625,
-0.265625,
-0.1038818359375,
-0.38134765625,
-0.51025390625,
-0.257568359375,
0.453125,
0.447998046875,
1.1181640625,
-0.007808685302734375,
-0.410888671875,
0.07275390625,
-0.0026988983154296875,
0.053680419921875,
-0.291015625,
-0.374267578125,
-0.25341796875,
-0.1544189453125,
-0.5419921875,
0.388916015625,
0.1217041015625,
0.58642578125,
0.60107421875,
0.035003662109375,
0.264404296875,
0.327880859375,
-0.818359375,
1.1142578125,
0.01171112060546875,
-1.279296875,
-0.7705078125,
0.291259765625,
0.404541015625,
0.51025390625,
0.394775390625,
-0.84375,
-0.60205078125,
-0.89892578125,
0.348388671875,
-0.56005859375,
0.01024627685546875,
-0.93310546875,
-0.54052734375,
-0.57763671875,
0.8173828125,
-0.281005859375,
-0.7998046875,
0.134033203125,
-0.9921875,
0.1343994140625,
-0.86376953125,
-0.29736328125,
-0.459716796875,
-0.66015625,
-0.46728515625,
1.1669921875,
0.36865234375,
0.420654296875,
-0.1304931640625,
-0.1708984375,
0.56103515625,
-0.1055908203125,
-0.7099609375,
-0.374267578125,
-0.137451171875,
-0.222900390625,
-0.2032470703125,
-0.1256103515625,
-0.6669921875,
0.81591796875,
-0.7607421875,
0.435302734375,
-0.272216796875,
-0.2220458984375,
-0.036590576171875,
-0.552734375,
1.10546875,
-0.5009765625,
0.10400390625,
-0.2333984375,
0.68798828125,
0.55810546875,
-0.09295654296875,
-0.03997802734375,
-0.50927734375,
-0.65234375,
-1.17578125,
0.4208984375,
-0.5185546875,
0.1236572265625,
-0.67041015625,
0.0762939453125,
1.365234375,
-0.919921875,
0.38525390625,
0.92529296875,
0.261474609375,
0.09332275390625,
-0.720703125,
0.6240234375,
0.58984375,
-0.54345703125,
0.1602783203125,
0.212158203125,
-0.953125,
-0.057891845703125,
-0.25439453125,
-0.93408203125,
-0.8134765625,
0.403076171875,
1.5498046875,
-0.59912109375,
0.6083984375,
-0.283203125,
-1.03125,
-0.54150390625,
0.66259765625,
0.490966796875,
0.728515625,
1.263671875,
0.033905029296875,
-0.031494140625,
0.44970703125,
-0.167724609375,
-0.163818359375,
-0.483642578125,
1.26171875,
-0.52978515625,
-0.260986328125,
0.84765625,
0.92919921875,
-1.2626953125,
-0.80224609375,
0.23388671875,
0.1514892578125,
-0.43310546875,
-0.8046875,
-0.025543212890625,
0.256103515625,
-0.85791015625,
-0.0599365234375,
0.51025390625,
-0.087890625,
0.2626953125,
0.058807373046875,
0.5576171875,
-0.55029296875,
0.5791015625,
0.415283203125,
-0.351318359375,
-0.4404296875,
-0.80908203125,
-0.463623046875,
-0.1148681640625,
-0.03851318359375,
0.92919921875,
-0.4052734375,
0.203369140625,
0.411376953125,
-0.1324462890625,
0.29931640625,
-0.385498046875,
-0.08868408203125,
0.1845703125,
-0.31494140625,
-0.8076171875,
-0.00039315223693847656,
0.1767578125,
0.01409912109375,
0.6552734375,
-0.45703125,
0.125,
0.07891845703125,
0.08123779296875,
-0.5380859375,
-0.53076171875,
-0.310302734375,
-1.2626953125,
-0.5576171875,
-0.81298828125,
-0.869140625,
-0.4326171875,
0.541015625,
-0.030975341796875,
-0.5263671875,
0.052642822265625,
0.439453125,
-0.666015625,
0.787109375,
-0.405517578125,
0.437255859375,
-0.6640625,
-0.52490234375,
-0.64306640625,
0.08905029296875,
-0.145751953125,
-0.327392578125,
-0.383544921875,
0.6669921875,
-0.265625,
0.390625,
-0.193603515625,
0.513671875,
-0.2783203125,
-1.0009765625,
-0.2061767578125,
-0.043792724609375,
-0.21435546875,
0.98828125,
1.12109375,
0.320556640625,
0.0885009765625,
-0.294189453125,
-0.489501953125,
-0.350341796875,
0.50341796875,
0.84765625,
-0.08001708984375,
-0.128662109375,
-0.281494140625,
0.391357421875,
-1.0146484375,
0.1156005859375,
-0.1600341796875,
0.157470703125,
0.192626953125,
-0.262451171875,
0.176513671875,
1.091796875,
-0.306396484375,
0.21484375,
0.08221435546875,
0.2462158203125,
0.1507568359375,
0.04315185546875,
0.250244140625,
0.300537109375,
0.01018524169921875,
-0.369140625,
-0.1610107421875,
0.477783203125,
-0.051849365234375,
0.451904296875,
-0.104736328125,
-1.015625,
-0.8330078125,
-0.442138671875,
-0.238525390625,
0.381591796875,
0.29541015625,
-0.453125,
-0.0665283203125,
0.1259765625,
-0.353271484375,
-0.133056640625,
-1.0341796875,
-1.208984375,
0.630859375,
-0.11907958984375,
-0.79541015625,
-0.46240234375,
-0.442626953125,
-0.08392333984375,
-0.07843017578125,
0.6064453125,
-0.134033203125,
0.603515625,
-0.2193603515625,
0.480224609375,
-0.172607421875,
0.1260986328125,
0.126953125,
0.642578125,
-0.7490234375,
-0.6572265625,
0.4033203125,
0.95361328125,
0.1298828125,
-0.313720703125,
-0.274169921875,
0.317138671875,
-0.0013303756713867188,
0.2197265625,
-0.3212890625,
0.161865234375,
-0.2607421875,
0.423583984375,
-0.79541015625,
-0.1400146484375,
-0.1676025390625,
0.58837890625,
0.1165771484375,
-0.6240234375,
-0.71044921875,
0.939453125,
0.82763671875,
-0.32470703125,
0.70263671875,
0.09539794921875,
0.1575927734375,
-0.2208251953125,
-0.129638671875,
-0.381103515625,
0.58837890625,
0.48193359375,
0.611328125,
-0.4443359375,
0.321533203125,
0.7919921875,
0.436767578125,
-0.080322265625,
0.362548828125,
-0.09161376953125,
0.00930023193359375,
0.004856109619140625,
-0.428955078125,
-0.354736328125,
0.07891845703125,
-0.9560546875,
0.436767578125,
-0.68017578125,
0.1949462890625,
-0.4091796875,
-0.80322265625,
0.69287109375,
-0.11724853515625,
-0.1400146484375,
0.334228515625,
-0.55810546875,
0.09478759765625,
0.88623046875,
-0.136962890625,
-0.3642578125,
0.5576171875,
0.84423828125,
0.7353515625,
0.66943359375,
0.293701171875,
0.57470703125,
-0.59033203125,
0.1778564453125,
-0.0106048583984375,
-0.03839111328125,
-0.462158203125,
-0.7373046875,
-1.0009765625,
0.3671875,
-0.488525390625,
-0.336669921875,
0.417724609375,
-0.595703125,
0.21923828125,
-0.0258941650390625,
0.69287109375,
-0.223876953125,
0.1151123046875,
0.33935546875,
-0.271240234375,
-0.92919921875,
1.068359375,
-0.249267578125,
0.52490234375,
-0.180908203125,
0.9296875,
-0.01849365234375,
1.44140625,
0.480712890625,
-0.408447265625,
0.12103271484375,
0.55908203125,
-0.39697265625,
-0.93603515625,
-0.7060546875,
-0.25146484375,
-0.109375,
-0.84228515625,
-0.29248046875,
0.2197265625,
1.080078125,
-0.2032470703125,
-1.0244140625,
-0.1761474609375,
0.282958984375,
-1.095703125,
0.434814453125,
0.1611328125,
-0.0806884765625,
0.1729736328125,
-0.0235443115234375,
-0.059173583984375,
-1.0263671875,
0.09771728515625,
-0.818359375,
0.1866455078125,
-0.96044921875,
-0.1268310546875,
-0.814453125,
-0.76708984375,
0.05322265625,
-0.435791015625,
-0.2056884765625,
-0.7158203125,
0.45361328125,
0.76171875,
0.456787109375,
0.0170135498046875,
-0.2340087890625,
0.125,
1.2587890625,
0.6787109375,
0.1478271484375,
0.84130859375,
0.1671142578125,
-0.346435546875,
-0.0972900390625,
-0.0794677734375,
0.6025390625,
-0.363037109375,
0.064697265625,
-0.3154296875,
0.1573486328125,
-0.9580078125,
-1.4677734375,
0.418212890625,
0.95556640625,
0.5087890625,
-0.412353515625,
-0.91943359375,
-0.288330078125,
-0.4189453125,
0.00394439697265625,
-0.68994140625,
0.6748046875,
-0.072998046875,
-0.166259765625,
-0.6201171875,
-1.0205078125,
4.2578125,
0.9052734375,
1.2841796875,
0.30419921875,
0.494140625,
0.69677734375,
0.27685546875,
-0.339599609375,
-0.1199951171875,
-0.2059326171875,
0.54443359375,
-0.423583984375,
0.07379150390625,
0.51904296875,
0.380859375,
0.65283203125,
-0.365966796875,
0.1654052734375,
0.173583984375,
-0.62646484375,
-0.85107421875,
0.3125,
-0.01322174072265625,
0.5947265625,
-0.2203369140625,
0.273681640625,
0.4658203125,
-0.6689453125,
-0.3271484375,
-0.765625,
0.392578125,
-0.333740234375,
0.97021484375,
0.2261962890625,
0.286376953125,
0.360107421875,
-0.07342529296875,
-0.125244140625,
-0.343994140625,
0.247314453125,
-0.0684814453125,
-0.12176513671875,
0.6787109375,
-0.76025390625,
-0.058197021484375,
0.626953125,
-0.5849609375,
0.460205078125,
0.55615234375,
-0.8828125,
0.77490234375,
-0.487548828125,
0.560546875,
-0.97705078125,
-0.27490234375,
0.06640625,
0.2171630859375,
0.0631103515625,
-0.34814453125,
0.12841796875,
0.4130859375,
0.689453125,
0.148193359375,
0.9619140625,
-1.0908203125,
0.3408203125,
0.037139892578125,
0.381591796875,
-0.6689453125,
-0.087890625,
-0.3359375,
-0.48681640625,
-0.1407470703125,
-0.5380859375,
0.3046875,
0.7490234375,
-0.209228515625,
0.787109375,
0.74560546875,
-0.626953125,
0.1412353515625,
-0.2337646484375,
-0.30126953125,
-0.822265625,
0.64404296875,
1.3388671875,
-0.759765625,
-0.09234619140625,
-0.210693359375,
0.56005859375,
0.4931640625,
0.9609375,
0.048065185546875,
-0.67529296875,
-0.192138671875
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
You are given a string s of length n consisting only of lowercase Latin letters.
A substring of a string is a contiguous subsequence of that string. So, string "forces" is substring of string "codeforces", but string "coder" is not.
Your task is to calculate the number of ways to remove exactly one substring from this string in such a way that all remaining characters are equal (the number of distinct characters either zero or one).
It is guaranteed that there is at least two different characters in s.
Note that you can remove the whole string and it is correct. Also note that you should remove at least one character.
Since the answer can be rather large (not very large though) print it modulo 998244353.
If you are Python programmer, consider using PyPy instead of Python when you submit your code.
Input
The first line of the input contains one integer n (2 ≤ n ≤ 2 ⋅ 10^5) — the length of the string s.
The second line of the input contains the string s of length n consisting only of lowercase Latin letters.
It is guaranteed that there is at least two different characters in s.
Output
Print one integer — the number of ways modulo 998244353 to remove exactly one substring from s in such way that all remaining characters are equal.
Examples
Input
4
abaa
Output
6
Input
7
aacdeee
Output
6
Input
2
az
Output
3
Note
Let s[l; r] be the substring of s from the position l to the position r inclusive.
Then in the first example you can remove the following substrings:
* s[1; 2];
* s[1; 3];
* s[1; 4];
* s[2; 2];
* s[2; 3];
* s[2; 4].
In the second example you can remove the following substrings:
* s[1; 4];
* s[1; 5];
* s[1; 6];
* s[1; 7];
* s[2; 7];
* s[3; 7].
In the third example you can remove the following substrings:
* s[1; 1];
* s[1; 2];
* s[2; 2].
Tags: combinatorics, math, strings
Correct Solution:
```
MOD = 998244353
n = int(input())
s = input()
pref = s[0]
suff = s[-1]
lpref = 0
lsuff = 0
for i in range(len(s)):
if s[i] == pref:
lpref = lpref + 1
else:
break
for i in range(len(s)):
if s[len(s)-1-i] == suff:
lsuff = lsuff + 1
else:
break
if pref == suff:
res = (((lpref+1) % MOD) * ((lsuff+1) % MOD)) % MOD
else:
res = (lpref + lsuff + 1) % MOD
print(res)
```
| 10,832 | [
0.1727294921875,
0.112548828125,
0.17578125,
0.33203125,
-0.404541015625,
-0.437744140625,
-0.2198486328125,
-0.289306640625,
0.1993408203125,
0.66943359375,
0.68701171875,
-0.2000732421875,
-0.05877685546875,
-1.00390625,
-0.3828125,
0.2191162109375,
-0.51953125,
-0.802734375,
-0.263916015625,
-0.088134765625,
0.1744384765625,
-0.2144775390625,
-1.0654296875,
-0.42626953125,
-0.441650390625,
1.125,
0.5146484375,
-0.062164306640625,
1.1845703125,
1.16015625,
-0.472412109375,
-0.8466796875,
0.46533203125,
-1.1796875,
-0.40966796875,
-0.68408203125,
0.9228515625,
-0.7197265625,
-0.01232147216796875,
-0.5458984375,
0.313232421875,
-0.456298828125,
0.68017578125,
-0.87841796875,
-1.208984375,
0.07000732421875,
-0.3193359375,
0.07635498046875,
-0.517578125,
-0.053497314453125,
0.0755615234375,
-0.1304931640625,
0.65673828125,
-0.338134765625,
0.25341796875,
0.268798828125,
0.08062744140625,
0.01363372802734375,
-0.5478515625,
0.330078125,
-0.17236328125,
0.445068359375,
-0.261474609375,
-0.6650390625,
-0.36279296875,
0.1964111328125,
-0.286376953125,
-0.01468658447265625,
0.2109375,
-0.8740234375,
0.0654296875,
0.032989501953125,
-0.6064453125,
-0.439208984375,
-0.298828125,
-0.006137847900390625,
-0.1256103515625,
-0.162109375,
-0.7060546875,
0.8271484375,
-0.1683349609375,
1.0224609375,
0.51416015625,
0.5029296875,
-0.69140625,
-0.487060546875,
0.0728759765625,
0.1871337890625,
0.24609375,
-0.1849365234375,
-0.191162109375,
0.767578125,
-0.80712890625,
-0.042999267578125,
0.2587890625,
0.497314453125,
0.1962890625,
0.350830078125,
0.270263671875,
-0.028106689453125,
0.990234375,
1.0546875,
-0.634765625,
1.1826171875,
-0.3837890625,
-0.1785888671875,
0.53564453125,
-0.01371002197265625,
-0.27978515625,
-0.11834716796875,
-0.3662109375,
-0.440185546875,
0.6865234375,
0.5947265625,
-0.3154296875,
0.95947265625,
-0.328369140625,
0.28466796875,
-0.56298828125,
0.29052734375,
0.53955078125,
0.02874755859375,
0.36181640625,
-0.17431640625,
-0.175048828125,
-0.435791015625,
-0.189208984375,
1.0458984375,
-0.449462890625,
0.2445068359375,
0.72802734375,
-0.13330078125,
0.193115234375,
0.042236328125,
-0.1131591796875,
0.94287109375,
-0.09564208984375,
0.51953125,
0.662109375,
-0.38330078125,
0.8330078125,
0.1436767578125,
-0.0176544189453125,
1.345703125,
0.362548828125,
0.01136016845703125,
0.716796875,
0.235595703125,
-0.6279296875,
0.1572265625,
-1.12890625,
0.8671875,
0.36669921875,
0.21533203125,
-0.12481689453125,
-0.08428955078125,
-0.296142578125,
0.67822265625,
0.268310546875,
0.09967041015625,
-0.3603515625,
0.1468505859375,
-0.28076171875,
0.91064453125,
-0.35791015625,
0.7431640625,
-0.37060546875,
-0.431640625,
-0.2410888671875,
-0.281005859375,
0.38720703125,
-0.0762939453125,
-0.34033203125,
0.87060546875,
0.6923828125,
0.77783203125,
0.7294921875,
-0.3349609375,
0.3515625,
0.1552734375,
-0.399169921875,
0.2998046875,
0.300048828125,
0.65966796875,
0.265869140625,
0.2685546875,
0.28955078125,
-0.29736328125,
-0.88134765625,
-0.5146484375,
0.515625,
0.646484375,
-0.466552734375,
0.69482421875,
0.362548828125,
0.06463623046875,
-0.71875,
0.0308990478515625,
-0.2232666015625,
-1.0478515625,
-0.273681640625,
0.7998046875,
-0.224609375,
0.210693359375,
-1.0078125,
-0.334716796875,
0.8232421875,
1.1376953125,
-0.30224609375,
-0.06268310546875,
0.61181640625,
-0.022369384765625,
-0.306396484375,
0.35009765625,
0.049468994140625,
-0.1822509765625,
-0.47998046875,
0.5517578125,
-0.1551513671875,
0.11822509765625,
0.06634521484375,
0.767578125,
0.406982421875,
0.3818359375,
-0.1983642578125,
-0.482421875,
0.1634521484375,
1.3271484375,
0.138427734375,
0.544921875,
0.46142578125,
1.0361328125,
0.5849609375,
0.60205078125,
0.4619140625,
0.1251220703125,
0.6328125,
1.201171875,
0.080322265625,
0.2705078125,
-0.032501220703125,
0.5625,
0.5693359375,
0.5439453125,
0.179443359375,
0.371826171875,
-0.25830078125,
-0.0875244140625,
-0.86376953125,
0.1724853515625,
-0.38330078125,
0.5302734375,
0.134521484375,
0.59228515625,
-0.5126953125,
-0.30322265625,
0.0526123046875,
0.6884765625,
-1.068359375,
-0.2099609375,
0.170654296875,
-0.0875244140625,
0.1744384765625,
0.06378173828125,
0.529296875,
0.2296142578125,
0.7646484375,
0.1925048828125,
-0.19140625,
-0.69775390625,
-0.78271484375,
-0.92822265625,
-0.7978515625,
-0.5712890625,
-0.75146484375,
-0.0120391845703125,
-0.03387451171875,
-0.88330078125,
0.375,
-0.244384765625,
-0.2225341796875,
0.53173828125,
-0.68505859375,
0.423583984375,
-0.357421875,
0.53271484375,
-0.46923828125,
0.375,
0.1903076171875,
1.095703125,
-0.634765625,
-0.2880859375,
-0.385009765625,
-0.5703125,
-0.004444122314453125,
0.1878662109375,
0.337646484375,
-0.341064453125,
-0.72216796875,
-0.81494140625,
-0.210693359375,
-0.282958984375,
-0.478515625,
0.343017578125,
-0.6201171875,
0.744140625,
0.595703125,
-0.6533203125,
0.71630859375,
1.1455078125,
-0.7861328125,
0.521484375,
0.220703125,
0.0281524658203125,
-0.7548828125,
1.2978515625,
0.50634765625,
0.5234375,
-0.73291015625,
-0.681640625,
-0.370361328125,
0.1793212890625,
0.263916015625,
-0.422607421875,
-0.44189453125,
0.52978515625,
-0.2734375,
-0.919921875,
0.72509765625,
-1.365234375,
-0.3828125,
-0.4453125,
-0.21923828125,
0.5888671875,
0.86572265625,
0.041351318359375,
-0.260986328125,
-0.298095703125,
-0.23876953125,
0.5888671875,
0.1807861328125,
-0.7431640625,
-0.2646484375,
0.5634765625,
-0.22265625,
0.00592803955078125,
-0.004703521728515625,
-0.5478515625,
0.0872802734375,
-0.25439453125,
0.041412353515625,
1.095703125,
0.2392578125,
0.54931640625,
0.541015625,
0.86328125,
-0.8125,
-0.36083984375,
-0.0458984375,
1.06640625,
0.60693359375,
0.5732421875,
0.4775390625,
-0.387451171875,
-0.7568359375,
-0.94482421875,
0.10650634765625,
0.04425048828125,
0.5927734375,
-0.6845703125,
0.38623046875,
0.09735107421875,
-0.6142578125,
0.4423828125,
-0.7783203125,
0.11004638671875,
1.18359375,
-0.293212890625,
0.64990234375,
-0.447998046875,
0.4189453125,
0.166748046875,
0.186279296875,
0.33642578125,
0.53271484375,
0.52685546875,
-0.470703125,
-0.64208984375,
-0.6630859375,
-0.150146484375,
0.1041259765625,
-0.654296875,
0.08160400390625,
-0.207763671875,
0.0308837890625,
-0.67626953125,
0.33544921875,
0.849609375,
0.42529296875,
0.311279296875,
0.40185546875,
0.0843505859375,
0.301025390625,
0.67529296875,
-0.50244140625,
0.08135986328125,
-0.423583984375,
0.58203125,
0.199462890625,
-0.2135009765625,
-0.409423828125,
-0.51025390625,
-0.01186370849609375,
0.498046875,
0.39892578125,
-0.1898193359375,
-0.9931640625,
0.26513671875,
-0.1461181640625,
0.865234375,
-0.7041015625,
-0.0577392578125,
-0.5751953125,
0.68408203125,
0.140869140625,
-0.97900390625,
0.1400146484375,
-1.171875,
0.783203125,
0.448486328125,
-0.056243896484375,
-0.72119140625,
-0.15869140625,
-0.62158203125,
-0.6650390625,
0.43359375,
0.97412109375,
-0.10235595703125,
-0.04241943359375,
-1.23828125,
0.2166748046875,
0.1492919921875,
-0.53466796875,
-0.09918212890625,
0.0274200439453125,
0.4326171875,
0.04656982421875,
0.74658203125,
-0.3359375,
-0.56884765625,
0.0576171875,
-1.1005859375,
0.74267578125,
-0.5576171875,
0.57080078125,
0.06268310546875,
-0.197265625,
0.131103515625,
0.56494140625,
-0.0207366943359375,
0.033905029296875,
-0.18994140625,
0.1263427734375,
-0.9287109375,
-1.2001953125,
0.53271484375,
-0.0657958984375,
-0.376220703125,
0.84423828125,
-0.10791015625,
-0.1405029296875,
0.07916259765625,
0.62646484375,
-0.418701171875,
0.143798828125,
-0.44482421875,
0.55859375,
-0.66064453125,
-0.916015625,
-0.18798828125,
-0.48681640625,
0.916015625,
0.2110595703125,
-0.90478515625,
-0.305908203125,
-0.9140625,
-0.420654296875,
0.007640838623046875,
-0.5126953125,
0.10931396484375,
0.039215087890625,
-0.28857421875,
-0.1851806640625,
-0.265625,
-0.1038818359375,
-0.38134765625,
-0.51025390625,
-0.257568359375,
0.453125,
0.447998046875,
1.1181640625,
-0.007808685302734375,
-0.410888671875,
0.07275390625,
-0.0026988983154296875,
0.053680419921875,
-0.291015625,
-0.374267578125,
-0.25341796875,
-0.1544189453125,
-0.5419921875,
0.388916015625,
0.1217041015625,
0.58642578125,
0.60107421875,
0.035003662109375,
0.264404296875,
0.327880859375,
-0.818359375,
1.1142578125,
0.01171112060546875,
-1.279296875,
-0.7705078125,
0.291259765625,
0.404541015625,
0.51025390625,
0.394775390625,
-0.84375,
-0.60205078125,
-0.89892578125,
0.348388671875,
-0.56005859375,
0.01024627685546875,
-0.93310546875,
-0.54052734375,
-0.57763671875,
0.8173828125,
-0.281005859375,
-0.7998046875,
0.134033203125,
-0.9921875,
0.1343994140625,
-0.86376953125,
-0.29736328125,
-0.459716796875,
-0.66015625,
-0.46728515625,
1.1669921875,
0.36865234375,
0.420654296875,
-0.1304931640625,
-0.1708984375,
0.56103515625,
-0.1055908203125,
-0.7099609375,
-0.374267578125,
-0.137451171875,
-0.222900390625,
-0.2032470703125,
-0.1256103515625,
-0.6669921875,
0.81591796875,
-0.7607421875,
0.435302734375,
-0.272216796875,
-0.2220458984375,
-0.036590576171875,
-0.552734375,
1.10546875,
-0.5009765625,
0.10400390625,
-0.2333984375,
0.68798828125,
0.55810546875,
-0.09295654296875,
-0.03997802734375,
-0.50927734375,
-0.65234375,
-1.17578125,
0.4208984375,
-0.5185546875,
0.1236572265625,
-0.67041015625,
0.0762939453125,
1.365234375,
-0.919921875,
0.38525390625,
0.92529296875,
0.261474609375,
0.09332275390625,
-0.720703125,
0.6240234375,
0.58984375,
-0.54345703125,
0.1602783203125,
0.212158203125,
-0.953125,
-0.057891845703125,
-0.25439453125,
-0.93408203125,
-0.8134765625,
0.403076171875,
1.5498046875,
-0.59912109375,
0.6083984375,
-0.283203125,
-1.03125,
-0.54150390625,
0.66259765625,
0.490966796875,
0.728515625,
1.263671875,
0.033905029296875,
-0.031494140625,
0.44970703125,
-0.167724609375,
-0.163818359375,
-0.483642578125,
1.26171875,
-0.52978515625,
-0.260986328125,
0.84765625,
0.92919921875,
-1.2626953125,
-0.80224609375,
0.23388671875,
0.1514892578125,
-0.43310546875,
-0.8046875,
-0.025543212890625,
0.256103515625,
-0.85791015625,
-0.0599365234375,
0.51025390625,
-0.087890625,
0.2626953125,
0.058807373046875,
0.5576171875,
-0.55029296875,
0.5791015625,
0.415283203125,
-0.351318359375,
-0.4404296875,
-0.80908203125,
-0.463623046875,
-0.1148681640625,
-0.03851318359375,
0.92919921875,
-0.4052734375,
0.203369140625,
0.411376953125,
-0.1324462890625,
0.29931640625,
-0.385498046875,
-0.08868408203125,
0.1845703125,
-0.31494140625,
-0.8076171875,
-0.00039315223693847656,
0.1767578125,
0.01409912109375,
0.6552734375,
-0.45703125,
0.125,
0.07891845703125,
0.08123779296875,
-0.5380859375,
-0.53076171875,
-0.310302734375,
-1.2626953125,
-0.5576171875,
-0.81298828125,
-0.869140625,
-0.4326171875,
0.541015625,
-0.030975341796875,
-0.5263671875,
0.052642822265625,
0.439453125,
-0.666015625,
0.787109375,
-0.405517578125,
0.437255859375,
-0.6640625,
-0.52490234375,
-0.64306640625,
0.08905029296875,
-0.145751953125,
-0.327392578125,
-0.383544921875,
0.6669921875,
-0.265625,
0.390625,
-0.193603515625,
0.513671875,
-0.2783203125,
-1.0009765625,
-0.2061767578125,
-0.043792724609375,
-0.21435546875,
0.98828125,
1.12109375,
0.320556640625,
0.0885009765625,
-0.294189453125,
-0.489501953125,
-0.350341796875,
0.50341796875,
0.84765625,
-0.08001708984375,
-0.128662109375,
-0.281494140625,
0.391357421875,
-1.0146484375,
0.1156005859375,
-0.1600341796875,
0.157470703125,
0.192626953125,
-0.262451171875,
0.176513671875,
1.091796875,
-0.306396484375,
0.21484375,
0.08221435546875,
0.2462158203125,
0.1507568359375,
0.04315185546875,
0.250244140625,
0.300537109375,
0.01018524169921875,
-0.369140625,
-0.1610107421875,
0.477783203125,
-0.051849365234375,
0.451904296875,
-0.104736328125,
-1.015625,
-0.8330078125,
-0.442138671875,
-0.238525390625,
0.381591796875,
0.29541015625,
-0.453125,
-0.0665283203125,
0.1259765625,
-0.353271484375,
-0.133056640625,
-1.0341796875,
-1.208984375,
0.630859375,
-0.11907958984375,
-0.79541015625,
-0.46240234375,
-0.442626953125,
-0.08392333984375,
-0.07843017578125,
0.6064453125,
-0.134033203125,
0.603515625,
-0.2193603515625,
0.480224609375,
-0.172607421875,
0.1260986328125,
0.126953125,
0.642578125,
-0.7490234375,
-0.6572265625,
0.4033203125,
0.95361328125,
0.1298828125,
-0.313720703125,
-0.274169921875,
0.317138671875,
-0.0013303756713867188,
0.2197265625,
-0.3212890625,
0.161865234375,
-0.2607421875,
0.423583984375,
-0.79541015625,
-0.1400146484375,
-0.1676025390625,
0.58837890625,
0.1165771484375,
-0.6240234375,
-0.71044921875,
0.939453125,
0.82763671875,
-0.32470703125,
0.70263671875,
0.09539794921875,
0.1575927734375,
-0.2208251953125,
-0.129638671875,
-0.381103515625,
0.58837890625,
0.48193359375,
0.611328125,
-0.4443359375,
0.321533203125,
0.7919921875,
0.436767578125,
-0.080322265625,
0.362548828125,
-0.09161376953125,
0.00930023193359375,
0.004856109619140625,
-0.428955078125,
-0.354736328125,
0.07891845703125,
-0.9560546875,
0.436767578125,
-0.68017578125,
0.1949462890625,
-0.4091796875,
-0.80322265625,
0.69287109375,
-0.11724853515625,
-0.1400146484375,
0.334228515625,
-0.55810546875,
0.09478759765625,
0.88623046875,
-0.136962890625,
-0.3642578125,
0.5576171875,
0.84423828125,
0.7353515625,
0.66943359375,
0.293701171875,
0.57470703125,
-0.59033203125,
0.1778564453125,
-0.0106048583984375,
-0.03839111328125,
-0.462158203125,
-0.7373046875,
-1.0009765625,
0.3671875,
-0.488525390625,
-0.336669921875,
0.417724609375,
-0.595703125,
0.21923828125,
-0.0258941650390625,
0.69287109375,
-0.223876953125,
0.1151123046875,
0.33935546875,
-0.271240234375,
-0.92919921875,
1.068359375,
-0.249267578125,
0.52490234375,
-0.180908203125,
0.9296875,
-0.01849365234375,
1.44140625,
0.480712890625,
-0.408447265625,
0.12103271484375,
0.55908203125,
-0.39697265625,
-0.93603515625,
-0.7060546875,
-0.25146484375,
-0.109375,
-0.84228515625,
-0.29248046875,
0.2197265625,
1.080078125,
-0.2032470703125,
-1.0244140625,
-0.1761474609375,
0.282958984375,
-1.095703125,
0.434814453125,
0.1611328125,
-0.0806884765625,
0.1729736328125,
-0.0235443115234375,
-0.059173583984375,
-1.0263671875,
0.09771728515625,
-0.818359375,
0.1866455078125,
-0.96044921875,
-0.1268310546875,
-0.814453125,
-0.76708984375,
0.05322265625,
-0.435791015625,
-0.2056884765625,
-0.7158203125,
0.45361328125,
0.76171875,
0.456787109375,
0.0170135498046875,
-0.2340087890625,
0.125,
1.2587890625,
0.6787109375,
0.1478271484375,
0.84130859375,
0.1671142578125,
-0.346435546875,
-0.0972900390625,
-0.0794677734375,
0.6025390625,
-0.363037109375,
0.064697265625,
-0.3154296875,
0.1573486328125,
-0.9580078125,
-1.4677734375,
0.418212890625,
0.95556640625,
0.5087890625,
-0.412353515625,
-0.91943359375,
-0.288330078125,
-0.4189453125,
0.00394439697265625,
-0.68994140625,
0.6748046875,
-0.072998046875,
-0.166259765625,
-0.6201171875,
-1.0205078125,
4.2578125,
0.9052734375,
1.2841796875,
0.30419921875,
0.494140625,
0.69677734375,
0.27685546875,
-0.339599609375,
-0.1199951171875,
-0.2059326171875,
0.54443359375,
-0.423583984375,
0.07379150390625,
0.51904296875,
0.380859375,
0.65283203125,
-0.365966796875,
0.1654052734375,
0.173583984375,
-0.62646484375,
-0.85107421875,
0.3125,
-0.01322174072265625,
0.5947265625,
-0.2203369140625,
0.273681640625,
0.4658203125,
-0.6689453125,
-0.3271484375,
-0.765625,
0.392578125,
-0.333740234375,
0.97021484375,
0.2261962890625,
0.286376953125,
0.360107421875,
-0.07342529296875,
-0.125244140625,
-0.343994140625,
0.247314453125,
-0.0684814453125,
-0.12176513671875,
0.6787109375,
-0.76025390625,
-0.058197021484375,
0.626953125,
-0.5849609375,
0.460205078125,
0.55615234375,
-0.8828125,
0.77490234375,
-0.487548828125,
0.560546875,
-0.97705078125,
-0.27490234375,
0.06640625,
0.2171630859375,
0.0631103515625,
-0.34814453125,
0.12841796875,
0.4130859375,
0.689453125,
0.148193359375,
0.9619140625,
-1.0908203125,
0.3408203125,
0.037139892578125,
0.381591796875,
-0.6689453125,
-0.087890625,
-0.3359375,
-0.48681640625,
-0.1407470703125,
-0.5380859375,
0.3046875,
0.7490234375,
-0.209228515625,
0.787109375,
0.74560546875,
-0.626953125,
0.1412353515625,
-0.2337646484375,
-0.30126953125,
-0.822265625,
0.64404296875,
1.3388671875,
-0.759765625,
-0.09234619140625,
-0.210693359375,
0.56005859375,
0.4931640625,
0.9609375,
0.048065185546875,
-0.67529296875,
-0.192138671875
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
You are given a string s of length n consisting only of lowercase Latin letters.
A substring of a string is a contiguous subsequence of that string. So, string "forces" is substring of string "codeforces", but string "coder" is not.
Your task is to calculate the number of ways to remove exactly one substring from this string in such a way that all remaining characters are equal (the number of distinct characters either zero or one).
It is guaranteed that there is at least two different characters in s.
Note that you can remove the whole string and it is correct. Also note that you should remove at least one character.
Since the answer can be rather large (not very large though) print it modulo 998244353.
If you are Python programmer, consider using PyPy instead of Python when you submit your code.
Input
The first line of the input contains one integer n (2 ≤ n ≤ 2 ⋅ 10^5) — the length of the string s.
The second line of the input contains the string s of length n consisting only of lowercase Latin letters.
It is guaranteed that there is at least two different characters in s.
Output
Print one integer — the number of ways modulo 998244353 to remove exactly one substring from s in such way that all remaining characters are equal.
Examples
Input
4
abaa
Output
6
Input
7
aacdeee
Output
6
Input
2
az
Output
3
Note
Let s[l; r] be the substring of s from the position l to the position r inclusive.
Then in the first example you can remove the following substrings:
* s[1; 2];
* s[1; 3];
* s[1; 4];
* s[2; 2];
* s[2; 3];
* s[2; 4].
In the second example you can remove the following substrings:
* s[1; 4];
* s[1; 5];
* s[1; 6];
* s[1; 7];
* s[2; 7];
* s[3; 7].
In the third example you can remove the following substrings:
* s[1; 1];
* s[1; 2];
* s[2; 2].
Tags: combinatorics, math, strings
Correct Solution:
```
modu = 998244353
n = int(input())
s = input()
# first = s[0]
fans = 0
for i in range(n):
if s[i] == s[0]:
fans = fans+1
else:
break
s2 = s[::-1]
lans = 0
for i in range(n):
if s2[i] == s2[0]:
lans = lans+1
else:
break
if s[0]==s2[0] and len(set(s))>1:
print((fans*lans+lans+fans+1)%modu)
elif len(set(s))>1:
print((fans+lans+1)%modu)
else:
print((2**(fans))%modu)
```
| 10,833 | [
0.1727294921875,
0.112548828125,
0.17578125,
0.33203125,
-0.404541015625,
-0.437744140625,
-0.2198486328125,
-0.289306640625,
0.1993408203125,
0.66943359375,
0.68701171875,
-0.2000732421875,
-0.05877685546875,
-1.00390625,
-0.3828125,
0.2191162109375,
-0.51953125,
-0.802734375,
-0.263916015625,
-0.088134765625,
0.1744384765625,
-0.2144775390625,
-1.0654296875,
-0.42626953125,
-0.441650390625,
1.125,
0.5146484375,
-0.062164306640625,
1.1845703125,
1.16015625,
-0.472412109375,
-0.8466796875,
0.46533203125,
-1.1796875,
-0.40966796875,
-0.68408203125,
0.9228515625,
-0.7197265625,
-0.01232147216796875,
-0.5458984375,
0.313232421875,
-0.456298828125,
0.68017578125,
-0.87841796875,
-1.208984375,
0.07000732421875,
-0.3193359375,
0.07635498046875,
-0.517578125,
-0.053497314453125,
0.0755615234375,
-0.1304931640625,
0.65673828125,
-0.338134765625,
0.25341796875,
0.268798828125,
0.08062744140625,
0.01363372802734375,
-0.5478515625,
0.330078125,
-0.17236328125,
0.445068359375,
-0.261474609375,
-0.6650390625,
-0.36279296875,
0.1964111328125,
-0.286376953125,
-0.01468658447265625,
0.2109375,
-0.8740234375,
0.0654296875,
0.032989501953125,
-0.6064453125,
-0.439208984375,
-0.298828125,
-0.006137847900390625,
-0.1256103515625,
-0.162109375,
-0.7060546875,
0.8271484375,
-0.1683349609375,
1.0224609375,
0.51416015625,
0.5029296875,
-0.69140625,
-0.487060546875,
0.0728759765625,
0.1871337890625,
0.24609375,
-0.1849365234375,
-0.191162109375,
0.767578125,
-0.80712890625,
-0.042999267578125,
0.2587890625,
0.497314453125,
0.1962890625,
0.350830078125,
0.270263671875,
-0.028106689453125,
0.990234375,
1.0546875,
-0.634765625,
1.1826171875,
-0.3837890625,
-0.1785888671875,
0.53564453125,
-0.01371002197265625,
-0.27978515625,
-0.11834716796875,
-0.3662109375,
-0.440185546875,
0.6865234375,
0.5947265625,
-0.3154296875,
0.95947265625,
-0.328369140625,
0.28466796875,
-0.56298828125,
0.29052734375,
0.53955078125,
0.02874755859375,
0.36181640625,
-0.17431640625,
-0.175048828125,
-0.435791015625,
-0.189208984375,
1.0458984375,
-0.449462890625,
0.2445068359375,
0.72802734375,
-0.13330078125,
0.193115234375,
0.042236328125,
-0.1131591796875,
0.94287109375,
-0.09564208984375,
0.51953125,
0.662109375,
-0.38330078125,
0.8330078125,
0.1436767578125,
-0.0176544189453125,
1.345703125,
0.362548828125,
0.01136016845703125,
0.716796875,
0.235595703125,
-0.6279296875,
0.1572265625,
-1.12890625,
0.8671875,
0.36669921875,
0.21533203125,
-0.12481689453125,
-0.08428955078125,
-0.296142578125,
0.67822265625,
0.268310546875,
0.09967041015625,
-0.3603515625,
0.1468505859375,
-0.28076171875,
0.91064453125,
-0.35791015625,
0.7431640625,
-0.37060546875,
-0.431640625,
-0.2410888671875,
-0.281005859375,
0.38720703125,
-0.0762939453125,
-0.34033203125,
0.87060546875,
0.6923828125,
0.77783203125,
0.7294921875,
-0.3349609375,
0.3515625,
0.1552734375,
-0.399169921875,
0.2998046875,
0.300048828125,
0.65966796875,
0.265869140625,
0.2685546875,
0.28955078125,
-0.29736328125,
-0.88134765625,
-0.5146484375,
0.515625,
0.646484375,
-0.466552734375,
0.69482421875,
0.362548828125,
0.06463623046875,
-0.71875,
0.0308990478515625,
-0.2232666015625,
-1.0478515625,
-0.273681640625,
0.7998046875,
-0.224609375,
0.210693359375,
-1.0078125,
-0.334716796875,
0.8232421875,
1.1376953125,
-0.30224609375,
-0.06268310546875,
0.61181640625,
-0.022369384765625,
-0.306396484375,
0.35009765625,
0.049468994140625,
-0.1822509765625,
-0.47998046875,
0.5517578125,
-0.1551513671875,
0.11822509765625,
0.06634521484375,
0.767578125,
0.406982421875,
0.3818359375,
-0.1983642578125,
-0.482421875,
0.1634521484375,
1.3271484375,
0.138427734375,
0.544921875,
0.46142578125,
1.0361328125,
0.5849609375,
0.60205078125,
0.4619140625,
0.1251220703125,
0.6328125,
1.201171875,
0.080322265625,
0.2705078125,
-0.032501220703125,
0.5625,
0.5693359375,
0.5439453125,
0.179443359375,
0.371826171875,
-0.25830078125,
-0.0875244140625,
-0.86376953125,
0.1724853515625,
-0.38330078125,
0.5302734375,
0.134521484375,
0.59228515625,
-0.5126953125,
-0.30322265625,
0.0526123046875,
0.6884765625,
-1.068359375,
-0.2099609375,
0.170654296875,
-0.0875244140625,
0.1744384765625,
0.06378173828125,
0.529296875,
0.2296142578125,
0.7646484375,
0.1925048828125,
-0.19140625,
-0.69775390625,
-0.78271484375,
-0.92822265625,
-0.7978515625,
-0.5712890625,
-0.75146484375,
-0.0120391845703125,
-0.03387451171875,
-0.88330078125,
0.375,
-0.244384765625,
-0.2225341796875,
0.53173828125,
-0.68505859375,
0.423583984375,
-0.357421875,
0.53271484375,
-0.46923828125,
0.375,
0.1903076171875,
1.095703125,
-0.634765625,
-0.2880859375,
-0.385009765625,
-0.5703125,
-0.004444122314453125,
0.1878662109375,
0.337646484375,
-0.341064453125,
-0.72216796875,
-0.81494140625,
-0.210693359375,
-0.282958984375,
-0.478515625,
0.343017578125,
-0.6201171875,
0.744140625,
0.595703125,
-0.6533203125,
0.71630859375,
1.1455078125,
-0.7861328125,
0.521484375,
0.220703125,
0.0281524658203125,
-0.7548828125,
1.2978515625,
0.50634765625,
0.5234375,
-0.73291015625,
-0.681640625,
-0.370361328125,
0.1793212890625,
0.263916015625,
-0.422607421875,
-0.44189453125,
0.52978515625,
-0.2734375,
-0.919921875,
0.72509765625,
-1.365234375,
-0.3828125,
-0.4453125,
-0.21923828125,
0.5888671875,
0.86572265625,
0.041351318359375,
-0.260986328125,
-0.298095703125,
-0.23876953125,
0.5888671875,
0.1807861328125,
-0.7431640625,
-0.2646484375,
0.5634765625,
-0.22265625,
0.00592803955078125,
-0.004703521728515625,
-0.5478515625,
0.0872802734375,
-0.25439453125,
0.041412353515625,
1.095703125,
0.2392578125,
0.54931640625,
0.541015625,
0.86328125,
-0.8125,
-0.36083984375,
-0.0458984375,
1.06640625,
0.60693359375,
0.5732421875,
0.4775390625,
-0.387451171875,
-0.7568359375,
-0.94482421875,
0.10650634765625,
0.04425048828125,
0.5927734375,
-0.6845703125,
0.38623046875,
0.09735107421875,
-0.6142578125,
0.4423828125,
-0.7783203125,
0.11004638671875,
1.18359375,
-0.293212890625,
0.64990234375,
-0.447998046875,
0.4189453125,
0.166748046875,
0.186279296875,
0.33642578125,
0.53271484375,
0.52685546875,
-0.470703125,
-0.64208984375,
-0.6630859375,
-0.150146484375,
0.1041259765625,
-0.654296875,
0.08160400390625,
-0.207763671875,
0.0308837890625,
-0.67626953125,
0.33544921875,
0.849609375,
0.42529296875,
0.311279296875,
0.40185546875,
0.0843505859375,
0.301025390625,
0.67529296875,
-0.50244140625,
0.08135986328125,
-0.423583984375,
0.58203125,
0.199462890625,
-0.2135009765625,
-0.409423828125,
-0.51025390625,
-0.01186370849609375,
0.498046875,
0.39892578125,
-0.1898193359375,
-0.9931640625,
0.26513671875,
-0.1461181640625,
0.865234375,
-0.7041015625,
-0.0577392578125,
-0.5751953125,
0.68408203125,
0.140869140625,
-0.97900390625,
0.1400146484375,
-1.171875,
0.783203125,
0.448486328125,
-0.056243896484375,
-0.72119140625,
-0.15869140625,
-0.62158203125,
-0.6650390625,
0.43359375,
0.97412109375,
-0.10235595703125,
-0.04241943359375,
-1.23828125,
0.2166748046875,
0.1492919921875,
-0.53466796875,
-0.09918212890625,
0.0274200439453125,
0.4326171875,
0.04656982421875,
0.74658203125,
-0.3359375,
-0.56884765625,
0.0576171875,
-1.1005859375,
0.74267578125,
-0.5576171875,
0.57080078125,
0.06268310546875,
-0.197265625,
0.131103515625,
0.56494140625,
-0.0207366943359375,
0.033905029296875,
-0.18994140625,
0.1263427734375,
-0.9287109375,
-1.2001953125,
0.53271484375,
-0.0657958984375,
-0.376220703125,
0.84423828125,
-0.10791015625,
-0.1405029296875,
0.07916259765625,
0.62646484375,
-0.418701171875,
0.143798828125,
-0.44482421875,
0.55859375,
-0.66064453125,
-0.916015625,
-0.18798828125,
-0.48681640625,
0.916015625,
0.2110595703125,
-0.90478515625,
-0.305908203125,
-0.9140625,
-0.420654296875,
0.007640838623046875,
-0.5126953125,
0.10931396484375,
0.039215087890625,
-0.28857421875,
-0.1851806640625,
-0.265625,
-0.1038818359375,
-0.38134765625,
-0.51025390625,
-0.257568359375,
0.453125,
0.447998046875,
1.1181640625,
-0.007808685302734375,
-0.410888671875,
0.07275390625,
-0.0026988983154296875,
0.053680419921875,
-0.291015625,
-0.374267578125,
-0.25341796875,
-0.1544189453125,
-0.5419921875,
0.388916015625,
0.1217041015625,
0.58642578125,
0.60107421875,
0.035003662109375,
0.264404296875,
0.327880859375,
-0.818359375,
1.1142578125,
0.01171112060546875,
-1.279296875,
-0.7705078125,
0.291259765625,
0.404541015625,
0.51025390625,
0.394775390625,
-0.84375,
-0.60205078125,
-0.89892578125,
0.348388671875,
-0.56005859375,
0.01024627685546875,
-0.93310546875,
-0.54052734375,
-0.57763671875,
0.8173828125,
-0.281005859375,
-0.7998046875,
0.134033203125,
-0.9921875,
0.1343994140625,
-0.86376953125,
-0.29736328125,
-0.459716796875,
-0.66015625,
-0.46728515625,
1.1669921875,
0.36865234375,
0.420654296875,
-0.1304931640625,
-0.1708984375,
0.56103515625,
-0.1055908203125,
-0.7099609375,
-0.374267578125,
-0.137451171875,
-0.222900390625,
-0.2032470703125,
-0.1256103515625,
-0.6669921875,
0.81591796875,
-0.7607421875,
0.435302734375,
-0.272216796875,
-0.2220458984375,
-0.036590576171875,
-0.552734375,
1.10546875,
-0.5009765625,
0.10400390625,
-0.2333984375,
0.68798828125,
0.55810546875,
-0.09295654296875,
-0.03997802734375,
-0.50927734375,
-0.65234375,
-1.17578125,
0.4208984375,
-0.5185546875,
0.1236572265625,
-0.67041015625,
0.0762939453125,
1.365234375,
-0.919921875,
0.38525390625,
0.92529296875,
0.261474609375,
0.09332275390625,
-0.720703125,
0.6240234375,
0.58984375,
-0.54345703125,
0.1602783203125,
0.212158203125,
-0.953125,
-0.057891845703125,
-0.25439453125,
-0.93408203125,
-0.8134765625,
0.403076171875,
1.5498046875,
-0.59912109375,
0.6083984375,
-0.283203125,
-1.03125,
-0.54150390625,
0.66259765625,
0.490966796875,
0.728515625,
1.263671875,
0.033905029296875,
-0.031494140625,
0.44970703125,
-0.167724609375,
-0.163818359375,
-0.483642578125,
1.26171875,
-0.52978515625,
-0.260986328125,
0.84765625,
0.92919921875,
-1.2626953125,
-0.80224609375,
0.23388671875,
0.1514892578125,
-0.43310546875,
-0.8046875,
-0.025543212890625,
0.256103515625,
-0.85791015625,
-0.0599365234375,
0.51025390625,
-0.087890625,
0.2626953125,
0.058807373046875,
0.5576171875,
-0.55029296875,
0.5791015625,
0.415283203125,
-0.351318359375,
-0.4404296875,
-0.80908203125,
-0.463623046875,
-0.1148681640625,
-0.03851318359375,
0.92919921875,
-0.4052734375,
0.203369140625,
0.411376953125,
-0.1324462890625,
0.29931640625,
-0.385498046875,
-0.08868408203125,
0.1845703125,
-0.31494140625,
-0.8076171875,
-0.00039315223693847656,
0.1767578125,
0.01409912109375,
0.6552734375,
-0.45703125,
0.125,
0.07891845703125,
0.08123779296875,
-0.5380859375,
-0.53076171875,
-0.310302734375,
-1.2626953125,
-0.5576171875,
-0.81298828125,
-0.869140625,
-0.4326171875,
0.541015625,
-0.030975341796875,
-0.5263671875,
0.052642822265625,
0.439453125,
-0.666015625,
0.787109375,
-0.405517578125,
0.437255859375,
-0.6640625,
-0.52490234375,
-0.64306640625,
0.08905029296875,
-0.145751953125,
-0.327392578125,
-0.383544921875,
0.6669921875,
-0.265625,
0.390625,
-0.193603515625,
0.513671875,
-0.2783203125,
-1.0009765625,
-0.2061767578125,
-0.043792724609375,
-0.21435546875,
0.98828125,
1.12109375,
0.320556640625,
0.0885009765625,
-0.294189453125,
-0.489501953125,
-0.350341796875,
0.50341796875,
0.84765625,
-0.08001708984375,
-0.128662109375,
-0.281494140625,
0.391357421875,
-1.0146484375,
0.1156005859375,
-0.1600341796875,
0.157470703125,
0.192626953125,
-0.262451171875,
0.176513671875,
1.091796875,
-0.306396484375,
0.21484375,
0.08221435546875,
0.2462158203125,
0.1507568359375,
0.04315185546875,
0.250244140625,
0.300537109375,
0.01018524169921875,
-0.369140625,
-0.1610107421875,
0.477783203125,
-0.051849365234375,
0.451904296875,
-0.104736328125,
-1.015625,
-0.8330078125,
-0.442138671875,
-0.238525390625,
0.381591796875,
0.29541015625,
-0.453125,
-0.0665283203125,
0.1259765625,
-0.353271484375,
-0.133056640625,
-1.0341796875,
-1.208984375,
0.630859375,
-0.11907958984375,
-0.79541015625,
-0.46240234375,
-0.442626953125,
-0.08392333984375,
-0.07843017578125,
0.6064453125,
-0.134033203125,
0.603515625,
-0.2193603515625,
0.480224609375,
-0.172607421875,
0.1260986328125,
0.126953125,
0.642578125,
-0.7490234375,
-0.6572265625,
0.4033203125,
0.95361328125,
0.1298828125,
-0.313720703125,
-0.274169921875,
0.317138671875,
-0.0013303756713867188,
0.2197265625,
-0.3212890625,
0.161865234375,
-0.2607421875,
0.423583984375,
-0.79541015625,
-0.1400146484375,
-0.1676025390625,
0.58837890625,
0.1165771484375,
-0.6240234375,
-0.71044921875,
0.939453125,
0.82763671875,
-0.32470703125,
0.70263671875,
0.09539794921875,
0.1575927734375,
-0.2208251953125,
-0.129638671875,
-0.381103515625,
0.58837890625,
0.48193359375,
0.611328125,
-0.4443359375,
0.321533203125,
0.7919921875,
0.436767578125,
-0.080322265625,
0.362548828125,
-0.09161376953125,
0.00930023193359375,
0.004856109619140625,
-0.428955078125,
-0.354736328125,
0.07891845703125,
-0.9560546875,
0.436767578125,
-0.68017578125,
0.1949462890625,
-0.4091796875,
-0.80322265625,
0.69287109375,
-0.11724853515625,
-0.1400146484375,
0.334228515625,
-0.55810546875,
0.09478759765625,
0.88623046875,
-0.136962890625,
-0.3642578125,
0.5576171875,
0.84423828125,
0.7353515625,
0.66943359375,
0.293701171875,
0.57470703125,
-0.59033203125,
0.1778564453125,
-0.0106048583984375,
-0.03839111328125,
-0.462158203125,
-0.7373046875,
-1.0009765625,
0.3671875,
-0.488525390625,
-0.336669921875,
0.417724609375,
-0.595703125,
0.21923828125,
-0.0258941650390625,
0.69287109375,
-0.223876953125,
0.1151123046875,
0.33935546875,
-0.271240234375,
-0.92919921875,
1.068359375,
-0.249267578125,
0.52490234375,
-0.180908203125,
0.9296875,
-0.01849365234375,
1.44140625,
0.480712890625,
-0.408447265625,
0.12103271484375,
0.55908203125,
-0.39697265625,
-0.93603515625,
-0.7060546875,
-0.25146484375,
-0.109375,
-0.84228515625,
-0.29248046875,
0.2197265625,
1.080078125,
-0.2032470703125,
-1.0244140625,
-0.1761474609375,
0.282958984375,
-1.095703125,
0.434814453125,
0.1611328125,
-0.0806884765625,
0.1729736328125,
-0.0235443115234375,
-0.059173583984375,
-1.0263671875,
0.09771728515625,
-0.818359375,
0.1866455078125,
-0.96044921875,
-0.1268310546875,
-0.814453125,
-0.76708984375,
0.05322265625,
-0.435791015625,
-0.2056884765625,
-0.7158203125,
0.45361328125,
0.76171875,
0.456787109375,
0.0170135498046875,
-0.2340087890625,
0.125,
1.2587890625,
0.6787109375,
0.1478271484375,
0.84130859375,
0.1671142578125,
-0.346435546875,
-0.0972900390625,
-0.0794677734375,
0.6025390625,
-0.363037109375,
0.064697265625,
-0.3154296875,
0.1573486328125,
-0.9580078125,
-1.4677734375,
0.418212890625,
0.95556640625,
0.5087890625,
-0.412353515625,
-0.91943359375,
-0.288330078125,
-0.4189453125,
0.00394439697265625,
-0.68994140625,
0.6748046875,
-0.072998046875,
-0.166259765625,
-0.6201171875,
-1.0205078125,
4.2578125,
0.9052734375,
1.2841796875,
0.30419921875,
0.494140625,
0.69677734375,
0.27685546875,
-0.339599609375,
-0.1199951171875,
-0.2059326171875,
0.54443359375,
-0.423583984375,
0.07379150390625,
0.51904296875,
0.380859375,
0.65283203125,
-0.365966796875,
0.1654052734375,
0.173583984375,
-0.62646484375,
-0.85107421875,
0.3125,
-0.01322174072265625,
0.5947265625,
-0.2203369140625,
0.273681640625,
0.4658203125,
-0.6689453125,
-0.3271484375,
-0.765625,
0.392578125,
-0.333740234375,
0.97021484375,
0.2261962890625,
0.286376953125,
0.360107421875,
-0.07342529296875,
-0.125244140625,
-0.343994140625,
0.247314453125,
-0.0684814453125,
-0.12176513671875,
0.6787109375,
-0.76025390625,
-0.058197021484375,
0.626953125,
-0.5849609375,
0.460205078125,
0.55615234375,
-0.8828125,
0.77490234375,
-0.487548828125,
0.560546875,
-0.97705078125,
-0.27490234375,
0.06640625,
0.2171630859375,
0.0631103515625,
-0.34814453125,
0.12841796875,
0.4130859375,
0.689453125,
0.148193359375,
0.9619140625,
-1.0908203125,
0.3408203125,
0.037139892578125,
0.381591796875,
-0.6689453125,
-0.087890625,
-0.3359375,
-0.48681640625,
-0.1407470703125,
-0.5380859375,
0.3046875,
0.7490234375,
-0.209228515625,
0.787109375,
0.74560546875,
-0.626953125,
0.1412353515625,
-0.2337646484375,
-0.30126953125,
-0.822265625,
0.64404296875,
1.3388671875,
-0.759765625,
-0.09234619140625,
-0.210693359375,
0.56005859375,
0.4931640625,
0.9609375,
0.048065185546875,
-0.67529296875,
-0.192138671875
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
You are given a string s of length n consisting only of lowercase Latin letters.
A substring of a string is a contiguous subsequence of that string. So, string "forces" is substring of string "codeforces", but string "coder" is not.
Your task is to calculate the number of ways to remove exactly one substring from this string in such a way that all remaining characters are equal (the number of distinct characters either zero or one).
It is guaranteed that there is at least two different characters in s.
Note that you can remove the whole string and it is correct. Also note that you should remove at least one character.
Since the answer can be rather large (not very large though) print it modulo 998244353.
If you are Python programmer, consider using PyPy instead of Python when you submit your code.
Input
The first line of the input contains one integer n (2 ≤ n ≤ 2 ⋅ 10^5) — the length of the string s.
The second line of the input contains the string s of length n consisting only of lowercase Latin letters.
It is guaranteed that there is at least two different characters in s.
Output
Print one integer — the number of ways modulo 998244353 to remove exactly one substring from s in such way that all remaining characters are equal.
Examples
Input
4
abaa
Output
6
Input
7
aacdeee
Output
6
Input
2
az
Output
3
Note
Let s[l; r] be the substring of s from the position l to the position r inclusive.
Then in the first example you can remove the following substrings:
* s[1; 2];
* s[1; 3];
* s[1; 4];
* s[2; 2];
* s[2; 3];
* s[2; 4].
In the second example you can remove the following substrings:
* s[1; 4];
* s[1; 5];
* s[1; 6];
* s[1; 7];
* s[2; 7];
* s[3; 7].
In the third example you can remove the following substrings:
* s[1; 1];
* s[1; 2];
* s[2; 2].
Tags: combinatorics, math, strings
Correct Solution:
```
import sys
#import math
data = sys.stdin.readlines()
n = data[0]
s = data[1]
s = list(s[:len(s) - 1])
diferente1 = -1
diferente2 = -1
for i in range(len(s)):
if s[i] != s[0] and diferente1 == -1:
diferente1 = i
if s[-(i+1)] != s[-1] and diferente2 == -1:
diferente2 = i
if diferente1 != -1 and diferente2 != -1:
break
if s[0] == s[-1]:
print((diferente1+1)*(diferente2+1)%998244353)
else:
print(diferente1+diferente2+1)
```
| 10,834 | [
0.1727294921875,
0.112548828125,
0.17578125,
0.33203125,
-0.404541015625,
-0.437744140625,
-0.2198486328125,
-0.289306640625,
0.1993408203125,
0.66943359375,
0.68701171875,
-0.2000732421875,
-0.05877685546875,
-1.00390625,
-0.3828125,
0.2191162109375,
-0.51953125,
-0.802734375,
-0.263916015625,
-0.088134765625,
0.1744384765625,
-0.2144775390625,
-1.0654296875,
-0.42626953125,
-0.441650390625,
1.125,
0.5146484375,
-0.062164306640625,
1.1845703125,
1.16015625,
-0.472412109375,
-0.8466796875,
0.46533203125,
-1.1796875,
-0.40966796875,
-0.68408203125,
0.9228515625,
-0.7197265625,
-0.01232147216796875,
-0.5458984375,
0.313232421875,
-0.456298828125,
0.68017578125,
-0.87841796875,
-1.208984375,
0.07000732421875,
-0.3193359375,
0.07635498046875,
-0.517578125,
-0.053497314453125,
0.0755615234375,
-0.1304931640625,
0.65673828125,
-0.338134765625,
0.25341796875,
0.268798828125,
0.08062744140625,
0.01363372802734375,
-0.5478515625,
0.330078125,
-0.17236328125,
0.445068359375,
-0.261474609375,
-0.6650390625,
-0.36279296875,
0.1964111328125,
-0.286376953125,
-0.01468658447265625,
0.2109375,
-0.8740234375,
0.0654296875,
0.032989501953125,
-0.6064453125,
-0.439208984375,
-0.298828125,
-0.006137847900390625,
-0.1256103515625,
-0.162109375,
-0.7060546875,
0.8271484375,
-0.1683349609375,
1.0224609375,
0.51416015625,
0.5029296875,
-0.69140625,
-0.487060546875,
0.0728759765625,
0.1871337890625,
0.24609375,
-0.1849365234375,
-0.191162109375,
0.767578125,
-0.80712890625,
-0.042999267578125,
0.2587890625,
0.497314453125,
0.1962890625,
0.350830078125,
0.270263671875,
-0.028106689453125,
0.990234375,
1.0546875,
-0.634765625,
1.1826171875,
-0.3837890625,
-0.1785888671875,
0.53564453125,
-0.01371002197265625,
-0.27978515625,
-0.11834716796875,
-0.3662109375,
-0.440185546875,
0.6865234375,
0.5947265625,
-0.3154296875,
0.95947265625,
-0.328369140625,
0.28466796875,
-0.56298828125,
0.29052734375,
0.53955078125,
0.02874755859375,
0.36181640625,
-0.17431640625,
-0.175048828125,
-0.435791015625,
-0.189208984375,
1.0458984375,
-0.449462890625,
0.2445068359375,
0.72802734375,
-0.13330078125,
0.193115234375,
0.042236328125,
-0.1131591796875,
0.94287109375,
-0.09564208984375,
0.51953125,
0.662109375,
-0.38330078125,
0.8330078125,
0.1436767578125,
-0.0176544189453125,
1.345703125,
0.362548828125,
0.01136016845703125,
0.716796875,
0.235595703125,
-0.6279296875,
0.1572265625,
-1.12890625,
0.8671875,
0.36669921875,
0.21533203125,
-0.12481689453125,
-0.08428955078125,
-0.296142578125,
0.67822265625,
0.268310546875,
0.09967041015625,
-0.3603515625,
0.1468505859375,
-0.28076171875,
0.91064453125,
-0.35791015625,
0.7431640625,
-0.37060546875,
-0.431640625,
-0.2410888671875,
-0.281005859375,
0.38720703125,
-0.0762939453125,
-0.34033203125,
0.87060546875,
0.6923828125,
0.77783203125,
0.7294921875,
-0.3349609375,
0.3515625,
0.1552734375,
-0.399169921875,
0.2998046875,
0.300048828125,
0.65966796875,
0.265869140625,
0.2685546875,
0.28955078125,
-0.29736328125,
-0.88134765625,
-0.5146484375,
0.515625,
0.646484375,
-0.466552734375,
0.69482421875,
0.362548828125,
0.06463623046875,
-0.71875,
0.0308990478515625,
-0.2232666015625,
-1.0478515625,
-0.273681640625,
0.7998046875,
-0.224609375,
0.210693359375,
-1.0078125,
-0.334716796875,
0.8232421875,
1.1376953125,
-0.30224609375,
-0.06268310546875,
0.61181640625,
-0.022369384765625,
-0.306396484375,
0.35009765625,
0.049468994140625,
-0.1822509765625,
-0.47998046875,
0.5517578125,
-0.1551513671875,
0.11822509765625,
0.06634521484375,
0.767578125,
0.406982421875,
0.3818359375,
-0.1983642578125,
-0.482421875,
0.1634521484375,
1.3271484375,
0.138427734375,
0.544921875,
0.46142578125,
1.0361328125,
0.5849609375,
0.60205078125,
0.4619140625,
0.1251220703125,
0.6328125,
1.201171875,
0.080322265625,
0.2705078125,
-0.032501220703125,
0.5625,
0.5693359375,
0.5439453125,
0.179443359375,
0.371826171875,
-0.25830078125,
-0.0875244140625,
-0.86376953125,
0.1724853515625,
-0.38330078125,
0.5302734375,
0.134521484375,
0.59228515625,
-0.5126953125,
-0.30322265625,
0.0526123046875,
0.6884765625,
-1.068359375,
-0.2099609375,
0.170654296875,
-0.0875244140625,
0.1744384765625,
0.06378173828125,
0.529296875,
0.2296142578125,
0.7646484375,
0.1925048828125,
-0.19140625,
-0.69775390625,
-0.78271484375,
-0.92822265625,
-0.7978515625,
-0.5712890625,
-0.75146484375,
-0.0120391845703125,
-0.03387451171875,
-0.88330078125,
0.375,
-0.244384765625,
-0.2225341796875,
0.53173828125,
-0.68505859375,
0.423583984375,
-0.357421875,
0.53271484375,
-0.46923828125,
0.375,
0.1903076171875,
1.095703125,
-0.634765625,
-0.2880859375,
-0.385009765625,
-0.5703125,
-0.004444122314453125,
0.1878662109375,
0.337646484375,
-0.341064453125,
-0.72216796875,
-0.81494140625,
-0.210693359375,
-0.282958984375,
-0.478515625,
0.343017578125,
-0.6201171875,
0.744140625,
0.595703125,
-0.6533203125,
0.71630859375,
1.1455078125,
-0.7861328125,
0.521484375,
0.220703125,
0.0281524658203125,
-0.7548828125,
1.2978515625,
0.50634765625,
0.5234375,
-0.73291015625,
-0.681640625,
-0.370361328125,
0.1793212890625,
0.263916015625,
-0.422607421875,
-0.44189453125,
0.52978515625,
-0.2734375,
-0.919921875,
0.72509765625,
-1.365234375,
-0.3828125,
-0.4453125,
-0.21923828125,
0.5888671875,
0.86572265625,
0.041351318359375,
-0.260986328125,
-0.298095703125,
-0.23876953125,
0.5888671875,
0.1807861328125,
-0.7431640625,
-0.2646484375,
0.5634765625,
-0.22265625,
0.00592803955078125,
-0.004703521728515625,
-0.5478515625,
0.0872802734375,
-0.25439453125,
0.041412353515625,
1.095703125,
0.2392578125,
0.54931640625,
0.541015625,
0.86328125,
-0.8125,
-0.36083984375,
-0.0458984375,
1.06640625,
0.60693359375,
0.5732421875,
0.4775390625,
-0.387451171875,
-0.7568359375,
-0.94482421875,
0.10650634765625,
0.04425048828125,
0.5927734375,
-0.6845703125,
0.38623046875,
0.09735107421875,
-0.6142578125,
0.4423828125,
-0.7783203125,
0.11004638671875,
1.18359375,
-0.293212890625,
0.64990234375,
-0.447998046875,
0.4189453125,
0.166748046875,
0.186279296875,
0.33642578125,
0.53271484375,
0.52685546875,
-0.470703125,
-0.64208984375,
-0.6630859375,
-0.150146484375,
0.1041259765625,
-0.654296875,
0.08160400390625,
-0.207763671875,
0.0308837890625,
-0.67626953125,
0.33544921875,
0.849609375,
0.42529296875,
0.311279296875,
0.40185546875,
0.0843505859375,
0.301025390625,
0.67529296875,
-0.50244140625,
0.08135986328125,
-0.423583984375,
0.58203125,
0.199462890625,
-0.2135009765625,
-0.409423828125,
-0.51025390625,
-0.01186370849609375,
0.498046875,
0.39892578125,
-0.1898193359375,
-0.9931640625,
0.26513671875,
-0.1461181640625,
0.865234375,
-0.7041015625,
-0.0577392578125,
-0.5751953125,
0.68408203125,
0.140869140625,
-0.97900390625,
0.1400146484375,
-1.171875,
0.783203125,
0.448486328125,
-0.056243896484375,
-0.72119140625,
-0.15869140625,
-0.62158203125,
-0.6650390625,
0.43359375,
0.97412109375,
-0.10235595703125,
-0.04241943359375,
-1.23828125,
0.2166748046875,
0.1492919921875,
-0.53466796875,
-0.09918212890625,
0.0274200439453125,
0.4326171875,
0.04656982421875,
0.74658203125,
-0.3359375,
-0.56884765625,
0.0576171875,
-1.1005859375,
0.74267578125,
-0.5576171875,
0.57080078125,
0.06268310546875,
-0.197265625,
0.131103515625,
0.56494140625,
-0.0207366943359375,
0.033905029296875,
-0.18994140625,
0.1263427734375,
-0.9287109375,
-1.2001953125,
0.53271484375,
-0.0657958984375,
-0.376220703125,
0.84423828125,
-0.10791015625,
-0.1405029296875,
0.07916259765625,
0.62646484375,
-0.418701171875,
0.143798828125,
-0.44482421875,
0.55859375,
-0.66064453125,
-0.916015625,
-0.18798828125,
-0.48681640625,
0.916015625,
0.2110595703125,
-0.90478515625,
-0.305908203125,
-0.9140625,
-0.420654296875,
0.007640838623046875,
-0.5126953125,
0.10931396484375,
0.039215087890625,
-0.28857421875,
-0.1851806640625,
-0.265625,
-0.1038818359375,
-0.38134765625,
-0.51025390625,
-0.257568359375,
0.453125,
0.447998046875,
1.1181640625,
-0.007808685302734375,
-0.410888671875,
0.07275390625,
-0.0026988983154296875,
0.053680419921875,
-0.291015625,
-0.374267578125,
-0.25341796875,
-0.1544189453125,
-0.5419921875,
0.388916015625,
0.1217041015625,
0.58642578125,
0.60107421875,
0.035003662109375,
0.264404296875,
0.327880859375,
-0.818359375,
1.1142578125,
0.01171112060546875,
-1.279296875,
-0.7705078125,
0.291259765625,
0.404541015625,
0.51025390625,
0.394775390625,
-0.84375,
-0.60205078125,
-0.89892578125,
0.348388671875,
-0.56005859375,
0.01024627685546875,
-0.93310546875,
-0.54052734375,
-0.57763671875,
0.8173828125,
-0.281005859375,
-0.7998046875,
0.134033203125,
-0.9921875,
0.1343994140625,
-0.86376953125,
-0.29736328125,
-0.459716796875,
-0.66015625,
-0.46728515625,
1.1669921875,
0.36865234375,
0.420654296875,
-0.1304931640625,
-0.1708984375,
0.56103515625,
-0.1055908203125,
-0.7099609375,
-0.374267578125,
-0.137451171875,
-0.222900390625,
-0.2032470703125,
-0.1256103515625,
-0.6669921875,
0.81591796875,
-0.7607421875,
0.435302734375,
-0.272216796875,
-0.2220458984375,
-0.036590576171875,
-0.552734375,
1.10546875,
-0.5009765625,
0.10400390625,
-0.2333984375,
0.68798828125,
0.55810546875,
-0.09295654296875,
-0.03997802734375,
-0.50927734375,
-0.65234375,
-1.17578125,
0.4208984375,
-0.5185546875,
0.1236572265625,
-0.67041015625,
0.0762939453125,
1.365234375,
-0.919921875,
0.38525390625,
0.92529296875,
0.261474609375,
0.09332275390625,
-0.720703125,
0.6240234375,
0.58984375,
-0.54345703125,
0.1602783203125,
0.212158203125,
-0.953125,
-0.057891845703125,
-0.25439453125,
-0.93408203125,
-0.8134765625,
0.403076171875,
1.5498046875,
-0.59912109375,
0.6083984375,
-0.283203125,
-1.03125,
-0.54150390625,
0.66259765625,
0.490966796875,
0.728515625,
1.263671875,
0.033905029296875,
-0.031494140625,
0.44970703125,
-0.167724609375,
-0.163818359375,
-0.483642578125,
1.26171875,
-0.52978515625,
-0.260986328125,
0.84765625,
0.92919921875,
-1.2626953125,
-0.80224609375,
0.23388671875,
0.1514892578125,
-0.43310546875,
-0.8046875,
-0.025543212890625,
0.256103515625,
-0.85791015625,
-0.0599365234375,
0.51025390625,
-0.087890625,
0.2626953125,
0.058807373046875,
0.5576171875,
-0.55029296875,
0.5791015625,
0.415283203125,
-0.351318359375,
-0.4404296875,
-0.80908203125,
-0.463623046875,
-0.1148681640625,
-0.03851318359375,
0.92919921875,
-0.4052734375,
0.203369140625,
0.411376953125,
-0.1324462890625,
0.29931640625,
-0.385498046875,
-0.08868408203125,
0.1845703125,
-0.31494140625,
-0.8076171875,
-0.00039315223693847656,
0.1767578125,
0.01409912109375,
0.6552734375,
-0.45703125,
0.125,
0.07891845703125,
0.08123779296875,
-0.5380859375,
-0.53076171875,
-0.310302734375,
-1.2626953125,
-0.5576171875,
-0.81298828125,
-0.869140625,
-0.4326171875,
0.541015625,
-0.030975341796875,
-0.5263671875,
0.052642822265625,
0.439453125,
-0.666015625,
0.787109375,
-0.405517578125,
0.437255859375,
-0.6640625,
-0.52490234375,
-0.64306640625,
0.08905029296875,
-0.145751953125,
-0.327392578125,
-0.383544921875,
0.6669921875,
-0.265625,
0.390625,
-0.193603515625,
0.513671875,
-0.2783203125,
-1.0009765625,
-0.2061767578125,
-0.043792724609375,
-0.21435546875,
0.98828125,
1.12109375,
0.320556640625,
0.0885009765625,
-0.294189453125,
-0.489501953125,
-0.350341796875,
0.50341796875,
0.84765625,
-0.08001708984375,
-0.128662109375,
-0.281494140625,
0.391357421875,
-1.0146484375,
0.1156005859375,
-0.1600341796875,
0.157470703125,
0.192626953125,
-0.262451171875,
0.176513671875,
1.091796875,
-0.306396484375,
0.21484375,
0.08221435546875,
0.2462158203125,
0.1507568359375,
0.04315185546875,
0.250244140625,
0.300537109375,
0.01018524169921875,
-0.369140625,
-0.1610107421875,
0.477783203125,
-0.051849365234375,
0.451904296875,
-0.104736328125,
-1.015625,
-0.8330078125,
-0.442138671875,
-0.238525390625,
0.381591796875,
0.29541015625,
-0.453125,
-0.0665283203125,
0.1259765625,
-0.353271484375,
-0.133056640625,
-1.0341796875,
-1.208984375,
0.630859375,
-0.11907958984375,
-0.79541015625,
-0.46240234375,
-0.442626953125,
-0.08392333984375,
-0.07843017578125,
0.6064453125,
-0.134033203125,
0.603515625,
-0.2193603515625,
0.480224609375,
-0.172607421875,
0.1260986328125,
0.126953125,
0.642578125,
-0.7490234375,
-0.6572265625,
0.4033203125,
0.95361328125,
0.1298828125,
-0.313720703125,
-0.274169921875,
0.317138671875,
-0.0013303756713867188,
0.2197265625,
-0.3212890625,
0.161865234375,
-0.2607421875,
0.423583984375,
-0.79541015625,
-0.1400146484375,
-0.1676025390625,
0.58837890625,
0.1165771484375,
-0.6240234375,
-0.71044921875,
0.939453125,
0.82763671875,
-0.32470703125,
0.70263671875,
0.09539794921875,
0.1575927734375,
-0.2208251953125,
-0.129638671875,
-0.381103515625,
0.58837890625,
0.48193359375,
0.611328125,
-0.4443359375,
0.321533203125,
0.7919921875,
0.436767578125,
-0.080322265625,
0.362548828125,
-0.09161376953125,
0.00930023193359375,
0.004856109619140625,
-0.428955078125,
-0.354736328125,
0.07891845703125,
-0.9560546875,
0.436767578125,
-0.68017578125,
0.1949462890625,
-0.4091796875,
-0.80322265625,
0.69287109375,
-0.11724853515625,
-0.1400146484375,
0.334228515625,
-0.55810546875,
0.09478759765625,
0.88623046875,
-0.136962890625,
-0.3642578125,
0.5576171875,
0.84423828125,
0.7353515625,
0.66943359375,
0.293701171875,
0.57470703125,
-0.59033203125,
0.1778564453125,
-0.0106048583984375,
-0.03839111328125,
-0.462158203125,
-0.7373046875,
-1.0009765625,
0.3671875,
-0.488525390625,
-0.336669921875,
0.417724609375,
-0.595703125,
0.21923828125,
-0.0258941650390625,
0.69287109375,
-0.223876953125,
0.1151123046875,
0.33935546875,
-0.271240234375,
-0.92919921875,
1.068359375,
-0.249267578125,
0.52490234375,
-0.180908203125,
0.9296875,
-0.01849365234375,
1.44140625,
0.480712890625,
-0.408447265625,
0.12103271484375,
0.55908203125,
-0.39697265625,
-0.93603515625,
-0.7060546875,
-0.25146484375,
-0.109375,
-0.84228515625,
-0.29248046875,
0.2197265625,
1.080078125,
-0.2032470703125,
-1.0244140625,
-0.1761474609375,
0.282958984375,
-1.095703125,
0.434814453125,
0.1611328125,
-0.0806884765625,
0.1729736328125,
-0.0235443115234375,
-0.059173583984375,
-1.0263671875,
0.09771728515625,
-0.818359375,
0.1866455078125,
-0.96044921875,
-0.1268310546875,
-0.814453125,
-0.76708984375,
0.05322265625,
-0.435791015625,
-0.2056884765625,
-0.7158203125,
0.45361328125,
0.76171875,
0.456787109375,
0.0170135498046875,
-0.2340087890625,
0.125,
1.2587890625,
0.6787109375,
0.1478271484375,
0.84130859375,
0.1671142578125,
-0.346435546875,
-0.0972900390625,
-0.0794677734375,
0.6025390625,
-0.363037109375,
0.064697265625,
-0.3154296875,
0.1573486328125,
-0.9580078125,
-1.4677734375,
0.418212890625,
0.95556640625,
0.5087890625,
-0.412353515625,
-0.91943359375,
-0.288330078125,
-0.4189453125,
0.00394439697265625,
-0.68994140625,
0.6748046875,
-0.072998046875,
-0.166259765625,
-0.6201171875,
-1.0205078125,
4.2578125,
0.9052734375,
1.2841796875,
0.30419921875,
0.494140625,
0.69677734375,
0.27685546875,
-0.339599609375,
-0.1199951171875,
-0.2059326171875,
0.54443359375,
-0.423583984375,
0.07379150390625,
0.51904296875,
0.380859375,
0.65283203125,
-0.365966796875,
0.1654052734375,
0.173583984375,
-0.62646484375,
-0.85107421875,
0.3125,
-0.01322174072265625,
0.5947265625,
-0.2203369140625,
0.273681640625,
0.4658203125,
-0.6689453125,
-0.3271484375,
-0.765625,
0.392578125,
-0.333740234375,
0.97021484375,
0.2261962890625,
0.286376953125,
0.360107421875,
-0.07342529296875,
-0.125244140625,
-0.343994140625,
0.247314453125,
-0.0684814453125,
-0.12176513671875,
0.6787109375,
-0.76025390625,
-0.058197021484375,
0.626953125,
-0.5849609375,
0.460205078125,
0.55615234375,
-0.8828125,
0.77490234375,
-0.487548828125,
0.560546875,
-0.97705078125,
-0.27490234375,
0.06640625,
0.2171630859375,
0.0631103515625,
-0.34814453125,
0.12841796875,
0.4130859375,
0.689453125,
0.148193359375,
0.9619140625,
-1.0908203125,
0.3408203125,
0.037139892578125,
0.381591796875,
-0.6689453125,
-0.087890625,
-0.3359375,
-0.48681640625,
-0.1407470703125,
-0.5380859375,
0.3046875,
0.7490234375,
-0.209228515625,
0.787109375,
0.74560546875,
-0.626953125,
0.1412353515625,
-0.2337646484375,
-0.30126953125,
-0.822265625,
0.64404296875,
1.3388671875,
-0.759765625,
-0.09234619140625,
-0.210693359375,
0.56005859375,
0.4931640625,
0.9609375,
0.048065185546875,
-0.67529296875,
-0.192138671875
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
You are given a string s of length n consisting only of lowercase Latin letters.
A substring of a string is a contiguous subsequence of that string. So, string "forces" is substring of string "codeforces", but string "coder" is not.
Your task is to calculate the number of ways to remove exactly one substring from this string in such a way that all remaining characters are equal (the number of distinct characters either zero or one).
It is guaranteed that there is at least two different characters in s.
Note that you can remove the whole string and it is correct. Also note that you should remove at least one character.
Since the answer can be rather large (not very large though) print it modulo 998244353.
If you are Python programmer, consider using PyPy instead of Python when you submit your code.
Input
The first line of the input contains one integer n (2 ≤ n ≤ 2 ⋅ 10^5) — the length of the string s.
The second line of the input contains the string s of length n consisting only of lowercase Latin letters.
It is guaranteed that there is at least two different characters in s.
Output
Print one integer — the number of ways modulo 998244353 to remove exactly one substring from s in such way that all remaining characters are equal.
Examples
Input
4
abaa
Output
6
Input
7
aacdeee
Output
6
Input
2
az
Output
3
Note
Let s[l; r] be the substring of s from the position l to the position r inclusive.
Then in the first example you can remove the following substrings:
* s[1; 2];
* s[1; 3];
* s[1; 4];
* s[2; 2];
* s[2; 3];
* s[2; 4].
In the second example you can remove the following substrings:
* s[1; 4];
* s[1; 5];
* s[1; 6];
* s[1; 7];
* s[2; 7];
* s[3; 7].
In the third example you can remove the following substrings:
* s[1; 1];
* s[1; 2];
* s[2; 2].
Tags: combinatorics, math, strings
Correct Solution:
```
from sys import stdin,stdout
n=int(stdin.readline())
st=stdin.readline()
cntl=0
cntr=0
for i in st:
if(st[0] == i):
cntl+=1
else:
break
for j in range(n-1,-1,-1):
if(st[j] == st[n-1]):
cntr+=1
else:
break
if(st[0] == st[n-1]):
print(((cntl+1)*(cntr+1))%998244353)
else:
print(((cntl+cntr+1))%998244353 )
```
| 10,835 | [
0.1727294921875,
0.112548828125,
0.17578125,
0.33203125,
-0.404541015625,
-0.437744140625,
-0.2198486328125,
-0.289306640625,
0.1993408203125,
0.66943359375,
0.68701171875,
-0.2000732421875,
-0.05877685546875,
-1.00390625,
-0.3828125,
0.2191162109375,
-0.51953125,
-0.802734375,
-0.263916015625,
-0.088134765625,
0.1744384765625,
-0.2144775390625,
-1.0654296875,
-0.42626953125,
-0.441650390625,
1.125,
0.5146484375,
-0.062164306640625,
1.1845703125,
1.16015625,
-0.472412109375,
-0.8466796875,
0.46533203125,
-1.1796875,
-0.40966796875,
-0.68408203125,
0.9228515625,
-0.7197265625,
-0.01232147216796875,
-0.5458984375,
0.313232421875,
-0.456298828125,
0.68017578125,
-0.87841796875,
-1.208984375,
0.07000732421875,
-0.3193359375,
0.07635498046875,
-0.517578125,
-0.053497314453125,
0.0755615234375,
-0.1304931640625,
0.65673828125,
-0.338134765625,
0.25341796875,
0.268798828125,
0.08062744140625,
0.01363372802734375,
-0.5478515625,
0.330078125,
-0.17236328125,
0.445068359375,
-0.261474609375,
-0.6650390625,
-0.36279296875,
0.1964111328125,
-0.286376953125,
-0.01468658447265625,
0.2109375,
-0.8740234375,
0.0654296875,
0.032989501953125,
-0.6064453125,
-0.439208984375,
-0.298828125,
-0.006137847900390625,
-0.1256103515625,
-0.162109375,
-0.7060546875,
0.8271484375,
-0.1683349609375,
1.0224609375,
0.51416015625,
0.5029296875,
-0.69140625,
-0.487060546875,
0.0728759765625,
0.1871337890625,
0.24609375,
-0.1849365234375,
-0.191162109375,
0.767578125,
-0.80712890625,
-0.042999267578125,
0.2587890625,
0.497314453125,
0.1962890625,
0.350830078125,
0.270263671875,
-0.028106689453125,
0.990234375,
1.0546875,
-0.634765625,
1.1826171875,
-0.3837890625,
-0.1785888671875,
0.53564453125,
-0.01371002197265625,
-0.27978515625,
-0.11834716796875,
-0.3662109375,
-0.440185546875,
0.6865234375,
0.5947265625,
-0.3154296875,
0.95947265625,
-0.328369140625,
0.28466796875,
-0.56298828125,
0.29052734375,
0.53955078125,
0.02874755859375,
0.36181640625,
-0.17431640625,
-0.175048828125,
-0.435791015625,
-0.189208984375,
1.0458984375,
-0.449462890625,
0.2445068359375,
0.72802734375,
-0.13330078125,
0.193115234375,
0.042236328125,
-0.1131591796875,
0.94287109375,
-0.09564208984375,
0.51953125,
0.662109375,
-0.38330078125,
0.8330078125,
0.1436767578125,
-0.0176544189453125,
1.345703125,
0.362548828125,
0.01136016845703125,
0.716796875,
0.235595703125,
-0.6279296875,
0.1572265625,
-1.12890625,
0.8671875,
0.36669921875,
0.21533203125,
-0.12481689453125,
-0.08428955078125,
-0.296142578125,
0.67822265625,
0.268310546875,
0.09967041015625,
-0.3603515625,
0.1468505859375,
-0.28076171875,
0.91064453125,
-0.35791015625,
0.7431640625,
-0.37060546875,
-0.431640625,
-0.2410888671875,
-0.281005859375,
0.38720703125,
-0.0762939453125,
-0.34033203125,
0.87060546875,
0.6923828125,
0.77783203125,
0.7294921875,
-0.3349609375,
0.3515625,
0.1552734375,
-0.399169921875,
0.2998046875,
0.300048828125,
0.65966796875,
0.265869140625,
0.2685546875,
0.28955078125,
-0.29736328125,
-0.88134765625,
-0.5146484375,
0.515625,
0.646484375,
-0.466552734375,
0.69482421875,
0.362548828125,
0.06463623046875,
-0.71875,
0.0308990478515625,
-0.2232666015625,
-1.0478515625,
-0.273681640625,
0.7998046875,
-0.224609375,
0.210693359375,
-1.0078125,
-0.334716796875,
0.8232421875,
1.1376953125,
-0.30224609375,
-0.06268310546875,
0.61181640625,
-0.022369384765625,
-0.306396484375,
0.35009765625,
0.049468994140625,
-0.1822509765625,
-0.47998046875,
0.5517578125,
-0.1551513671875,
0.11822509765625,
0.06634521484375,
0.767578125,
0.406982421875,
0.3818359375,
-0.1983642578125,
-0.482421875,
0.1634521484375,
1.3271484375,
0.138427734375,
0.544921875,
0.46142578125,
1.0361328125,
0.5849609375,
0.60205078125,
0.4619140625,
0.1251220703125,
0.6328125,
1.201171875,
0.080322265625,
0.2705078125,
-0.032501220703125,
0.5625,
0.5693359375,
0.5439453125,
0.179443359375,
0.371826171875,
-0.25830078125,
-0.0875244140625,
-0.86376953125,
0.1724853515625,
-0.38330078125,
0.5302734375,
0.134521484375,
0.59228515625,
-0.5126953125,
-0.30322265625,
0.0526123046875,
0.6884765625,
-1.068359375,
-0.2099609375,
0.170654296875,
-0.0875244140625,
0.1744384765625,
0.06378173828125,
0.529296875,
0.2296142578125,
0.7646484375,
0.1925048828125,
-0.19140625,
-0.69775390625,
-0.78271484375,
-0.92822265625,
-0.7978515625,
-0.5712890625,
-0.75146484375,
-0.0120391845703125,
-0.03387451171875,
-0.88330078125,
0.375,
-0.244384765625,
-0.2225341796875,
0.53173828125,
-0.68505859375,
0.423583984375,
-0.357421875,
0.53271484375,
-0.46923828125,
0.375,
0.1903076171875,
1.095703125,
-0.634765625,
-0.2880859375,
-0.385009765625,
-0.5703125,
-0.004444122314453125,
0.1878662109375,
0.337646484375,
-0.341064453125,
-0.72216796875,
-0.81494140625,
-0.210693359375,
-0.282958984375,
-0.478515625,
0.343017578125,
-0.6201171875,
0.744140625,
0.595703125,
-0.6533203125,
0.71630859375,
1.1455078125,
-0.7861328125,
0.521484375,
0.220703125,
0.0281524658203125,
-0.7548828125,
1.2978515625,
0.50634765625,
0.5234375,
-0.73291015625,
-0.681640625,
-0.370361328125,
0.1793212890625,
0.263916015625,
-0.422607421875,
-0.44189453125,
0.52978515625,
-0.2734375,
-0.919921875,
0.72509765625,
-1.365234375,
-0.3828125,
-0.4453125,
-0.21923828125,
0.5888671875,
0.86572265625,
0.041351318359375,
-0.260986328125,
-0.298095703125,
-0.23876953125,
0.5888671875,
0.1807861328125,
-0.7431640625,
-0.2646484375,
0.5634765625,
-0.22265625,
0.00592803955078125,
-0.004703521728515625,
-0.5478515625,
0.0872802734375,
-0.25439453125,
0.041412353515625,
1.095703125,
0.2392578125,
0.54931640625,
0.541015625,
0.86328125,
-0.8125,
-0.36083984375,
-0.0458984375,
1.06640625,
0.60693359375,
0.5732421875,
0.4775390625,
-0.387451171875,
-0.7568359375,
-0.94482421875,
0.10650634765625,
0.04425048828125,
0.5927734375,
-0.6845703125,
0.38623046875,
0.09735107421875,
-0.6142578125,
0.4423828125,
-0.7783203125,
0.11004638671875,
1.18359375,
-0.293212890625,
0.64990234375,
-0.447998046875,
0.4189453125,
0.166748046875,
0.186279296875,
0.33642578125,
0.53271484375,
0.52685546875,
-0.470703125,
-0.64208984375,
-0.6630859375,
-0.150146484375,
0.1041259765625,
-0.654296875,
0.08160400390625,
-0.207763671875,
0.0308837890625,
-0.67626953125,
0.33544921875,
0.849609375,
0.42529296875,
0.311279296875,
0.40185546875,
0.0843505859375,
0.301025390625,
0.67529296875,
-0.50244140625,
0.08135986328125,
-0.423583984375,
0.58203125,
0.199462890625,
-0.2135009765625,
-0.409423828125,
-0.51025390625,
-0.01186370849609375,
0.498046875,
0.39892578125,
-0.1898193359375,
-0.9931640625,
0.26513671875,
-0.1461181640625,
0.865234375,
-0.7041015625,
-0.0577392578125,
-0.5751953125,
0.68408203125,
0.140869140625,
-0.97900390625,
0.1400146484375,
-1.171875,
0.783203125,
0.448486328125,
-0.056243896484375,
-0.72119140625,
-0.15869140625,
-0.62158203125,
-0.6650390625,
0.43359375,
0.97412109375,
-0.10235595703125,
-0.04241943359375,
-1.23828125,
0.2166748046875,
0.1492919921875,
-0.53466796875,
-0.09918212890625,
0.0274200439453125,
0.4326171875,
0.04656982421875,
0.74658203125,
-0.3359375,
-0.56884765625,
0.0576171875,
-1.1005859375,
0.74267578125,
-0.5576171875,
0.57080078125,
0.06268310546875,
-0.197265625,
0.131103515625,
0.56494140625,
-0.0207366943359375,
0.033905029296875,
-0.18994140625,
0.1263427734375,
-0.9287109375,
-1.2001953125,
0.53271484375,
-0.0657958984375,
-0.376220703125,
0.84423828125,
-0.10791015625,
-0.1405029296875,
0.07916259765625,
0.62646484375,
-0.418701171875,
0.143798828125,
-0.44482421875,
0.55859375,
-0.66064453125,
-0.916015625,
-0.18798828125,
-0.48681640625,
0.916015625,
0.2110595703125,
-0.90478515625,
-0.305908203125,
-0.9140625,
-0.420654296875,
0.007640838623046875,
-0.5126953125,
0.10931396484375,
0.039215087890625,
-0.28857421875,
-0.1851806640625,
-0.265625,
-0.1038818359375,
-0.38134765625,
-0.51025390625,
-0.257568359375,
0.453125,
0.447998046875,
1.1181640625,
-0.007808685302734375,
-0.410888671875,
0.07275390625,
-0.0026988983154296875,
0.053680419921875,
-0.291015625,
-0.374267578125,
-0.25341796875,
-0.1544189453125,
-0.5419921875,
0.388916015625,
0.1217041015625,
0.58642578125,
0.60107421875,
0.035003662109375,
0.264404296875,
0.327880859375,
-0.818359375,
1.1142578125,
0.01171112060546875,
-1.279296875,
-0.7705078125,
0.291259765625,
0.404541015625,
0.51025390625,
0.394775390625,
-0.84375,
-0.60205078125,
-0.89892578125,
0.348388671875,
-0.56005859375,
0.01024627685546875,
-0.93310546875,
-0.54052734375,
-0.57763671875,
0.8173828125,
-0.281005859375,
-0.7998046875,
0.134033203125,
-0.9921875,
0.1343994140625,
-0.86376953125,
-0.29736328125,
-0.459716796875,
-0.66015625,
-0.46728515625,
1.1669921875,
0.36865234375,
0.420654296875,
-0.1304931640625,
-0.1708984375,
0.56103515625,
-0.1055908203125,
-0.7099609375,
-0.374267578125,
-0.137451171875,
-0.222900390625,
-0.2032470703125,
-0.1256103515625,
-0.6669921875,
0.81591796875,
-0.7607421875,
0.435302734375,
-0.272216796875,
-0.2220458984375,
-0.036590576171875,
-0.552734375,
1.10546875,
-0.5009765625,
0.10400390625,
-0.2333984375,
0.68798828125,
0.55810546875,
-0.09295654296875,
-0.03997802734375,
-0.50927734375,
-0.65234375,
-1.17578125,
0.4208984375,
-0.5185546875,
0.1236572265625,
-0.67041015625,
0.0762939453125,
1.365234375,
-0.919921875,
0.38525390625,
0.92529296875,
0.261474609375,
0.09332275390625,
-0.720703125,
0.6240234375,
0.58984375,
-0.54345703125,
0.1602783203125,
0.212158203125,
-0.953125,
-0.057891845703125,
-0.25439453125,
-0.93408203125,
-0.8134765625,
0.403076171875,
1.5498046875,
-0.59912109375,
0.6083984375,
-0.283203125,
-1.03125,
-0.54150390625,
0.66259765625,
0.490966796875,
0.728515625,
1.263671875,
0.033905029296875,
-0.031494140625,
0.44970703125,
-0.167724609375,
-0.163818359375,
-0.483642578125,
1.26171875,
-0.52978515625,
-0.260986328125,
0.84765625,
0.92919921875,
-1.2626953125,
-0.80224609375,
0.23388671875,
0.1514892578125,
-0.43310546875,
-0.8046875,
-0.025543212890625,
0.256103515625,
-0.85791015625,
-0.0599365234375,
0.51025390625,
-0.087890625,
0.2626953125,
0.058807373046875,
0.5576171875,
-0.55029296875,
0.5791015625,
0.415283203125,
-0.351318359375,
-0.4404296875,
-0.80908203125,
-0.463623046875,
-0.1148681640625,
-0.03851318359375,
0.92919921875,
-0.4052734375,
0.203369140625,
0.411376953125,
-0.1324462890625,
0.29931640625,
-0.385498046875,
-0.08868408203125,
0.1845703125,
-0.31494140625,
-0.8076171875,
-0.00039315223693847656,
0.1767578125,
0.01409912109375,
0.6552734375,
-0.45703125,
0.125,
0.07891845703125,
0.08123779296875,
-0.5380859375,
-0.53076171875,
-0.310302734375,
-1.2626953125,
-0.5576171875,
-0.81298828125,
-0.869140625,
-0.4326171875,
0.541015625,
-0.030975341796875,
-0.5263671875,
0.052642822265625,
0.439453125,
-0.666015625,
0.787109375,
-0.405517578125,
0.437255859375,
-0.6640625,
-0.52490234375,
-0.64306640625,
0.08905029296875,
-0.145751953125,
-0.327392578125,
-0.383544921875,
0.6669921875,
-0.265625,
0.390625,
-0.193603515625,
0.513671875,
-0.2783203125,
-1.0009765625,
-0.2061767578125,
-0.043792724609375,
-0.21435546875,
0.98828125,
1.12109375,
0.320556640625,
0.0885009765625,
-0.294189453125,
-0.489501953125,
-0.350341796875,
0.50341796875,
0.84765625,
-0.08001708984375,
-0.128662109375,
-0.281494140625,
0.391357421875,
-1.0146484375,
0.1156005859375,
-0.1600341796875,
0.157470703125,
0.192626953125,
-0.262451171875,
0.176513671875,
1.091796875,
-0.306396484375,
0.21484375,
0.08221435546875,
0.2462158203125,
0.1507568359375,
0.04315185546875,
0.250244140625,
0.300537109375,
0.01018524169921875,
-0.369140625,
-0.1610107421875,
0.477783203125,
-0.051849365234375,
0.451904296875,
-0.104736328125,
-1.015625,
-0.8330078125,
-0.442138671875,
-0.238525390625,
0.381591796875,
0.29541015625,
-0.453125,
-0.0665283203125,
0.1259765625,
-0.353271484375,
-0.133056640625,
-1.0341796875,
-1.208984375,
0.630859375,
-0.11907958984375,
-0.79541015625,
-0.46240234375,
-0.442626953125,
-0.08392333984375,
-0.07843017578125,
0.6064453125,
-0.134033203125,
0.603515625,
-0.2193603515625,
0.480224609375,
-0.172607421875,
0.1260986328125,
0.126953125,
0.642578125,
-0.7490234375,
-0.6572265625,
0.4033203125,
0.95361328125,
0.1298828125,
-0.313720703125,
-0.274169921875,
0.317138671875,
-0.0013303756713867188,
0.2197265625,
-0.3212890625,
0.161865234375,
-0.2607421875,
0.423583984375,
-0.79541015625,
-0.1400146484375,
-0.1676025390625,
0.58837890625,
0.1165771484375,
-0.6240234375,
-0.71044921875,
0.939453125,
0.82763671875,
-0.32470703125,
0.70263671875,
0.09539794921875,
0.1575927734375,
-0.2208251953125,
-0.129638671875,
-0.381103515625,
0.58837890625,
0.48193359375,
0.611328125,
-0.4443359375,
0.321533203125,
0.7919921875,
0.436767578125,
-0.080322265625,
0.362548828125,
-0.09161376953125,
0.00930023193359375,
0.004856109619140625,
-0.428955078125,
-0.354736328125,
0.07891845703125,
-0.9560546875,
0.436767578125,
-0.68017578125,
0.1949462890625,
-0.4091796875,
-0.80322265625,
0.69287109375,
-0.11724853515625,
-0.1400146484375,
0.334228515625,
-0.55810546875,
0.09478759765625,
0.88623046875,
-0.136962890625,
-0.3642578125,
0.5576171875,
0.84423828125,
0.7353515625,
0.66943359375,
0.293701171875,
0.57470703125,
-0.59033203125,
0.1778564453125,
-0.0106048583984375,
-0.03839111328125,
-0.462158203125,
-0.7373046875,
-1.0009765625,
0.3671875,
-0.488525390625,
-0.336669921875,
0.417724609375,
-0.595703125,
0.21923828125,
-0.0258941650390625,
0.69287109375,
-0.223876953125,
0.1151123046875,
0.33935546875,
-0.271240234375,
-0.92919921875,
1.068359375,
-0.249267578125,
0.52490234375,
-0.180908203125,
0.9296875,
-0.01849365234375,
1.44140625,
0.480712890625,
-0.408447265625,
0.12103271484375,
0.55908203125,
-0.39697265625,
-0.93603515625,
-0.7060546875,
-0.25146484375,
-0.109375,
-0.84228515625,
-0.29248046875,
0.2197265625,
1.080078125,
-0.2032470703125,
-1.0244140625,
-0.1761474609375,
0.282958984375,
-1.095703125,
0.434814453125,
0.1611328125,
-0.0806884765625,
0.1729736328125,
-0.0235443115234375,
-0.059173583984375,
-1.0263671875,
0.09771728515625,
-0.818359375,
0.1866455078125,
-0.96044921875,
-0.1268310546875,
-0.814453125,
-0.76708984375,
0.05322265625,
-0.435791015625,
-0.2056884765625,
-0.7158203125,
0.45361328125,
0.76171875,
0.456787109375,
0.0170135498046875,
-0.2340087890625,
0.125,
1.2587890625,
0.6787109375,
0.1478271484375,
0.84130859375,
0.1671142578125,
-0.346435546875,
-0.0972900390625,
-0.0794677734375,
0.6025390625,
-0.363037109375,
0.064697265625,
-0.3154296875,
0.1573486328125,
-0.9580078125,
-1.4677734375,
0.418212890625,
0.95556640625,
0.5087890625,
-0.412353515625,
-0.91943359375,
-0.288330078125,
-0.4189453125,
0.00394439697265625,
-0.68994140625,
0.6748046875,
-0.072998046875,
-0.166259765625,
-0.6201171875,
-1.0205078125,
4.2578125,
0.9052734375,
1.2841796875,
0.30419921875,
0.494140625,
0.69677734375,
0.27685546875,
-0.339599609375,
-0.1199951171875,
-0.2059326171875,
0.54443359375,
-0.423583984375,
0.07379150390625,
0.51904296875,
0.380859375,
0.65283203125,
-0.365966796875,
0.1654052734375,
0.173583984375,
-0.62646484375,
-0.85107421875,
0.3125,
-0.01322174072265625,
0.5947265625,
-0.2203369140625,
0.273681640625,
0.4658203125,
-0.6689453125,
-0.3271484375,
-0.765625,
0.392578125,
-0.333740234375,
0.97021484375,
0.2261962890625,
0.286376953125,
0.360107421875,
-0.07342529296875,
-0.125244140625,
-0.343994140625,
0.247314453125,
-0.0684814453125,
-0.12176513671875,
0.6787109375,
-0.76025390625,
-0.058197021484375,
0.626953125,
-0.5849609375,
0.460205078125,
0.55615234375,
-0.8828125,
0.77490234375,
-0.487548828125,
0.560546875,
-0.97705078125,
-0.27490234375,
0.06640625,
0.2171630859375,
0.0631103515625,
-0.34814453125,
0.12841796875,
0.4130859375,
0.689453125,
0.148193359375,
0.9619140625,
-1.0908203125,
0.3408203125,
0.037139892578125,
0.381591796875,
-0.6689453125,
-0.087890625,
-0.3359375,
-0.48681640625,
-0.1407470703125,
-0.5380859375,
0.3046875,
0.7490234375,
-0.209228515625,
0.787109375,
0.74560546875,
-0.626953125,
0.1412353515625,
-0.2337646484375,
-0.30126953125,
-0.822265625,
0.64404296875,
1.3388671875,
-0.759765625,
-0.09234619140625,
-0.210693359375,
0.56005859375,
0.4931640625,
0.9609375,
0.048065185546875,
-0.67529296875,
-0.192138671875
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
You are given a string s of length n consisting only of lowercase Latin letters.
A substring of a string is a contiguous subsequence of that string. So, string "forces" is substring of string "codeforces", but string "coder" is not.
Your task is to calculate the number of ways to remove exactly one substring from this string in such a way that all remaining characters are equal (the number of distinct characters either zero or one).
It is guaranteed that there is at least two different characters in s.
Note that you can remove the whole string and it is correct. Also note that you should remove at least one character.
Since the answer can be rather large (not very large though) print it modulo 998244353.
If you are Python programmer, consider using PyPy instead of Python when you submit your code.
Input
The first line of the input contains one integer n (2 ≤ n ≤ 2 ⋅ 10^5) — the length of the string s.
The second line of the input contains the string s of length n consisting only of lowercase Latin letters.
It is guaranteed that there is at least two different characters in s.
Output
Print one integer — the number of ways modulo 998244353 to remove exactly one substring from s in such way that all remaining characters are equal.
Examples
Input
4
abaa
Output
6
Input
7
aacdeee
Output
6
Input
2
az
Output
3
Note
Let s[l; r] be the substring of s from the position l to the position r inclusive.
Then in the first example you can remove the following substrings:
* s[1; 2];
* s[1; 3];
* s[1; 4];
* s[2; 2];
* s[2; 3];
* s[2; 4].
In the second example you can remove the following substrings:
* s[1; 4];
* s[1; 5];
* s[1; 6];
* s[1; 7];
* s[2; 7];
* s[3; 7].
In the third example you can remove the following substrings:
* s[1; 1];
* s[1; 2];
* s[2; 2].
Tags: combinatorics, math, strings
Correct Solution:
```
import sys,math,bisect
from random import randint
inf = float('inf')
mod = 998244353
"========================================"
def lcm(a,b):
return int((a/math.gcd(a,b))*b)
def gcd(a,b):
return int(math.gcd(a,b))
def tobinary(n):
return bin(n)[2:]
def binarySearch(a,x):
i = bisect.bisect_left(a,x)
if i!=len(a) and a[i]==x:
return i
else:
return -1
def lowerBound(a, x):
i = bisect.bisect_left(a, x)
if i:
return (i-1)
else:
return -1
def upperBound(a,x):
i = bisect.bisect_right(a,x)
if i!= len(a)+1 and a[i-1]==x:
return (i-1)
else:
return -1
def primesInRange(n):
ans = []
prime = [True for i in range(n+1)]
p = 2
while (p * p <= n):
if (prime[p] == True):
for i in range(p * p, n+1, p):
prime[i] = False
p += 1
for p in range(2, n+1):
if prime[p]:
ans.append(p)
return ans
def primeFactors(n):
factors = []
while n % 2 == 0:
factors.append(2)
n = n // 2
for i in range(3,int(math.sqrt(n))+1,2):
while n % i== 0:
factors.append(i)
n = n // i
if n > 2:
factors.append(n)
return factors
def isPrime(n,k=5):
if (n <2):
return True
for i in range(0,k):
a = randint(1,n-1)
if(pow(a,n-1,n)!=1):
return False
return True
"========================================="
"""
n = int(input())
n,k = map(int,input().split())
arr = list(map(int,input().split()))
"""
from collections import deque,defaultdict,Counter
import heapq,string
n=int(input())
s=input()
cnt=0
if n==2:
print(3)
else:
pref = 1
for i in range(1,n):
if s[i]==s[i-1]:
pref+=1
else:
break
suff=1
for i in range(n-2,-1,-1):
if s[i]==s[i+1]:
suff+=1
else:
break
if s[0]==s[-1]:
print((suff+1+pref+(suff*pref))%mod)
else:
print((suff+pref+1)%mod)
```
| 10,836 | [
0.1727294921875,
0.112548828125,
0.17578125,
0.33203125,
-0.404541015625,
-0.437744140625,
-0.2198486328125,
-0.289306640625,
0.1993408203125,
0.66943359375,
0.68701171875,
-0.2000732421875,
-0.05877685546875,
-1.00390625,
-0.3828125,
0.2191162109375,
-0.51953125,
-0.802734375,
-0.263916015625,
-0.088134765625,
0.1744384765625,
-0.2144775390625,
-1.0654296875,
-0.42626953125,
-0.441650390625,
1.125,
0.5146484375,
-0.062164306640625,
1.1845703125,
1.16015625,
-0.472412109375,
-0.8466796875,
0.46533203125,
-1.1796875,
-0.40966796875,
-0.68408203125,
0.9228515625,
-0.7197265625,
-0.01232147216796875,
-0.5458984375,
0.313232421875,
-0.456298828125,
0.68017578125,
-0.87841796875,
-1.208984375,
0.07000732421875,
-0.3193359375,
0.07635498046875,
-0.517578125,
-0.053497314453125,
0.0755615234375,
-0.1304931640625,
0.65673828125,
-0.338134765625,
0.25341796875,
0.268798828125,
0.08062744140625,
0.01363372802734375,
-0.5478515625,
0.330078125,
-0.17236328125,
0.445068359375,
-0.261474609375,
-0.6650390625,
-0.36279296875,
0.1964111328125,
-0.286376953125,
-0.01468658447265625,
0.2109375,
-0.8740234375,
0.0654296875,
0.032989501953125,
-0.6064453125,
-0.439208984375,
-0.298828125,
-0.006137847900390625,
-0.1256103515625,
-0.162109375,
-0.7060546875,
0.8271484375,
-0.1683349609375,
1.0224609375,
0.51416015625,
0.5029296875,
-0.69140625,
-0.487060546875,
0.0728759765625,
0.1871337890625,
0.24609375,
-0.1849365234375,
-0.191162109375,
0.767578125,
-0.80712890625,
-0.042999267578125,
0.2587890625,
0.497314453125,
0.1962890625,
0.350830078125,
0.270263671875,
-0.028106689453125,
0.990234375,
1.0546875,
-0.634765625,
1.1826171875,
-0.3837890625,
-0.1785888671875,
0.53564453125,
-0.01371002197265625,
-0.27978515625,
-0.11834716796875,
-0.3662109375,
-0.440185546875,
0.6865234375,
0.5947265625,
-0.3154296875,
0.95947265625,
-0.328369140625,
0.28466796875,
-0.56298828125,
0.29052734375,
0.53955078125,
0.02874755859375,
0.36181640625,
-0.17431640625,
-0.175048828125,
-0.435791015625,
-0.189208984375,
1.0458984375,
-0.449462890625,
0.2445068359375,
0.72802734375,
-0.13330078125,
0.193115234375,
0.042236328125,
-0.1131591796875,
0.94287109375,
-0.09564208984375,
0.51953125,
0.662109375,
-0.38330078125,
0.8330078125,
0.1436767578125,
-0.0176544189453125,
1.345703125,
0.362548828125,
0.01136016845703125,
0.716796875,
0.235595703125,
-0.6279296875,
0.1572265625,
-1.12890625,
0.8671875,
0.36669921875,
0.21533203125,
-0.12481689453125,
-0.08428955078125,
-0.296142578125,
0.67822265625,
0.268310546875,
0.09967041015625,
-0.3603515625,
0.1468505859375,
-0.28076171875,
0.91064453125,
-0.35791015625,
0.7431640625,
-0.37060546875,
-0.431640625,
-0.2410888671875,
-0.281005859375,
0.38720703125,
-0.0762939453125,
-0.34033203125,
0.87060546875,
0.6923828125,
0.77783203125,
0.7294921875,
-0.3349609375,
0.3515625,
0.1552734375,
-0.399169921875,
0.2998046875,
0.300048828125,
0.65966796875,
0.265869140625,
0.2685546875,
0.28955078125,
-0.29736328125,
-0.88134765625,
-0.5146484375,
0.515625,
0.646484375,
-0.466552734375,
0.69482421875,
0.362548828125,
0.06463623046875,
-0.71875,
0.0308990478515625,
-0.2232666015625,
-1.0478515625,
-0.273681640625,
0.7998046875,
-0.224609375,
0.210693359375,
-1.0078125,
-0.334716796875,
0.8232421875,
1.1376953125,
-0.30224609375,
-0.06268310546875,
0.61181640625,
-0.022369384765625,
-0.306396484375,
0.35009765625,
0.049468994140625,
-0.1822509765625,
-0.47998046875,
0.5517578125,
-0.1551513671875,
0.11822509765625,
0.06634521484375,
0.767578125,
0.406982421875,
0.3818359375,
-0.1983642578125,
-0.482421875,
0.1634521484375,
1.3271484375,
0.138427734375,
0.544921875,
0.46142578125,
1.0361328125,
0.5849609375,
0.60205078125,
0.4619140625,
0.1251220703125,
0.6328125,
1.201171875,
0.080322265625,
0.2705078125,
-0.032501220703125,
0.5625,
0.5693359375,
0.5439453125,
0.179443359375,
0.371826171875,
-0.25830078125,
-0.0875244140625,
-0.86376953125,
0.1724853515625,
-0.38330078125,
0.5302734375,
0.134521484375,
0.59228515625,
-0.5126953125,
-0.30322265625,
0.0526123046875,
0.6884765625,
-1.068359375,
-0.2099609375,
0.170654296875,
-0.0875244140625,
0.1744384765625,
0.06378173828125,
0.529296875,
0.2296142578125,
0.7646484375,
0.1925048828125,
-0.19140625,
-0.69775390625,
-0.78271484375,
-0.92822265625,
-0.7978515625,
-0.5712890625,
-0.75146484375,
-0.0120391845703125,
-0.03387451171875,
-0.88330078125,
0.375,
-0.244384765625,
-0.2225341796875,
0.53173828125,
-0.68505859375,
0.423583984375,
-0.357421875,
0.53271484375,
-0.46923828125,
0.375,
0.1903076171875,
1.095703125,
-0.634765625,
-0.2880859375,
-0.385009765625,
-0.5703125,
-0.004444122314453125,
0.1878662109375,
0.337646484375,
-0.341064453125,
-0.72216796875,
-0.81494140625,
-0.210693359375,
-0.282958984375,
-0.478515625,
0.343017578125,
-0.6201171875,
0.744140625,
0.595703125,
-0.6533203125,
0.71630859375,
1.1455078125,
-0.7861328125,
0.521484375,
0.220703125,
0.0281524658203125,
-0.7548828125,
1.2978515625,
0.50634765625,
0.5234375,
-0.73291015625,
-0.681640625,
-0.370361328125,
0.1793212890625,
0.263916015625,
-0.422607421875,
-0.44189453125,
0.52978515625,
-0.2734375,
-0.919921875,
0.72509765625,
-1.365234375,
-0.3828125,
-0.4453125,
-0.21923828125,
0.5888671875,
0.86572265625,
0.041351318359375,
-0.260986328125,
-0.298095703125,
-0.23876953125,
0.5888671875,
0.1807861328125,
-0.7431640625,
-0.2646484375,
0.5634765625,
-0.22265625,
0.00592803955078125,
-0.004703521728515625,
-0.5478515625,
0.0872802734375,
-0.25439453125,
0.041412353515625,
1.095703125,
0.2392578125,
0.54931640625,
0.541015625,
0.86328125,
-0.8125,
-0.36083984375,
-0.0458984375,
1.06640625,
0.60693359375,
0.5732421875,
0.4775390625,
-0.387451171875,
-0.7568359375,
-0.94482421875,
0.10650634765625,
0.04425048828125,
0.5927734375,
-0.6845703125,
0.38623046875,
0.09735107421875,
-0.6142578125,
0.4423828125,
-0.7783203125,
0.11004638671875,
1.18359375,
-0.293212890625,
0.64990234375,
-0.447998046875,
0.4189453125,
0.166748046875,
0.186279296875,
0.33642578125,
0.53271484375,
0.52685546875,
-0.470703125,
-0.64208984375,
-0.6630859375,
-0.150146484375,
0.1041259765625,
-0.654296875,
0.08160400390625,
-0.207763671875,
0.0308837890625,
-0.67626953125,
0.33544921875,
0.849609375,
0.42529296875,
0.311279296875,
0.40185546875,
0.0843505859375,
0.301025390625,
0.67529296875,
-0.50244140625,
0.08135986328125,
-0.423583984375,
0.58203125,
0.199462890625,
-0.2135009765625,
-0.409423828125,
-0.51025390625,
-0.01186370849609375,
0.498046875,
0.39892578125,
-0.1898193359375,
-0.9931640625,
0.26513671875,
-0.1461181640625,
0.865234375,
-0.7041015625,
-0.0577392578125,
-0.5751953125,
0.68408203125,
0.140869140625,
-0.97900390625,
0.1400146484375,
-1.171875,
0.783203125,
0.448486328125,
-0.056243896484375,
-0.72119140625,
-0.15869140625,
-0.62158203125,
-0.6650390625,
0.43359375,
0.97412109375,
-0.10235595703125,
-0.04241943359375,
-1.23828125,
0.2166748046875,
0.1492919921875,
-0.53466796875,
-0.09918212890625,
0.0274200439453125,
0.4326171875,
0.04656982421875,
0.74658203125,
-0.3359375,
-0.56884765625,
0.0576171875,
-1.1005859375,
0.74267578125,
-0.5576171875,
0.57080078125,
0.06268310546875,
-0.197265625,
0.131103515625,
0.56494140625,
-0.0207366943359375,
0.033905029296875,
-0.18994140625,
0.1263427734375,
-0.9287109375,
-1.2001953125,
0.53271484375,
-0.0657958984375,
-0.376220703125,
0.84423828125,
-0.10791015625,
-0.1405029296875,
0.07916259765625,
0.62646484375,
-0.418701171875,
0.143798828125,
-0.44482421875,
0.55859375,
-0.66064453125,
-0.916015625,
-0.18798828125,
-0.48681640625,
0.916015625,
0.2110595703125,
-0.90478515625,
-0.305908203125,
-0.9140625,
-0.420654296875,
0.007640838623046875,
-0.5126953125,
0.10931396484375,
0.039215087890625,
-0.28857421875,
-0.1851806640625,
-0.265625,
-0.1038818359375,
-0.38134765625,
-0.51025390625,
-0.257568359375,
0.453125,
0.447998046875,
1.1181640625,
-0.007808685302734375,
-0.410888671875,
0.07275390625,
-0.0026988983154296875,
0.053680419921875,
-0.291015625,
-0.374267578125,
-0.25341796875,
-0.1544189453125,
-0.5419921875,
0.388916015625,
0.1217041015625,
0.58642578125,
0.60107421875,
0.035003662109375,
0.264404296875,
0.327880859375,
-0.818359375,
1.1142578125,
0.01171112060546875,
-1.279296875,
-0.7705078125,
0.291259765625,
0.404541015625,
0.51025390625,
0.394775390625,
-0.84375,
-0.60205078125,
-0.89892578125,
0.348388671875,
-0.56005859375,
0.01024627685546875,
-0.93310546875,
-0.54052734375,
-0.57763671875,
0.8173828125,
-0.281005859375,
-0.7998046875,
0.134033203125,
-0.9921875,
0.1343994140625,
-0.86376953125,
-0.29736328125,
-0.459716796875,
-0.66015625,
-0.46728515625,
1.1669921875,
0.36865234375,
0.420654296875,
-0.1304931640625,
-0.1708984375,
0.56103515625,
-0.1055908203125,
-0.7099609375,
-0.374267578125,
-0.137451171875,
-0.222900390625,
-0.2032470703125,
-0.1256103515625,
-0.6669921875,
0.81591796875,
-0.7607421875,
0.435302734375,
-0.272216796875,
-0.2220458984375,
-0.036590576171875,
-0.552734375,
1.10546875,
-0.5009765625,
0.10400390625,
-0.2333984375,
0.68798828125,
0.55810546875,
-0.09295654296875,
-0.03997802734375,
-0.50927734375,
-0.65234375,
-1.17578125,
0.4208984375,
-0.5185546875,
0.1236572265625,
-0.67041015625,
0.0762939453125,
1.365234375,
-0.919921875,
0.38525390625,
0.92529296875,
0.261474609375,
0.09332275390625,
-0.720703125,
0.6240234375,
0.58984375,
-0.54345703125,
0.1602783203125,
0.212158203125,
-0.953125,
-0.057891845703125,
-0.25439453125,
-0.93408203125,
-0.8134765625,
0.403076171875,
1.5498046875,
-0.59912109375,
0.6083984375,
-0.283203125,
-1.03125,
-0.54150390625,
0.66259765625,
0.490966796875,
0.728515625,
1.263671875,
0.033905029296875,
-0.031494140625,
0.44970703125,
-0.167724609375,
-0.163818359375,
-0.483642578125,
1.26171875,
-0.52978515625,
-0.260986328125,
0.84765625,
0.92919921875,
-1.2626953125,
-0.80224609375,
0.23388671875,
0.1514892578125,
-0.43310546875,
-0.8046875,
-0.025543212890625,
0.256103515625,
-0.85791015625,
-0.0599365234375,
0.51025390625,
-0.087890625,
0.2626953125,
0.058807373046875,
0.5576171875,
-0.55029296875,
0.5791015625,
0.415283203125,
-0.351318359375,
-0.4404296875,
-0.80908203125,
-0.463623046875,
-0.1148681640625,
-0.03851318359375,
0.92919921875,
-0.4052734375,
0.203369140625,
0.411376953125,
-0.1324462890625,
0.29931640625,
-0.385498046875,
-0.08868408203125,
0.1845703125,
-0.31494140625,
-0.8076171875,
-0.00039315223693847656,
0.1767578125,
0.01409912109375,
0.6552734375,
-0.45703125,
0.125,
0.07891845703125,
0.08123779296875,
-0.5380859375,
-0.53076171875,
-0.310302734375,
-1.2626953125,
-0.5576171875,
-0.81298828125,
-0.869140625,
-0.4326171875,
0.541015625,
-0.030975341796875,
-0.5263671875,
0.052642822265625,
0.439453125,
-0.666015625,
0.787109375,
-0.405517578125,
0.437255859375,
-0.6640625,
-0.52490234375,
-0.64306640625,
0.08905029296875,
-0.145751953125,
-0.327392578125,
-0.383544921875,
0.6669921875,
-0.265625,
0.390625,
-0.193603515625,
0.513671875,
-0.2783203125,
-1.0009765625,
-0.2061767578125,
-0.043792724609375,
-0.21435546875,
0.98828125,
1.12109375,
0.320556640625,
0.0885009765625,
-0.294189453125,
-0.489501953125,
-0.350341796875,
0.50341796875,
0.84765625,
-0.08001708984375,
-0.128662109375,
-0.281494140625,
0.391357421875,
-1.0146484375,
0.1156005859375,
-0.1600341796875,
0.157470703125,
0.192626953125,
-0.262451171875,
0.176513671875,
1.091796875,
-0.306396484375,
0.21484375,
0.08221435546875,
0.2462158203125,
0.1507568359375,
0.04315185546875,
0.250244140625,
0.300537109375,
0.01018524169921875,
-0.369140625,
-0.1610107421875,
0.477783203125,
-0.051849365234375,
0.451904296875,
-0.104736328125,
-1.015625,
-0.8330078125,
-0.442138671875,
-0.238525390625,
0.381591796875,
0.29541015625,
-0.453125,
-0.0665283203125,
0.1259765625,
-0.353271484375,
-0.133056640625,
-1.0341796875,
-1.208984375,
0.630859375,
-0.11907958984375,
-0.79541015625,
-0.46240234375,
-0.442626953125,
-0.08392333984375,
-0.07843017578125,
0.6064453125,
-0.134033203125,
0.603515625,
-0.2193603515625,
0.480224609375,
-0.172607421875,
0.1260986328125,
0.126953125,
0.642578125,
-0.7490234375,
-0.6572265625,
0.4033203125,
0.95361328125,
0.1298828125,
-0.313720703125,
-0.274169921875,
0.317138671875,
-0.0013303756713867188,
0.2197265625,
-0.3212890625,
0.161865234375,
-0.2607421875,
0.423583984375,
-0.79541015625,
-0.1400146484375,
-0.1676025390625,
0.58837890625,
0.1165771484375,
-0.6240234375,
-0.71044921875,
0.939453125,
0.82763671875,
-0.32470703125,
0.70263671875,
0.09539794921875,
0.1575927734375,
-0.2208251953125,
-0.129638671875,
-0.381103515625,
0.58837890625,
0.48193359375,
0.611328125,
-0.4443359375,
0.321533203125,
0.7919921875,
0.436767578125,
-0.080322265625,
0.362548828125,
-0.09161376953125,
0.00930023193359375,
0.004856109619140625,
-0.428955078125,
-0.354736328125,
0.07891845703125,
-0.9560546875,
0.436767578125,
-0.68017578125,
0.1949462890625,
-0.4091796875,
-0.80322265625,
0.69287109375,
-0.11724853515625,
-0.1400146484375,
0.334228515625,
-0.55810546875,
0.09478759765625,
0.88623046875,
-0.136962890625,
-0.3642578125,
0.5576171875,
0.84423828125,
0.7353515625,
0.66943359375,
0.293701171875,
0.57470703125,
-0.59033203125,
0.1778564453125,
-0.0106048583984375,
-0.03839111328125,
-0.462158203125,
-0.7373046875,
-1.0009765625,
0.3671875,
-0.488525390625,
-0.336669921875,
0.417724609375,
-0.595703125,
0.21923828125,
-0.0258941650390625,
0.69287109375,
-0.223876953125,
0.1151123046875,
0.33935546875,
-0.271240234375,
-0.92919921875,
1.068359375,
-0.249267578125,
0.52490234375,
-0.180908203125,
0.9296875,
-0.01849365234375,
1.44140625,
0.480712890625,
-0.408447265625,
0.12103271484375,
0.55908203125,
-0.39697265625,
-0.93603515625,
-0.7060546875,
-0.25146484375,
-0.109375,
-0.84228515625,
-0.29248046875,
0.2197265625,
1.080078125,
-0.2032470703125,
-1.0244140625,
-0.1761474609375,
0.282958984375,
-1.095703125,
0.434814453125,
0.1611328125,
-0.0806884765625,
0.1729736328125,
-0.0235443115234375,
-0.059173583984375,
-1.0263671875,
0.09771728515625,
-0.818359375,
0.1866455078125,
-0.96044921875,
-0.1268310546875,
-0.814453125,
-0.76708984375,
0.05322265625,
-0.435791015625,
-0.2056884765625,
-0.7158203125,
0.45361328125,
0.76171875,
0.456787109375,
0.0170135498046875,
-0.2340087890625,
0.125,
1.2587890625,
0.6787109375,
0.1478271484375,
0.84130859375,
0.1671142578125,
-0.346435546875,
-0.0972900390625,
-0.0794677734375,
0.6025390625,
-0.363037109375,
0.064697265625,
-0.3154296875,
0.1573486328125,
-0.9580078125,
-1.4677734375,
0.418212890625,
0.95556640625,
0.5087890625,
-0.412353515625,
-0.91943359375,
-0.288330078125,
-0.4189453125,
0.00394439697265625,
-0.68994140625,
0.6748046875,
-0.072998046875,
-0.166259765625,
-0.6201171875,
-1.0205078125,
4.2578125,
0.9052734375,
1.2841796875,
0.30419921875,
0.494140625,
0.69677734375,
0.27685546875,
-0.339599609375,
-0.1199951171875,
-0.2059326171875,
0.54443359375,
-0.423583984375,
0.07379150390625,
0.51904296875,
0.380859375,
0.65283203125,
-0.365966796875,
0.1654052734375,
0.173583984375,
-0.62646484375,
-0.85107421875,
0.3125,
-0.01322174072265625,
0.5947265625,
-0.2203369140625,
0.273681640625,
0.4658203125,
-0.6689453125,
-0.3271484375,
-0.765625,
0.392578125,
-0.333740234375,
0.97021484375,
0.2261962890625,
0.286376953125,
0.360107421875,
-0.07342529296875,
-0.125244140625,
-0.343994140625,
0.247314453125,
-0.0684814453125,
-0.12176513671875,
0.6787109375,
-0.76025390625,
-0.058197021484375,
0.626953125,
-0.5849609375,
0.460205078125,
0.55615234375,
-0.8828125,
0.77490234375,
-0.487548828125,
0.560546875,
-0.97705078125,
-0.27490234375,
0.06640625,
0.2171630859375,
0.0631103515625,
-0.34814453125,
0.12841796875,
0.4130859375,
0.689453125,
0.148193359375,
0.9619140625,
-1.0908203125,
0.3408203125,
0.037139892578125,
0.381591796875,
-0.6689453125,
-0.087890625,
-0.3359375,
-0.48681640625,
-0.1407470703125,
-0.5380859375,
0.3046875,
0.7490234375,
-0.209228515625,
0.787109375,
0.74560546875,
-0.626953125,
0.1412353515625,
-0.2337646484375,
-0.30126953125,
-0.822265625,
0.64404296875,
1.3388671875,
-0.759765625,
-0.09234619140625,
-0.210693359375,
0.56005859375,
0.4931640625,
0.9609375,
0.048065185546875,
-0.67529296875,
-0.192138671875
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
You are given a string s of length n consisting only of lowercase Latin letters.
A substring of a string is a contiguous subsequence of that string. So, string "forces" is substring of string "codeforces", but string "coder" is not.
Your task is to calculate the number of ways to remove exactly one substring from this string in such a way that all remaining characters are equal (the number of distinct characters either zero or one).
It is guaranteed that there is at least two different characters in s.
Note that you can remove the whole string and it is correct. Also note that you should remove at least one character.
Since the answer can be rather large (not very large though) print it modulo 998244353.
If you are Python programmer, consider using PyPy instead of Python when you submit your code.
Input
The first line of the input contains one integer n (2 ≤ n ≤ 2 ⋅ 10^5) — the length of the string s.
The second line of the input contains the string s of length n consisting only of lowercase Latin letters.
It is guaranteed that there is at least two different characters in s.
Output
Print one integer — the number of ways modulo 998244353 to remove exactly one substring from s in such way that all remaining characters are equal.
Examples
Input
4
abaa
Output
6
Input
7
aacdeee
Output
6
Input
2
az
Output
3
Note
Let s[l; r] be the substring of s from the position l to the position r inclusive.
Then in the first example you can remove the following substrings:
* s[1; 2];
* s[1; 3];
* s[1; 4];
* s[2; 2];
* s[2; 3];
* s[2; 4].
In the second example you can remove the following substrings:
* s[1; 4];
* s[1; 5];
* s[1; 6];
* s[1; 7];
* s[2; 7];
* s[3; 7].
In the third example you can remove the following substrings:
* s[1; 1];
* s[1; 2];
* s[2; 2].
Tags: combinatorics, math, strings
Correct Solution:
```
import sys
n = int((sys.stdin.readline()).strip())
s = (sys.stdin.readline()).strip()
counter = {}
lower = 0
for i in range(n):
counter[s[i]]=1
if len(counter)>1:
lower = i
break
counter = {}
upper = n-1
for i in reversed(range(n)):
counter[s[i]]=1
if len(counter)>1:
upper = i
break
mod = 998244353
if s[0]==s[-1]:
ans = (((lower +1)%mod)*((n-upper)%mod))%mod
else:
ans = (((lower +1)%mod)+((n-upper)%mod)-1)%mod
print(ans)
```
| 10,837 | [
0.1727294921875,
0.112548828125,
0.17578125,
0.33203125,
-0.404541015625,
-0.437744140625,
-0.2198486328125,
-0.289306640625,
0.1993408203125,
0.66943359375,
0.68701171875,
-0.2000732421875,
-0.05877685546875,
-1.00390625,
-0.3828125,
0.2191162109375,
-0.51953125,
-0.802734375,
-0.263916015625,
-0.088134765625,
0.1744384765625,
-0.2144775390625,
-1.0654296875,
-0.42626953125,
-0.441650390625,
1.125,
0.5146484375,
-0.062164306640625,
1.1845703125,
1.16015625,
-0.472412109375,
-0.8466796875,
0.46533203125,
-1.1796875,
-0.40966796875,
-0.68408203125,
0.9228515625,
-0.7197265625,
-0.01232147216796875,
-0.5458984375,
0.313232421875,
-0.456298828125,
0.68017578125,
-0.87841796875,
-1.208984375,
0.07000732421875,
-0.3193359375,
0.07635498046875,
-0.517578125,
-0.053497314453125,
0.0755615234375,
-0.1304931640625,
0.65673828125,
-0.338134765625,
0.25341796875,
0.268798828125,
0.08062744140625,
0.01363372802734375,
-0.5478515625,
0.330078125,
-0.17236328125,
0.445068359375,
-0.261474609375,
-0.6650390625,
-0.36279296875,
0.1964111328125,
-0.286376953125,
-0.01468658447265625,
0.2109375,
-0.8740234375,
0.0654296875,
0.032989501953125,
-0.6064453125,
-0.439208984375,
-0.298828125,
-0.006137847900390625,
-0.1256103515625,
-0.162109375,
-0.7060546875,
0.8271484375,
-0.1683349609375,
1.0224609375,
0.51416015625,
0.5029296875,
-0.69140625,
-0.487060546875,
0.0728759765625,
0.1871337890625,
0.24609375,
-0.1849365234375,
-0.191162109375,
0.767578125,
-0.80712890625,
-0.042999267578125,
0.2587890625,
0.497314453125,
0.1962890625,
0.350830078125,
0.270263671875,
-0.028106689453125,
0.990234375,
1.0546875,
-0.634765625,
1.1826171875,
-0.3837890625,
-0.1785888671875,
0.53564453125,
-0.01371002197265625,
-0.27978515625,
-0.11834716796875,
-0.3662109375,
-0.440185546875,
0.6865234375,
0.5947265625,
-0.3154296875,
0.95947265625,
-0.328369140625,
0.28466796875,
-0.56298828125,
0.29052734375,
0.53955078125,
0.02874755859375,
0.36181640625,
-0.17431640625,
-0.175048828125,
-0.435791015625,
-0.189208984375,
1.0458984375,
-0.449462890625,
0.2445068359375,
0.72802734375,
-0.13330078125,
0.193115234375,
0.042236328125,
-0.1131591796875,
0.94287109375,
-0.09564208984375,
0.51953125,
0.662109375,
-0.38330078125,
0.8330078125,
0.1436767578125,
-0.0176544189453125,
1.345703125,
0.362548828125,
0.01136016845703125,
0.716796875,
0.235595703125,
-0.6279296875,
0.1572265625,
-1.12890625,
0.8671875,
0.36669921875,
0.21533203125,
-0.12481689453125,
-0.08428955078125,
-0.296142578125,
0.67822265625,
0.268310546875,
0.09967041015625,
-0.3603515625,
0.1468505859375,
-0.28076171875,
0.91064453125,
-0.35791015625,
0.7431640625,
-0.37060546875,
-0.431640625,
-0.2410888671875,
-0.281005859375,
0.38720703125,
-0.0762939453125,
-0.34033203125,
0.87060546875,
0.6923828125,
0.77783203125,
0.7294921875,
-0.3349609375,
0.3515625,
0.1552734375,
-0.399169921875,
0.2998046875,
0.300048828125,
0.65966796875,
0.265869140625,
0.2685546875,
0.28955078125,
-0.29736328125,
-0.88134765625,
-0.5146484375,
0.515625,
0.646484375,
-0.466552734375,
0.69482421875,
0.362548828125,
0.06463623046875,
-0.71875,
0.0308990478515625,
-0.2232666015625,
-1.0478515625,
-0.273681640625,
0.7998046875,
-0.224609375,
0.210693359375,
-1.0078125,
-0.334716796875,
0.8232421875,
1.1376953125,
-0.30224609375,
-0.06268310546875,
0.61181640625,
-0.022369384765625,
-0.306396484375,
0.35009765625,
0.049468994140625,
-0.1822509765625,
-0.47998046875,
0.5517578125,
-0.1551513671875,
0.11822509765625,
0.06634521484375,
0.767578125,
0.406982421875,
0.3818359375,
-0.1983642578125,
-0.482421875,
0.1634521484375,
1.3271484375,
0.138427734375,
0.544921875,
0.46142578125,
1.0361328125,
0.5849609375,
0.60205078125,
0.4619140625,
0.1251220703125,
0.6328125,
1.201171875,
0.080322265625,
0.2705078125,
-0.032501220703125,
0.5625,
0.5693359375,
0.5439453125,
0.179443359375,
0.371826171875,
-0.25830078125,
-0.0875244140625,
-0.86376953125,
0.1724853515625,
-0.38330078125,
0.5302734375,
0.134521484375,
0.59228515625,
-0.5126953125,
-0.30322265625,
0.0526123046875,
0.6884765625,
-1.068359375,
-0.2099609375,
0.170654296875,
-0.0875244140625,
0.1744384765625,
0.06378173828125,
0.529296875,
0.2296142578125,
0.7646484375,
0.1925048828125,
-0.19140625,
-0.69775390625,
-0.78271484375,
-0.92822265625,
-0.7978515625,
-0.5712890625,
-0.75146484375,
-0.0120391845703125,
-0.03387451171875,
-0.88330078125,
0.375,
-0.244384765625,
-0.2225341796875,
0.53173828125,
-0.68505859375,
0.423583984375,
-0.357421875,
0.53271484375,
-0.46923828125,
0.375,
0.1903076171875,
1.095703125,
-0.634765625,
-0.2880859375,
-0.385009765625,
-0.5703125,
-0.004444122314453125,
0.1878662109375,
0.337646484375,
-0.341064453125,
-0.72216796875,
-0.81494140625,
-0.210693359375,
-0.282958984375,
-0.478515625,
0.343017578125,
-0.6201171875,
0.744140625,
0.595703125,
-0.6533203125,
0.71630859375,
1.1455078125,
-0.7861328125,
0.521484375,
0.220703125,
0.0281524658203125,
-0.7548828125,
1.2978515625,
0.50634765625,
0.5234375,
-0.73291015625,
-0.681640625,
-0.370361328125,
0.1793212890625,
0.263916015625,
-0.422607421875,
-0.44189453125,
0.52978515625,
-0.2734375,
-0.919921875,
0.72509765625,
-1.365234375,
-0.3828125,
-0.4453125,
-0.21923828125,
0.5888671875,
0.86572265625,
0.041351318359375,
-0.260986328125,
-0.298095703125,
-0.23876953125,
0.5888671875,
0.1807861328125,
-0.7431640625,
-0.2646484375,
0.5634765625,
-0.22265625,
0.00592803955078125,
-0.004703521728515625,
-0.5478515625,
0.0872802734375,
-0.25439453125,
0.041412353515625,
1.095703125,
0.2392578125,
0.54931640625,
0.541015625,
0.86328125,
-0.8125,
-0.36083984375,
-0.0458984375,
1.06640625,
0.60693359375,
0.5732421875,
0.4775390625,
-0.387451171875,
-0.7568359375,
-0.94482421875,
0.10650634765625,
0.04425048828125,
0.5927734375,
-0.6845703125,
0.38623046875,
0.09735107421875,
-0.6142578125,
0.4423828125,
-0.7783203125,
0.11004638671875,
1.18359375,
-0.293212890625,
0.64990234375,
-0.447998046875,
0.4189453125,
0.166748046875,
0.186279296875,
0.33642578125,
0.53271484375,
0.52685546875,
-0.470703125,
-0.64208984375,
-0.6630859375,
-0.150146484375,
0.1041259765625,
-0.654296875,
0.08160400390625,
-0.207763671875,
0.0308837890625,
-0.67626953125,
0.33544921875,
0.849609375,
0.42529296875,
0.311279296875,
0.40185546875,
0.0843505859375,
0.301025390625,
0.67529296875,
-0.50244140625,
0.08135986328125,
-0.423583984375,
0.58203125,
0.199462890625,
-0.2135009765625,
-0.409423828125,
-0.51025390625,
-0.01186370849609375,
0.498046875,
0.39892578125,
-0.1898193359375,
-0.9931640625,
0.26513671875,
-0.1461181640625,
0.865234375,
-0.7041015625,
-0.0577392578125,
-0.5751953125,
0.68408203125,
0.140869140625,
-0.97900390625,
0.1400146484375,
-1.171875,
0.783203125,
0.448486328125,
-0.056243896484375,
-0.72119140625,
-0.15869140625,
-0.62158203125,
-0.6650390625,
0.43359375,
0.97412109375,
-0.10235595703125,
-0.04241943359375,
-1.23828125,
0.2166748046875,
0.1492919921875,
-0.53466796875,
-0.09918212890625,
0.0274200439453125,
0.4326171875,
0.04656982421875,
0.74658203125,
-0.3359375,
-0.56884765625,
0.0576171875,
-1.1005859375,
0.74267578125,
-0.5576171875,
0.57080078125,
0.06268310546875,
-0.197265625,
0.131103515625,
0.56494140625,
-0.0207366943359375,
0.033905029296875,
-0.18994140625,
0.1263427734375,
-0.9287109375,
-1.2001953125,
0.53271484375,
-0.0657958984375,
-0.376220703125,
0.84423828125,
-0.10791015625,
-0.1405029296875,
0.07916259765625,
0.62646484375,
-0.418701171875,
0.143798828125,
-0.44482421875,
0.55859375,
-0.66064453125,
-0.916015625,
-0.18798828125,
-0.48681640625,
0.916015625,
0.2110595703125,
-0.90478515625,
-0.305908203125,
-0.9140625,
-0.420654296875,
0.007640838623046875,
-0.5126953125,
0.10931396484375,
0.039215087890625,
-0.28857421875,
-0.1851806640625,
-0.265625,
-0.1038818359375,
-0.38134765625,
-0.51025390625,
-0.257568359375,
0.453125,
0.447998046875,
1.1181640625,
-0.007808685302734375,
-0.410888671875,
0.07275390625,
-0.0026988983154296875,
0.053680419921875,
-0.291015625,
-0.374267578125,
-0.25341796875,
-0.1544189453125,
-0.5419921875,
0.388916015625,
0.1217041015625,
0.58642578125,
0.60107421875,
0.035003662109375,
0.264404296875,
0.327880859375,
-0.818359375,
1.1142578125,
0.01171112060546875,
-1.279296875,
-0.7705078125,
0.291259765625,
0.404541015625,
0.51025390625,
0.394775390625,
-0.84375,
-0.60205078125,
-0.89892578125,
0.348388671875,
-0.56005859375,
0.01024627685546875,
-0.93310546875,
-0.54052734375,
-0.57763671875,
0.8173828125,
-0.281005859375,
-0.7998046875,
0.134033203125,
-0.9921875,
0.1343994140625,
-0.86376953125,
-0.29736328125,
-0.459716796875,
-0.66015625,
-0.46728515625,
1.1669921875,
0.36865234375,
0.420654296875,
-0.1304931640625,
-0.1708984375,
0.56103515625,
-0.1055908203125,
-0.7099609375,
-0.374267578125,
-0.137451171875,
-0.222900390625,
-0.2032470703125,
-0.1256103515625,
-0.6669921875,
0.81591796875,
-0.7607421875,
0.435302734375,
-0.272216796875,
-0.2220458984375,
-0.036590576171875,
-0.552734375,
1.10546875,
-0.5009765625,
0.10400390625,
-0.2333984375,
0.68798828125,
0.55810546875,
-0.09295654296875,
-0.03997802734375,
-0.50927734375,
-0.65234375,
-1.17578125,
0.4208984375,
-0.5185546875,
0.1236572265625,
-0.67041015625,
0.0762939453125,
1.365234375,
-0.919921875,
0.38525390625,
0.92529296875,
0.261474609375,
0.09332275390625,
-0.720703125,
0.6240234375,
0.58984375,
-0.54345703125,
0.1602783203125,
0.212158203125,
-0.953125,
-0.057891845703125,
-0.25439453125,
-0.93408203125,
-0.8134765625,
0.403076171875,
1.5498046875,
-0.59912109375,
0.6083984375,
-0.283203125,
-1.03125,
-0.54150390625,
0.66259765625,
0.490966796875,
0.728515625,
1.263671875,
0.033905029296875,
-0.031494140625,
0.44970703125,
-0.167724609375,
-0.163818359375,
-0.483642578125,
1.26171875,
-0.52978515625,
-0.260986328125,
0.84765625,
0.92919921875,
-1.2626953125,
-0.80224609375,
0.23388671875,
0.1514892578125,
-0.43310546875,
-0.8046875,
-0.025543212890625,
0.256103515625,
-0.85791015625,
-0.0599365234375,
0.51025390625,
-0.087890625,
0.2626953125,
0.058807373046875,
0.5576171875,
-0.55029296875,
0.5791015625,
0.415283203125,
-0.351318359375,
-0.4404296875,
-0.80908203125,
-0.463623046875,
-0.1148681640625,
-0.03851318359375,
0.92919921875,
-0.4052734375,
0.203369140625,
0.411376953125,
-0.1324462890625,
0.29931640625,
-0.385498046875,
-0.08868408203125,
0.1845703125,
-0.31494140625,
-0.8076171875,
-0.00039315223693847656,
0.1767578125,
0.01409912109375,
0.6552734375,
-0.45703125,
0.125,
0.07891845703125,
0.08123779296875,
-0.5380859375,
-0.53076171875,
-0.310302734375,
-1.2626953125,
-0.5576171875,
-0.81298828125,
-0.869140625,
-0.4326171875,
0.541015625,
-0.030975341796875,
-0.5263671875,
0.052642822265625,
0.439453125,
-0.666015625,
0.787109375,
-0.405517578125,
0.437255859375,
-0.6640625,
-0.52490234375,
-0.64306640625,
0.08905029296875,
-0.145751953125,
-0.327392578125,
-0.383544921875,
0.6669921875,
-0.265625,
0.390625,
-0.193603515625,
0.513671875,
-0.2783203125,
-1.0009765625,
-0.2061767578125,
-0.043792724609375,
-0.21435546875,
0.98828125,
1.12109375,
0.320556640625,
0.0885009765625,
-0.294189453125,
-0.489501953125,
-0.350341796875,
0.50341796875,
0.84765625,
-0.08001708984375,
-0.128662109375,
-0.281494140625,
0.391357421875,
-1.0146484375,
0.1156005859375,
-0.1600341796875,
0.157470703125,
0.192626953125,
-0.262451171875,
0.176513671875,
1.091796875,
-0.306396484375,
0.21484375,
0.08221435546875,
0.2462158203125,
0.1507568359375,
0.04315185546875,
0.250244140625,
0.300537109375,
0.01018524169921875,
-0.369140625,
-0.1610107421875,
0.477783203125,
-0.051849365234375,
0.451904296875,
-0.104736328125,
-1.015625,
-0.8330078125,
-0.442138671875,
-0.238525390625,
0.381591796875,
0.29541015625,
-0.453125,
-0.0665283203125,
0.1259765625,
-0.353271484375,
-0.133056640625,
-1.0341796875,
-1.208984375,
0.630859375,
-0.11907958984375,
-0.79541015625,
-0.46240234375,
-0.442626953125,
-0.08392333984375,
-0.07843017578125,
0.6064453125,
-0.134033203125,
0.603515625,
-0.2193603515625,
0.480224609375,
-0.172607421875,
0.1260986328125,
0.126953125,
0.642578125,
-0.7490234375,
-0.6572265625,
0.4033203125,
0.95361328125,
0.1298828125,
-0.313720703125,
-0.274169921875,
0.317138671875,
-0.0013303756713867188,
0.2197265625,
-0.3212890625,
0.161865234375,
-0.2607421875,
0.423583984375,
-0.79541015625,
-0.1400146484375,
-0.1676025390625,
0.58837890625,
0.1165771484375,
-0.6240234375,
-0.71044921875,
0.939453125,
0.82763671875,
-0.32470703125,
0.70263671875,
0.09539794921875,
0.1575927734375,
-0.2208251953125,
-0.129638671875,
-0.381103515625,
0.58837890625,
0.48193359375,
0.611328125,
-0.4443359375,
0.321533203125,
0.7919921875,
0.436767578125,
-0.080322265625,
0.362548828125,
-0.09161376953125,
0.00930023193359375,
0.004856109619140625,
-0.428955078125,
-0.354736328125,
0.07891845703125,
-0.9560546875,
0.436767578125,
-0.68017578125,
0.1949462890625,
-0.4091796875,
-0.80322265625,
0.69287109375,
-0.11724853515625,
-0.1400146484375,
0.334228515625,
-0.55810546875,
0.09478759765625,
0.88623046875,
-0.136962890625,
-0.3642578125,
0.5576171875,
0.84423828125,
0.7353515625,
0.66943359375,
0.293701171875,
0.57470703125,
-0.59033203125,
0.1778564453125,
-0.0106048583984375,
-0.03839111328125,
-0.462158203125,
-0.7373046875,
-1.0009765625,
0.3671875,
-0.488525390625,
-0.336669921875,
0.417724609375,
-0.595703125,
0.21923828125,
-0.0258941650390625,
0.69287109375,
-0.223876953125,
0.1151123046875,
0.33935546875,
-0.271240234375,
-0.92919921875,
1.068359375,
-0.249267578125,
0.52490234375,
-0.180908203125,
0.9296875,
-0.01849365234375,
1.44140625,
0.480712890625,
-0.408447265625,
0.12103271484375,
0.55908203125,
-0.39697265625,
-0.93603515625,
-0.7060546875,
-0.25146484375,
-0.109375,
-0.84228515625,
-0.29248046875,
0.2197265625,
1.080078125,
-0.2032470703125,
-1.0244140625,
-0.1761474609375,
0.282958984375,
-1.095703125,
0.434814453125,
0.1611328125,
-0.0806884765625,
0.1729736328125,
-0.0235443115234375,
-0.059173583984375,
-1.0263671875,
0.09771728515625,
-0.818359375,
0.1866455078125,
-0.96044921875,
-0.1268310546875,
-0.814453125,
-0.76708984375,
0.05322265625,
-0.435791015625,
-0.2056884765625,
-0.7158203125,
0.45361328125,
0.76171875,
0.456787109375,
0.0170135498046875,
-0.2340087890625,
0.125,
1.2587890625,
0.6787109375,
0.1478271484375,
0.84130859375,
0.1671142578125,
-0.346435546875,
-0.0972900390625,
-0.0794677734375,
0.6025390625,
-0.363037109375,
0.064697265625,
-0.3154296875,
0.1573486328125,
-0.9580078125,
-1.4677734375,
0.418212890625,
0.95556640625,
0.5087890625,
-0.412353515625,
-0.91943359375,
-0.288330078125,
-0.4189453125,
0.00394439697265625,
-0.68994140625,
0.6748046875,
-0.072998046875,
-0.166259765625,
-0.6201171875,
-1.0205078125,
4.2578125,
0.9052734375,
1.2841796875,
0.30419921875,
0.494140625,
0.69677734375,
0.27685546875,
-0.339599609375,
-0.1199951171875,
-0.2059326171875,
0.54443359375,
-0.423583984375,
0.07379150390625,
0.51904296875,
0.380859375,
0.65283203125,
-0.365966796875,
0.1654052734375,
0.173583984375,
-0.62646484375,
-0.85107421875,
0.3125,
-0.01322174072265625,
0.5947265625,
-0.2203369140625,
0.273681640625,
0.4658203125,
-0.6689453125,
-0.3271484375,
-0.765625,
0.392578125,
-0.333740234375,
0.97021484375,
0.2261962890625,
0.286376953125,
0.360107421875,
-0.07342529296875,
-0.125244140625,
-0.343994140625,
0.247314453125,
-0.0684814453125,
-0.12176513671875,
0.6787109375,
-0.76025390625,
-0.058197021484375,
0.626953125,
-0.5849609375,
0.460205078125,
0.55615234375,
-0.8828125,
0.77490234375,
-0.487548828125,
0.560546875,
-0.97705078125,
-0.27490234375,
0.06640625,
0.2171630859375,
0.0631103515625,
-0.34814453125,
0.12841796875,
0.4130859375,
0.689453125,
0.148193359375,
0.9619140625,
-1.0908203125,
0.3408203125,
0.037139892578125,
0.381591796875,
-0.6689453125,
-0.087890625,
-0.3359375,
-0.48681640625,
-0.1407470703125,
-0.5380859375,
0.3046875,
0.7490234375,
-0.209228515625,
0.787109375,
0.74560546875,
-0.626953125,
0.1412353515625,
-0.2337646484375,
-0.30126953125,
-0.822265625,
0.64404296875,
1.3388671875,
-0.759765625,
-0.09234619140625,
-0.210693359375,
0.56005859375,
0.4931640625,
0.9609375,
0.048065185546875,
-0.67529296875,
-0.192138671875
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
You are given a string s of length n consisting only of lowercase Latin letters.
A substring of a string is a contiguous subsequence of that string. So, string "forces" is substring of string "codeforces", but string "coder" is not.
Your task is to calculate the number of ways to remove exactly one substring from this string in such a way that all remaining characters are equal (the number of distinct characters either zero or one).
It is guaranteed that there is at least two different characters in s.
Note that you can remove the whole string and it is correct. Also note that you should remove at least one character.
Since the answer can be rather large (not very large though) print it modulo 998244353.
If you are Python programmer, consider using PyPy instead of Python when you submit your code.
Input
The first line of the input contains one integer n (2 ≤ n ≤ 2 ⋅ 10^5) — the length of the string s.
The second line of the input contains the string s of length n consisting only of lowercase Latin letters.
It is guaranteed that there is at least two different characters in s.
Output
Print one integer — the number of ways modulo 998244353 to remove exactly one substring from s in such way that all remaining characters are equal.
Examples
Input
4
abaa
Output
6
Input
7
aacdeee
Output
6
Input
2
az
Output
3
Note
Let s[l; r] be the substring of s from the position l to the position r inclusive.
Then in the first example you can remove the following substrings:
* s[1; 2];
* s[1; 3];
* s[1; 4];
* s[2; 2];
* s[2; 3];
* s[2; 4].
In the second example you can remove the following substrings:
* s[1; 4];
* s[1; 5];
* s[1; 6];
* s[1; 7];
* s[2; 7];
* s[3; 7].
In the third example you can remove the following substrings:
* s[1; 1];
* s[1; 2];
* s[2; 2].
Tags: combinatorics, math, strings
Correct Solution:
```
n = int(input())
s = list(input())
c =[s[0]]
m =[s[-1]]
for i in range(len(s)-1):
if(s[i]==s[i+1]):
c.append(s[i+1])
else:
break
s.reverse()
for i in range(len(s)-1):
if(s[i]==s[i+1]):
m.append(s[i+1])
else:
break
if(s[0]!=s[-1]):
print((len(c)+len(m)+1)%998244353)
else:
print((len(c)+1)*(len(m)+1)%998244353)
```
| 10,838 | [
0.1727294921875,
0.112548828125,
0.17578125,
0.33203125,
-0.404541015625,
-0.437744140625,
-0.2198486328125,
-0.289306640625,
0.1993408203125,
0.66943359375,
0.68701171875,
-0.2000732421875,
-0.05877685546875,
-1.00390625,
-0.3828125,
0.2191162109375,
-0.51953125,
-0.802734375,
-0.263916015625,
-0.088134765625,
0.1744384765625,
-0.2144775390625,
-1.0654296875,
-0.42626953125,
-0.441650390625,
1.125,
0.5146484375,
-0.062164306640625,
1.1845703125,
1.16015625,
-0.472412109375,
-0.8466796875,
0.46533203125,
-1.1796875,
-0.40966796875,
-0.68408203125,
0.9228515625,
-0.7197265625,
-0.01232147216796875,
-0.5458984375,
0.313232421875,
-0.456298828125,
0.68017578125,
-0.87841796875,
-1.208984375,
0.07000732421875,
-0.3193359375,
0.07635498046875,
-0.517578125,
-0.053497314453125,
0.0755615234375,
-0.1304931640625,
0.65673828125,
-0.338134765625,
0.25341796875,
0.268798828125,
0.08062744140625,
0.01363372802734375,
-0.5478515625,
0.330078125,
-0.17236328125,
0.445068359375,
-0.261474609375,
-0.6650390625,
-0.36279296875,
0.1964111328125,
-0.286376953125,
-0.01468658447265625,
0.2109375,
-0.8740234375,
0.0654296875,
0.032989501953125,
-0.6064453125,
-0.439208984375,
-0.298828125,
-0.006137847900390625,
-0.1256103515625,
-0.162109375,
-0.7060546875,
0.8271484375,
-0.1683349609375,
1.0224609375,
0.51416015625,
0.5029296875,
-0.69140625,
-0.487060546875,
0.0728759765625,
0.1871337890625,
0.24609375,
-0.1849365234375,
-0.191162109375,
0.767578125,
-0.80712890625,
-0.042999267578125,
0.2587890625,
0.497314453125,
0.1962890625,
0.350830078125,
0.270263671875,
-0.028106689453125,
0.990234375,
1.0546875,
-0.634765625,
1.1826171875,
-0.3837890625,
-0.1785888671875,
0.53564453125,
-0.01371002197265625,
-0.27978515625,
-0.11834716796875,
-0.3662109375,
-0.440185546875,
0.6865234375,
0.5947265625,
-0.3154296875,
0.95947265625,
-0.328369140625,
0.28466796875,
-0.56298828125,
0.29052734375,
0.53955078125,
0.02874755859375,
0.36181640625,
-0.17431640625,
-0.175048828125,
-0.435791015625,
-0.189208984375,
1.0458984375,
-0.449462890625,
0.2445068359375,
0.72802734375,
-0.13330078125,
0.193115234375,
0.042236328125,
-0.1131591796875,
0.94287109375,
-0.09564208984375,
0.51953125,
0.662109375,
-0.38330078125,
0.8330078125,
0.1436767578125,
-0.0176544189453125,
1.345703125,
0.362548828125,
0.01136016845703125,
0.716796875,
0.235595703125,
-0.6279296875,
0.1572265625,
-1.12890625,
0.8671875,
0.36669921875,
0.21533203125,
-0.12481689453125,
-0.08428955078125,
-0.296142578125,
0.67822265625,
0.268310546875,
0.09967041015625,
-0.3603515625,
0.1468505859375,
-0.28076171875,
0.91064453125,
-0.35791015625,
0.7431640625,
-0.37060546875,
-0.431640625,
-0.2410888671875,
-0.281005859375,
0.38720703125,
-0.0762939453125,
-0.34033203125,
0.87060546875,
0.6923828125,
0.77783203125,
0.7294921875,
-0.3349609375,
0.3515625,
0.1552734375,
-0.399169921875,
0.2998046875,
0.300048828125,
0.65966796875,
0.265869140625,
0.2685546875,
0.28955078125,
-0.29736328125,
-0.88134765625,
-0.5146484375,
0.515625,
0.646484375,
-0.466552734375,
0.69482421875,
0.362548828125,
0.06463623046875,
-0.71875,
0.0308990478515625,
-0.2232666015625,
-1.0478515625,
-0.273681640625,
0.7998046875,
-0.224609375,
0.210693359375,
-1.0078125,
-0.334716796875,
0.8232421875,
1.1376953125,
-0.30224609375,
-0.06268310546875,
0.61181640625,
-0.022369384765625,
-0.306396484375,
0.35009765625,
0.049468994140625,
-0.1822509765625,
-0.47998046875,
0.5517578125,
-0.1551513671875,
0.11822509765625,
0.06634521484375,
0.767578125,
0.406982421875,
0.3818359375,
-0.1983642578125,
-0.482421875,
0.1634521484375,
1.3271484375,
0.138427734375,
0.544921875,
0.46142578125,
1.0361328125,
0.5849609375,
0.60205078125,
0.4619140625,
0.1251220703125,
0.6328125,
1.201171875,
0.080322265625,
0.2705078125,
-0.032501220703125,
0.5625,
0.5693359375,
0.5439453125,
0.179443359375,
0.371826171875,
-0.25830078125,
-0.0875244140625,
-0.86376953125,
0.1724853515625,
-0.38330078125,
0.5302734375,
0.134521484375,
0.59228515625,
-0.5126953125,
-0.30322265625,
0.0526123046875,
0.6884765625,
-1.068359375,
-0.2099609375,
0.170654296875,
-0.0875244140625,
0.1744384765625,
0.06378173828125,
0.529296875,
0.2296142578125,
0.7646484375,
0.1925048828125,
-0.19140625,
-0.69775390625,
-0.78271484375,
-0.92822265625,
-0.7978515625,
-0.5712890625,
-0.75146484375,
-0.0120391845703125,
-0.03387451171875,
-0.88330078125,
0.375,
-0.244384765625,
-0.2225341796875,
0.53173828125,
-0.68505859375,
0.423583984375,
-0.357421875,
0.53271484375,
-0.46923828125,
0.375,
0.1903076171875,
1.095703125,
-0.634765625,
-0.2880859375,
-0.385009765625,
-0.5703125,
-0.004444122314453125,
0.1878662109375,
0.337646484375,
-0.341064453125,
-0.72216796875,
-0.81494140625,
-0.210693359375,
-0.282958984375,
-0.478515625,
0.343017578125,
-0.6201171875,
0.744140625,
0.595703125,
-0.6533203125,
0.71630859375,
1.1455078125,
-0.7861328125,
0.521484375,
0.220703125,
0.0281524658203125,
-0.7548828125,
1.2978515625,
0.50634765625,
0.5234375,
-0.73291015625,
-0.681640625,
-0.370361328125,
0.1793212890625,
0.263916015625,
-0.422607421875,
-0.44189453125,
0.52978515625,
-0.2734375,
-0.919921875,
0.72509765625,
-1.365234375,
-0.3828125,
-0.4453125,
-0.21923828125,
0.5888671875,
0.86572265625,
0.041351318359375,
-0.260986328125,
-0.298095703125,
-0.23876953125,
0.5888671875,
0.1807861328125,
-0.7431640625,
-0.2646484375,
0.5634765625,
-0.22265625,
0.00592803955078125,
-0.004703521728515625,
-0.5478515625,
0.0872802734375,
-0.25439453125,
0.041412353515625,
1.095703125,
0.2392578125,
0.54931640625,
0.541015625,
0.86328125,
-0.8125,
-0.36083984375,
-0.0458984375,
1.06640625,
0.60693359375,
0.5732421875,
0.4775390625,
-0.387451171875,
-0.7568359375,
-0.94482421875,
0.10650634765625,
0.04425048828125,
0.5927734375,
-0.6845703125,
0.38623046875,
0.09735107421875,
-0.6142578125,
0.4423828125,
-0.7783203125,
0.11004638671875,
1.18359375,
-0.293212890625,
0.64990234375,
-0.447998046875,
0.4189453125,
0.166748046875,
0.186279296875,
0.33642578125,
0.53271484375,
0.52685546875,
-0.470703125,
-0.64208984375,
-0.6630859375,
-0.150146484375,
0.1041259765625,
-0.654296875,
0.08160400390625,
-0.207763671875,
0.0308837890625,
-0.67626953125,
0.33544921875,
0.849609375,
0.42529296875,
0.311279296875,
0.40185546875,
0.0843505859375,
0.301025390625,
0.67529296875,
-0.50244140625,
0.08135986328125,
-0.423583984375,
0.58203125,
0.199462890625,
-0.2135009765625,
-0.409423828125,
-0.51025390625,
-0.01186370849609375,
0.498046875,
0.39892578125,
-0.1898193359375,
-0.9931640625,
0.26513671875,
-0.1461181640625,
0.865234375,
-0.7041015625,
-0.0577392578125,
-0.5751953125,
0.68408203125,
0.140869140625,
-0.97900390625,
0.1400146484375,
-1.171875,
0.783203125,
0.448486328125,
-0.056243896484375,
-0.72119140625,
-0.15869140625,
-0.62158203125,
-0.6650390625,
0.43359375,
0.97412109375,
-0.10235595703125,
-0.04241943359375,
-1.23828125,
0.2166748046875,
0.1492919921875,
-0.53466796875,
-0.09918212890625,
0.0274200439453125,
0.4326171875,
0.04656982421875,
0.74658203125,
-0.3359375,
-0.56884765625,
0.0576171875,
-1.1005859375,
0.74267578125,
-0.5576171875,
0.57080078125,
0.06268310546875,
-0.197265625,
0.131103515625,
0.56494140625,
-0.0207366943359375,
0.033905029296875,
-0.18994140625,
0.1263427734375,
-0.9287109375,
-1.2001953125,
0.53271484375,
-0.0657958984375,
-0.376220703125,
0.84423828125,
-0.10791015625,
-0.1405029296875,
0.07916259765625,
0.62646484375,
-0.418701171875,
0.143798828125,
-0.44482421875,
0.55859375,
-0.66064453125,
-0.916015625,
-0.18798828125,
-0.48681640625,
0.916015625,
0.2110595703125,
-0.90478515625,
-0.305908203125,
-0.9140625,
-0.420654296875,
0.007640838623046875,
-0.5126953125,
0.10931396484375,
0.039215087890625,
-0.28857421875,
-0.1851806640625,
-0.265625,
-0.1038818359375,
-0.38134765625,
-0.51025390625,
-0.257568359375,
0.453125,
0.447998046875,
1.1181640625,
-0.007808685302734375,
-0.410888671875,
0.07275390625,
-0.0026988983154296875,
0.053680419921875,
-0.291015625,
-0.374267578125,
-0.25341796875,
-0.1544189453125,
-0.5419921875,
0.388916015625,
0.1217041015625,
0.58642578125,
0.60107421875,
0.035003662109375,
0.264404296875,
0.327880859375,
-0.818359375,
1.1142578125,
0.01171112060546875,
-1.279296875,
-0.7705078125,
0.291259765625,
0.404541015625,
0.51025390625,
0.394775390625,
-0.84375,
-0.60205078125,
-0.89892578125,
0.348388671875,
-0.56005859375,
0.01024627685546875,
-0.93310546875,
-0.54052734375,
-0.57763671875,
0.8173828125,
-0.281005859375,
-0.7998046875,
0.134033203125,
-0.9921875,
0.1343994140625,
-0.86376953125,
-0.29736328125,
-0.459716796875,
-0.66015625,
-0.46728515625,
1.1669921875,
0.36865234375,
0.420654296875,
-0.1304931640625,
-0.1708984375,
0.56103515625,
-0.1055908203125,
-0.7099609375,
-0.374267578125,
-0.137451171875,
-0.222900390625,
-0.2032470703125,
-0.1256103515625,
-0.6669921875,
0.81591796875,
-0.7607421875,
0.435302734375,
-0.272216796875,
-0.2220458984375,
-0.036590576171875,
-0.552734375,
1.10546875,
-0.5009765625,
0.10400390625,
-0.2333984375,
0.68798828125,
0.55810546875,
-0.09295654296875,
-0.03997802734375,
-0.50927734375,
-0.65234375,
-1.17578125,
0.4208984375,
-0.5185546875,
0.1236572265625,
-0.67041015625,
0.0762939453125,
1.365234375,
-0.919921875,
0.38525390625,
0.92529296875,
0.261474609375,
0.09332275390625,
-0.720703125,
0.6240234375,
0.58984375,
-0.54345703125,
0.1602783203125,
0.212158203125,
-0.953125,
-0.057891845703125,
-0.25439453125,
-0.93408203125,
-0.8134765625,
0.403076171875,
1.5498046875,
-0.59912109375,
0.6083984375,
-0.283203125,
-1.03125,
-0.54150390625,
0.66259765625,
0.490966796875,
0.728515625,
1.263671875,
0.033905029296875,
-0.031494140625,
0.44970703125,
-0.167724609375,
-0.163818359375,
-0.483642578125,
1.26171875,
-0.52978515625,
-0.260986328125,
0.84765625,
0.92919921875,
-1.2626953125,
-0.80224609375,
0.23388671875,
0.1514892578125,
-0.43310546875,
-0.8046875,
-0.025543212890625,
0.256103515625,
-0.85791015625,
-0.0599365234375,
0.51025390625,
-0.087890625,
0.2626953125,
0.058807373046875,
0.5576171875,
-0.55029296875,
0.5791015625,
0.415283203125,
-0.351318359375,
-0.4404296875,
-0.80908203125,
-0.463623046875,
-0.1148681640625,
-0.03851318359375,
0.92919921875,
-0.4052734375,
0.203369140625,
0.411376953125,
-0.1324462890625,
0.29931640625,
-0.385498046875,
-0.08868408203125,
0.1845703125,
-0.31494140625,
-0.8076171875,
-0.00039315223693847656,
0.1767578125,
0.01409912109375,
0.6552734375,
-0.45703125,
0.125,
0.07891845703125,
0.08123779296875,
-0.5380859375,
-0.53076171875,
-0.310302734375,
-1.2626953125,
-0.5576171875,
-0.81298828125,
-0.869140625,
-0.4326171875,
0.541015625,
-0.030975341796875,
-0.5263671875,
0.052642822265625,
0.439453125,
-0.666015625,
0.787109375,
-0.405517578125,
0.437255859375,
-0.6640625,
-0.52490234375,
-0.64306640625,
0.08905029296875,
-0.145751953125,
-0.327392578125,
-0.383544921875,
0.6669921875,
-0.265625,
0.390625,
-0.193603515625,
0.513671875,
-0.2783203125,
-1.0009765625,
-0.2061767578125,
-0.043792724609375,
-0.21435546875,
0.98828125,
1.12109375,
0.320556640625,
0.0885009765625,
-0.294189453125,
-0.489501953125,
-0.350341796875,
0.50341796875,
0.84765625,
-0.08001708984375,
-0.128662109375,
-0.281494140625,
0.391357421875,
-1.0146484375,
0.1156005859375,
-0.1600341796875,
0.157470703125,
0.192626953125,
-0.262451171875,
0.176513671875,
1.091796875,
-0.306396484375,
0.21484375,
0.08221435546875,
0.2462158203125,
0.1507568359375,
0.04315185546875,
0.250244140625,
0.300537109375,
0.01018524169921875,
-0.369140625,
-0.1610107421875,
0.477783203125,
-0.051849365234375,
0.451904296875,
-0.104736328125,
-1.015625,
-0.8330078125,
-0.442138671875,
-0.238525390625,
0.381591796875,
0.29541015625,
-0.453125,
-0.0665283203125,
0.1259765625,
-0.353271484375,
-0.133056640625,
-1.0341796875,
-1.208984375,
0.630859375,
-0.11907958984375,
-0.79541015625,
-0.46240234375,
-0.442626953125,
-0.08392333984375,
-0.07843017578125,
0.6064453125,
-0.134033203125,
0.603515625,
-0.2193603515625,
0.480224609375,
-0.172607421875,
0.1260986328125,
0.126953125,
0.642578125,
-0.7490234375,
-0.6572265625,
0.4033203125,
0.95361328125,
0.1298828125,
-0.313720703125,
-0.274169921875,
0.317138671875,
-0.0013303756713867188,
0.2197265625,
-0.3212890625,
0.161865234375,
-0.2607421875,
0.423583984375,
-0.79541015625,
-0.1400146484375,
-0.1676025390625,
0.58837890625,
0.1165771484375,
-0.6240234375,
-0.71044921875,
0.939453125,
0.82763671875,
-0.32470703125,
0.70263671875,
0.09539794921875,
0.1575927734375,
-0.2208251953125,
-0.129638671875,
-0.381103515625,
0.58837890625,
0.48193359375,
0.611328125,
-0.4443359375,
0.321533203125,
0.7919921875,
0.436767578125,
-0.080322265625,
0.362548828125,
-0.09161376953125,
0.00930023193359375,
0.004856109619140625,
-0.428955078125,
-0.354736328125,
0.07891845703125,
-0.9560546875,
0.436767578125,
-0.68017578125,
0.1949462890625,
-0.4091796875,
-0.80322265625,
0.69287109375,
-0.11724853515625,
-0.1400146484375,
0.334228515625,
-0.55810546875,
0.09478759765625,
0.88623046875,
-0.136962890625,
-0.3642578125,
0.5576171875,
0.84423828125,
0.7353515625,
0.66943359375,
0.293701171875,
0.57470703125,
-0.59033203125,
0.1778564453125,
-0.0106048583984375,
-0.03839111328125,
-0.462158203125,
-0.7373046875,
-1.0009765625,
0.3671875,
-0.488525390625,
-0.336669921875,
0.417724609375,
-0.595703125,
0.21923828125,
-0.0258941650390625,
0.69287109375,
-0.223876953125,
0.1151123046875,
0.33935546875,
-0.271240234375,
-0.92919921875,
1.068359375,
-0.249267578125,
0.52490234375,
-0.180908203125,
0.9296875,
-0.01849365234375,
1.44140625,
0.480712890625,
-0.408447265625,
0.12103271484375,
0.55908203125,
-0.39697265625,
-0.93603515625,
-0.7060546875,
-0.25146484375,
-0.109375,
-0.84228515625,
-0.29248046875,
0.2197265625,
1.080078125,
-0.2032470703125,
-1.0244140625,
-0.1761474609375,
0.282958984375,
-1.095703125,
0.434814453125,
0.1611328125,
-0.0806884765625,
0.1729736328125,
-0.0235443115234375,
-0.059173583984375,
-1.0263671875,
0.09771728515625,
-0.818359375,
0.1866455078125,
-0.96044921875,
-0.1268310546875,
-0.814453125,
-0.76708984375,
0.05322265625,
-0.435791015625,
-0.2056884765625,
-0.7158203125,
0.45361328125,
0.76171875,
0.456787109375,
0.0170135498046875,
-0.2340087890625,
0.125,
1.2587890625,
0.6787109375,
0.1478271484375,
0.84130859375,
0.1671142578125,
-0.346435546875,
-0.0972900390625,
-0.0794677734375,
0.6025390625,
-0.363037109375,
0.064697265625,
-0.3154296875,
0.1573486328125,
-0.9580078125,
-1.4677734375,
0.418212890625,
0.95556640625,
0.5087890625,
-0.412353515625,
-0.91943359375,
-0.288330078125,
-0.4189453125,
0.00394439697265625,
-0.68994140625,
0.6748046875,
-0.072998046875,
-0.166259765625,
-0.6201171875,
-1.0205078125,
4.2578125,
0.9052734375,
1.2841796875,
0.30419921875,
0.494140625,
0.69677734375,
0.27685546875,
-0.339599609375,
-0.1199951171875,
-0.2059326171875,
0.54443359375,
-0.423583984375,
0.07379150390625,
0.51904296875,
0.380859375,
0.65283203125,
-0.365966796875,
0.1654052734375,
0.173583984375,
-0.62646484375,
-0.85107421875,
0.3125,
-0.01322174072265625,
0.5947265625,
-0.2203369140625,
0.273681640625,
0.4658203125,
-0.6689453125,
-0.3271484375,
-0.765625,
0.392578125,
-0.333740234375,
0.97021484375,
0.2261962890625,
0.286376953125,
0.360107421875,
-0.07342529296875,
-0.125244140625,
-0.343994140625,
0.247314453125,
-0.0684814453125,
-0.12176513671875,
0.6787109375,
-0.76025390625,
-0.058197021484375,
0.626953125,
-0.5849609375,
0.460205078125,
0.55615234375,
-0.8828125,
0.77490234375,
-0.487548828125,
0.560546875,
-0.97705078125,
-0.27490234375,
0.06640625,
0.2171630859375,
0.0631103515625,
-0.34814453125,
0.12841796875,
0.4130859375,
0.689453125,
0.148193359375,
0.9619140625,
-1.0908203125,
0.3408203125,
0.037139892578125,
0.381591796875,
-0.6689453125,
-0.087890625,
-0.3359375,
-0.48681640625,
-0.1407470703125,
-0.5380859375,
0.3046875,
0.7490234375,
-0.209228515625,
0.787109375,
0.74560546875,
-0.626953125,
0.1412353515625,
-0.2337646484375,
-0.30126953125,
-0.822265625,
0.64404296875,
1.3388671875,
-0.759765625,
-0.09234619140625,
-0.210693359375,
0.56005859375,
0.4931640625,
0.9609375,
0.048065185546875,
-0.67529296875,
-0.192138671875
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
You are given a string s of length n consisting only of lowercase Latin letters.
A substring of a string is a contiguous subsequence of that string. So, string "forces" is substring of string "codeforces", but string "coder" is not.
Your task is to calculate the number of ways to remove exactly one substring from this string in such a way that all remaining characters are equal (the number of distinct characters either zero or one).
It is guaranteed that there is at least two different characters in s.
Note that you can remove the whole string and it is correct. Also note that you should remove at least one character.
Since the answer can be rather large (not very large though) print it modulo 998244353.
If you are Python programmer, consider using PyPy instead of Python when you submit your code.
Input
The first line of the input contains one integer n (2 ≤ n ≤ 2 ⋅ 10^5) — the length of the string s.
The second line of the input contains the string s of length n consisting only of lowercase Latin letters.
It is guaranteed that there is at least two different characters in s.
Output
Print one integer — the number of ways modulo 998244353 to remove exactly one substring from s in such way that all remaining characters are equal.
Examples
Input
4
abaa
Output
6
Input
7
aacdeee
Output
6
Input
2
az
Output
3
Note
Let s[l; r] be the substring of s from the position l to the position r inclusive.
Then in the first example you can remove the following substrings:
* s[1; 2];
* s[1; 3];
* s[1; 4];
* s[2; 2];
* s[2; 3];
* s[2; 4].
In the second example you can remove the following substrings:
* s[1; 4];
* s[1; 5];
* s[1; 6];
* s[1; 7];
* s[2; 7];
* s[3; 7].
In the third example you can remove the following substrings:
* s[1; 1];
* s[1; 2];
* s[2; 2].
Submitted Solution:
```
n = int(input())
s = input()
for i in range(n-1):
if s[i+1]==s[i]:
pass
else:
l = i+1
break
for i in range(n-1):
if s[n-1-(i+1)]==s[n-1-i]:
pass
else:
r = n-1-i-1
break
ans =0
temp = 0
inf = 998244353
if s[0]==s[-1]: #ans = (n-r)*l+n-r
ans = ans+ n%inf -r%inf
ans = ans%inf
temp = temp+n%inf - r%inf
temp = temp%inf
temp = temp *(l%inf)
temp = temp%inf
ans = ans+temp
ans = ans%inf
else:
ans = ans+l%inf+n%inf -r%inf #ans = n-r+l
ans = ans%inf
print(ans)
```
Yes
| 10,839 | [
0.21484375,
0.270263671875,
0.139892578125,
0.261474609375,
-0.55615234375,
-0.3779296875,
-0.1878662109375,
-0.2113037109375,
0.0882568359375,
0.8232421875,
0.68994140625,
-0.281005859375,
-0.046600341796875,
-1.00390625,
-0.36376953125,
0.2296142578125,
-0.50390625,
-0.70703125,
-0.1749267578125,
-0.0626220703125,
0.11700439453125,
-0.251220703125,
-1.0458984375,
-0.324951171875,
-0.4599609375,
1.1025390625,
0.5908203125,
0.007389068603515625,
1.14453125,
1.1064453125,
-0.4638671875,
-0.775390625,
0.4931640625,
-1.03515625,
-0.2413330078125,
-0.81787109375,
0.9189453125,
-0.74365234375,
-0.1002197265625,
-0.59130859375,
0.1632080078125,
-0.3623046875,
0.6630859375,
-0.7451171875,
-1.275390625,
-0.1258544921875,
-0.07342529296875,
0.0216064453125,
-0.50927734375,
0.00566864013671875,
0.072998046875,
-0.1641845703125,
0.61181640625,
-0.3466796875,
0.3779296875,
0.4248046875,
0.11151123046875,
-0.04736328125,
-0.65380859375,
0.379150390625,
-0.126953125,
0.29541015625,
-0.142578125,
-0.60986328125,
-0.318359375,
0.33251953125,
-0.2479248046875,
0.080810546875,
0.2247314453125,
-0.513671875,
0.134765625,
-0.007144927978515625,
-0.5654296875,
-0.40966796875,
-0.39990234375,
0.09149169921875,
-0.05035400390625,
-0.0667724609375,
-0.8154296875,
0.9140625,
-0.2449951171875,
1.1015625,
0.58349609375,
0.5068359375,
-0.58740234375,
-0.40234375,
0.227294921875,
0.1270751953125,
0.2476806640625,
-0.223876953125,
-0.13671875,
0.55322265625,
-0.84814453125,
-0.137939453125,
0.174560546875,
0.421630859375,
0.1080322265625,
0.349853515625,
0.2423095703125,
0.045135498046875,
0.99951171875,
0.94189453125,
-0.5458984375,
1.27734375,
-0.405517578125,
-0.2529296875,
0.537109375,
0.00652313232421875,
-0.231689453125,
-0.143310546875,
-0.305908203125,
-0.46923828125,
0.6904296875,
0.492919921875,
-0.5068359375,
0.798828125,
-0.26416015625,
0.34619140625,
-0.4462890625,
0.1798095703125,
0.74658203125,
-0.035888671875,
0.42822265625,
-0.11419677734375,
-0.1361083984375,
-0.3173828125,
-0.362548828125,
0.974609375,
-0.37255859375,
0.1114501953125,
0.666015625,
-0.232177734375,
0.03564453125,
0.048095703125,
-0.179443359375,
0.841796875,
-0.1527099609375,
0.462646484375,
0.626953125,
-0.3515625,
0.84423828125,
0.2362060546875,
-0.054473876953125,
1.421875,
0.240966796875,
-0.11376953125,
0.50634765625,
0.340087890625,
-0.6064453125,
0.2227783203125,
-1.154296875,
0.7001953125,
0.2059326171875,
0.1492919921875,
-0.1531982421875,
0.0180511474609375,
-0.34765625,
0.5908203125,
0.2376708984375,
0.057373046875,
-0.34765625,
0.302490234375,
-0.284423828125,
0.86328125,
-0.327880859375,
0.55908203125,
-0.376220703125,
-0.40087890625,
-0.12469482421875,
-0.11688232421875,
0.36181640625,
-0.11590576171875,
-0.1953125,
0.8427734375,
0.8046875,
0.90087890625,
0.611328125,
-0.259765625,
0.29736328125,
0.1343994140625,
-0.425048828125,
0.39892578125,
0.38671875,
0.73681640625,
0.331298828125,
0.360595703125,
0.285400390625,
-0.308837890625,
-0.77783203125,
-0.509765625,
0.5322265625,
0.68505859375,
-0.467041015625,
0.77783203125,
0.2469482421875,
-0.0144805908203125,
-0.8466796875,
0.083740234375,
-0.258544921875,
-1.109375,
-0.411376953125,
0.681640625,
-0.1767578125,
0.349853515625,
-0.9951171875,
-0.347412109375,
0.69287109375,
1.1826171875,
-0.255615234375,
0.0175018310546875,
0.54736328125,
-0.00576019287109375,
-0.287353515625,
0.33740234375,
-0.09454345703125,
-0.09661865234375,
-0.486328125,
0.50146484375,
-0.08599853515625,
0.06024169921875,
0.100830078125,
0.7099609375,
0.2435302734375,
0.55615234375,
-0.40771484375,
-0.6123046875,
0.1788330078125,
1.4365234375,
0.11383056640625,
0.47802734375,
0.55322265625,
1.1552734375,
0.72607421875,
0.65234375,
0.466796875,
0.1558837890625,
0.78076171875,
1.2138671875,
-0.1312255859375,
0.2685546875,
-0.11285400390625,
0.515625,
0.494873046875,
0.58935546875,
0.26416015625,
0.3408203125,
-0.1505126953125,
-0.0928955078125,
-0.72509765625,
0.30029296875,
-0.33544921875,
0.50927734375,
0.1668701171875,
0.748046875,
-0.4912109375,
-0.315673828125,
0.1829833984375,
0.64794921875,
-1.2373046875,
-0.250732421875,
0.21875,
-0.052642822265625,
0.282470703125,
0.10406494140625,
0.498046875,
0.0682373046875,
0.70166015625,
0.238525390625,
-0.17236328125,
-0.72314453125,
-0.77294921875,
-1.01953125,
-0.966796875,
-0.51123046875,
-0.8369140625,
-0.08062744140625,
-0.16796875,
-0.8544921875,
0.372802734375,
-0.41943359375,
-0.270263671875,
0.42431640625,
-0.583984375,
0.51611328125,
-0.39306640625,
0.5361328125,
-0.35986328125,
0.29833984375,
0.1826171875,
1.1572265625,
-0.6103515625,
-0.2169189453125,
-0.54736328125,
-0.400146484375,
0.1553955078125,
0.1761474609375,
0.435302734375,
-0.1583251953125,
-0.623046875,
-0.8984375,
-0.2435302734375,
-0.32373046875,
-0.533203125,
0.060394287109375,
-0.67431640625,
0.77001953125,
0.55322265625,
-0.77490234375,
0.57373046875,
1.1982421875,
-0.82470703125,
0.55322265625,
0.264404296875,
0.0772705078125,
-0.71484375,
1.267578125,
0.46337890625,
0.53076171875,
-0.65869140625,
-0.79541015625,
-0.336181640625,
0.1314697265625,
0.264892578125,
-0.4501953125,
-0.485595703125,
0.443115234375,
-0.2213134765625,
-0.94580078125,
0.9306640625,
-1.4052734375,
-0.36669921875,
-0.5703125,
-0.396240234375,
0.54052734375,
0.75927734375,
0.19580078125,
-0.0738525390625,
-0.4619140625,
-0.26416015625,
0.60302734375,
0.2454833984375,
-0.9638671875,
-0.27685546875,
0.544921875,
-0.2069091796875,
0.00664520263671875,
0.057037353515625,
-0.51611328125,
0.00010913610458374023,
-0.2138671875,
0.109130859375,
1.212890625,
0.1455078125,
0.67236328125,
0.437744140625,
0.869140625,
-0.8134765625,
-0.261962890625,
-0.0088348388671875,
1.0478515625,
0.5771484375,
0.52490234375,
0.546875,
-0.1407470703125,
-0.78173828125,
-0.80615234375,
0.0867919921875,
0.040771484375,
0.486083984375,
-0.52783203125,
0.49658203125,
-0.074462890625,
-0.681640625,
0.6328125,
-0.65478515625,
0.1436767578125,
1.2802734375,
-0.274658203125,
0.68212890625,
-0.58740234375,
0.34814453125,
0.06756591796875,
0.044952392578125,
0.50830078125,
0.46044921875,
0.72265625,
-0.378662109375,
-0.6943359375,
-0.60546875,
-0.1134033203125,
0.0231475830078125,
-0.716796875,
-0.004276275634765625,
-0.22607421875,
-0.16943359375,
-0.705078125,
0.45654296875,
0.66259765625,
0.54931640625,
0.3603515625,
0.421630859375,
-0.0266265869140625,
0.181884765625,
0.69775390625,
-0.53125,
-0.08404541015625,
-0.439208984375,
0.77783203125,
0.273681640625,
-0.26611328125,
-0.284423828125,
-0.58984375,
-0.0011415481567382812,
0.443115234375,
0.3974609375,
-0.146484375,
-1.1552734375,
0.349365234375,
-0.046051025390625,
0.7822265625,
-0.7900390625,
0.1090087890625,
-0.48876953125,
0.57421875,
0.222412109375,
-1.0234375,
0.1221923828125,
-1.134765625,
0.669921875,
0.55517578125,
-0.09619140625,
-0.74755859375,
-0.09814453125,
-0.80908203125,
-0.79150390625,
0.358154296875,
0.9755859375,
-0.06494140625,
0.0255279541015625,
-1.3271484375,
0.283935546875,
0.384521484375,
-0.6083984375,
0.089111328125,
-0.077880859375,
0.361083984375,
0.0130157470703125,
0.6962890625,
-0.398193359375,
-0.51708984375,
-0.0265655517578125,
-1.03515625,
0.81787109375,
-0.560546875,
0.5869140625,
0.08062744140625,
-0.153076171875,
0.180908203125,
0.66015625,
-0.006847381591796875,
0.07879638671875,
-0.1845703125,
0.05718994140625,
-1.1826171875,
-1.197265625,
0.5576171875,
-0.09722900390625,
-0.474365234375,
0.849609375,
-0.1702880859375,
-0.304931640625,
0.0036258697509765625,
0.57568359375,
-0.42626953125,
0.2890625,
-0.478515625,
0.51708984375,
-0.59130859375,
-0.87109375,
-0.269287109375,
-0.568359375,
0.9541015625,
0.1558837890625,
-0.845703125,
-0.267333984375,
-0.8486328125,
-0.43115234375,
-0.027099609375,
-0.59423828125,
0.1978759765625,
0.08392333984375,
-0.32470703125,
-0.272216796875,
-0.361083984375,
-0.1312255859375,
-0.30908203125,
-0.43359375,
-0.218994140625,
0.331298828125,
0.408935546875,
1.0078125,
0.135009765625,
-0.420166015625,
0.0195465087890625,
-0.1422119140625,
-0.03948974609375,
-0.382080078125,
-0.39599609375,
-0.0227203369140625,
-0.304931640625,
-0.62841796875,
0.457763671875,
-0.007122039794921875,
0.66943359375,
0.60107421875,
0.0124359130859375,
0.38330078125,
0.26171875,
-0.865234375,
1.1845703125,
-0.037841796875,
-1.2998046875,
-0.6669921875,
0.154296875,
0.54736328125,
0.56005859375,
0.165771484375,
-0.86474609375,
-0.60205078125,
-1.0615234375,
0.52978515625,
-0.65869140625,
-0.09246826171875,
-0.97412109375,
-0.59033203125,
-0.57373046875,
0.76953125,
-0.270263671875,
-0.7490234375,
0.1810302734375,
-1.1953125,
0.251953125,
-0.89501953125,
-0.236572265625,
-0.452880859375,
-0.498779296875,
-0.45068359375,
1.32421875,
0.377685546875,
0.392333984375,
-0.1763916015625,
-0.056732177734375,
0.43212890625,
-0.1346435546875,
-0.73046875,
-0.364501953125,
-0.07635498046875,
-0.250244140625,
-0.3603515625,
-0.25439453125,
-0.7880859375,
0.8701171875,
-0.72412109375,
0.466796875,
-0.199462890625,
-0.262451171875,
0.175048828125,
-0.54638671875,
1.2021484375,
-0.568359375,
0.1119384765625,
-0.35009765625,
0.587890625,
0.59228515625,
-0.1717529296875,
-0.004993438720703125,
-0.2474365234375,
-0.60400390625,
-1.3515625,
0.454345703125,
-0.412109375,
0.1583251953125,
-0.7080078125,
0.0966796875,
1.34375,
-0.81787109375,
0.43505859375,
0.98291015625,
0.276123046875,
0.08953857421875,
-0.7119140625,
0.59228515625,
0.6533203125,
-0.5126953125,
0.1790771484375,
0.14453125,
-0.97802734375,
-0.059417724609375,
-0.342041015625,
-0.8818359375,
-0.888671875,
0.34521484375,
1.4033203125,
-0.4521484375,
0.794921875,
-0.2423095703125,
-1.0849609375,
-0.457275390625,
0.6357421875,
0.312744140625,
0.630859375,
1.24609375,
-0.031646728515625,
-0.1578369140625,
0.50341796875,
-0.2266845703125,
-0.265380859375,
-0.38916015625,
1.384765625,
-0.5625,
-0.322509765625,
0.9111328125,
0.88330078125,
-1.423828125,
-0.873046875,
0.053009033203125,
0.364501953125,
-0.267578125,
-0.9326171875,
0.1094970703125,
0.272705078125,
-0.76171875,
0.06378173828125,
0.4423828125,
-0.24658203125,
0.360107421875,
-0.0304107666015625,
0.6572265625,
-0.492919921875,
0.43701171875,
0.462158203125,
-0.363037109375,
-0.515625,
-0.87060546875,
-0.364990234375,
-0.07293701171875,
-0.0257110595703125,
0.95166015625,
-0.377685546875,
0.23583984375,
0.4990234375,
-0.2203369140625,
0.3232421875,
-0.437255859375,
0.10968017578125,
0.1761474609375,
-0.34912109375,
-0.7509765625,
-0.1375732421875,
0.1273193359375,
0.07244873046875,
0.62451171875,
-0.51611328125,
0.1572265625,
0.06829833984375,
0.158935546875,
-0.41064453125,
-0.42724609375,
-0.376220703125,
-1.2001953125,
-0.64404296875,
-0.69189453125,
-0.83349609375,
-0.37744140625,
0.57763671875,
0.0244598388671875,
-0.54345703125,
0.00470733642578125,
0.440185546875,
-0.64892578125,
0.8642578125,
-0.5419921875,
0.324951171875,
-0.45849609375,
-0.52685546875,
-0.6923828125,
0.1029052734375,
-0.4072265625,
-0.407958984375,
-0.044403076171875,
0.63818359375,
-0.23193359375,
0.3642578125,
-0.1082763671875,
0.479248046875,
-0.1630859375,
-0.81103515625,
-0.1524658203125,
0.02630615234375,
-0.31591796875,
1.1142578125,
0.91015625,
0.38330078125,
0.135986328125,
-0.5322265625,
-0.43310546875,
-0.12744140625,
0.6298828125,
0.849609375,
-0.0037593841552734375,
-0.2646484375,
-0.128662109375,
0.220947265625,
-1.0224609375,
0.321533203125,
-0.1329345703125,
0.09722900390625,
0.2244873046875,
-0.321044921875,
0.08685302734375,
1.0166015625,
-0.49169921875,
0.305908203125,
0.1884765625,
0.2298583984375,
0.16015625,
0.076416015625,
0.2310791015625,
0.34130859375,
0.018402099609375,
-0.3515625,
-0.056640625,
0.49072265625,
-0.003810882568359375,
0.410400390625,
-0.2293701171875,
-1.0380859375,
-0.81787109375,
-0.32568359375,
-0.2529296875,
0.263916015625,
0.2286376953125,
-0.440185546875,
-0.133544921875,
0.103271484375,
-0.393798828125,
-0.14794921875,
-1.1484375,
-1.2119140625,
0.73828125,
-0.2474365234375,
-0.94482421875,
-0.2568359375,
-0.394775390625,
0.034820556640625,
-0.06915283203125,
0.484375,
-0.235107421875,
0.474853515625,
-0.03582763671875,
0.5283203125,
-0.1846923828125,
0.12359619140625,
0.2005615234375,
0.8271484375,
-0.83251953125,
-0.62939453125,
0.320068359375,
1.033203125,
0.058441162109375,
-0.388427734375,
-0.357666015625,
0.32666015625,
-0.04998779296875,
0.03118896484375,
-0.225830078125,
0.12274169921875,
-0.08221435546875,
0.495361328125,
-0.79638671875,
-0.228759765625,
-0.1715087890625,
0.50146484375,
-0.042724609375,
-0.546875,
-0.7978515625,
0.89599609375,
0.703125,
-0.30126953125,
0.662109375,
0.061431884765625,
0.30810546875,
-0.1671142578125,
-0.07672119140625,
-0.247802734375,
0.6123046875,
0.50390625,
0.59521484375,
-0.53271484375,
0.316162109375,
0.69140625,
0.5205078125,
-0.04290771484375,
0.369140625,
-0.1446533203125,
0.065673828125,
0.0228424072265625,
-0.5166015625,
-0.498779296875,
0.076416015625,
-0.94775390625,
0.483154296875,
-0.6640625,
0.11285400390625,
-0.473876953125,
-0.744140625,
0.771484375,
-0.239013671875,
-0.0703125,
0.304931640625,
-0.58447265625,
0.27734375,
0.837890625,
-0.1552734375,
-0.36767578125,
0.61474609375,
0.93212890625,
0.7626953125,
0.79150390625,
0.30419921875,
0.4658203125,
-0.7216796875,
0.1561279296875,
0.14599609375,
-0.058502197265625,
-0.364990234375,
-0.80322265625,
-0.90380859375,
0.3466796875,
-0.303955078125,
-0.1839599609375,
0.336669921875,
-0.751953125,
0.205322265625,
0.0226898193359375,
0.77294921875,
-0.320556640625,
0.1629638671875,
0.302978515625,
-0.256591796875,
-0.90966796875,
1.0595703125,
-0.2156982421875,
0.422607421875,
-0.035797119140625,
1.025390625,
0.1546630859375,
1.4306640625,
0.52099609375,
-0.50634765625,
0.129150390625,
0.57958984375,
-0.3759765625,
-0.79443359375,
-0.59814453125,
-0.3662109375,
-0.2117919921875,
-0.80419921875,
-0.2332763671875,
-0.0401611328125,
0.98974609375,
-0.1556396484375,
-0.99609375,
-0.24560546875,
0.162109375,
-1.0830078125,
0.5625,
0.11553955078125,
0.0584716796875,
0.30908203125,
0.047027587890625,
-0.152587890625,
-1.0654296875,
0.223388671875,
-0.78173828125,
0.306884765625,
-0.93603515625,
-0.0892333984375,
-0.8310546875,
-0.7587890625,
0.134033203125,
-0.3818359375,
-0.328369140625,
-0.796875,
0.4453125,
0.8154296875,
0.479736328125,
-0.072509765625,
-0.31005859375,
0.1788330078125,
1.2255859375,
0.74658203125,
0.0579833984375,
0.83984375,
0.187744140625,
-0.334716796875,
-0.1102294921875,
-0.069091796875,
0.59619140625,
-0.39990234375,
0.02105712890625,
-0.4091796875,
0.19873046875,
-1.044921875,
-1.3916015625,
0.29345703125,
0.85693359375,
0.1903076171875,
-0.287353515625,
-1.10546875,
-0.44482421875,
-0.37451171875,
0.0736083984375,
-0.8115234375,
0.72802734375,
-0.1051025390625,
-0.048583984375,
-0.55078125,
-0.982421875,
4.2109375,
0.81982421875,
1.0029296875,
0.0640869140625,
0.3828125,
0.66015625,
0.29296875,
-0.412109375,
-0.046295166015625,
-0.391357421875,
0.59912109375,
-0.397705078125,
0.012451171875,
0.6201171875,
0.376708984375,
0.6494140625,
-0.44384765625,
-0.00917816162109375,
0.2220458984375,
-0.736328125,
-0.92919921875,
0.320068359375,
0.017486572265625,
0.449951171875,
-0.1529541015625,
0.431640625,
0.638671875,
-0.64111328125,
-0.261962890625,
-0.6884765625,
0.410400390625,
-0.2093505859375,
0.93359375,
0.337890625,
0.313720703125,
0.345703125,
0.020782470703125,
-0.0751953125,
-0.364990234375,
0.299560546875,
-0.08807373046875,
-0.00998687744140625,
0.77197265625,
-0.595703125,
-0.0753173828125,
0.84033203125,
-0.62109375,
0.56298828125,
0.50390625,
-0.9482421875,
0.8662109375,
-0.401123046875,
0.53759765625,
-0.828125,
-0.420654296875,
0.06524658203125,
0.17041015625,
0.0479736328125,
-0.1981201171875,
-0.0057830810546875,
0.34521484375,
0.75390625,
0.009307861328125,
0.900390625,
-1.1025390625,
0.1943359375,
0.181640625,
0.295166015625,
-0.5634765625,
0.07403564453125,
-0.4169921875,
-0.45458984375,
-0.292724609375,
-0.54833984375,
0.335205078125,
0.681640625,
-0.238525390625,
0.642578125,
0.85400390625,
-0.52099609375,
0.167236328125,
-0.2242431640625,
-0.215087890625,
-0.8779296875,
0.677734375,
1.3955078125,
-0.72900390625,
-0.155029296875,
-0.2435302734375,
0.51708984375,
0.58837890625,
0.990234375,
0.0858154296875,
-0.689453125,
-0.24853515625
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
You are given a string s of length n consisting only of lowercase Latin letters.
A substring of a string is a contiguous subsequence of that string. So, string "forces" is substring of string "codeforces", but string "coder" is not.
Your task is to calculate the number of ways to remove exactly one substring from this string in such a way that all remaining characters are equal (the number of distinct characters either zero or one).
It is guaranteed that there is at least two different characters in s.
Note that you can remove the whole string and it is correct. Also note that you should remove at least one character.
Since the answer can be rather large (not very large though) print it modulo 998244353.
If you are Python programmer, consider using PyPy instead of Python when you submit your code.
Input
The first line of the input contains one integer n (2 ≤ n ≤ 2 ⋅ 10^5) — the length of the string s.
The second line of the input contains the string s of length n consisting only of lowercase Latin letters.
It is guaranteed that there is at least two different characters in s.
Output
Print one integer — the number of ways modulo 998244353 to remove exactly one substring from s in such way that all remaining characters are equal.
Examples
Input
4
abaa
Output
6
Input
7
aacdeee
Output
6
Input
2
az
Output
3
Note
Let s[l; r] be the substring of s from the position l to the position r inclusive.
Then in the first example you can remove the following substrings:
* s[1; 2];
* s[1; 3];
* s[1; 4];
* s[2; 2];
* s[2; 3];
* s[2; 4].
In the second example you can remove the following substrings:
* s[1; 4];
* s[1; 5];
* s[1; 6];
* s[1; 7];
* s[2; 7];
* s[3; 7].
In the third example you can remove the following substrings:
* s[1; 1];
* s[1; 2];
* s[2; 2].
Submitted Solution:
```
n = int(input())
s = input()
fs = s[0]
indf = 0
for i in range(n):
if s[i] != fs:
break
indf += 1
ls = s[-1]
indl = 0
for i in range(-1, -n, -1):
if s[i] != ls:
break
indl += 1
mas = []
for i in range(n):
if s[i] not in mas:
mas.append(s[i])
if s == s[0] * n:
ans = (n * (n + 1) // 2)
elif s[0] == s[-1]:
ans = ((indf + 1) * (indl + 1))
else:
ans = (indf + indl + 1)
print(ans % 998244353)
```
Yes
| 10,840 | [
0.21484375,
0.270263671875,
0.139892578125,
0.261474609375,
-0.55615234375,
-0.3779296875,
-0.1878662109375,
-0.2113037109375,
0.0882568359375,
0.8232421875,
0.68994140625,
-0.281005859375,
-0.046600341796875,
-1.00390625,
-0.36376953125,
0.2296142578125,
-0.50390625,
-0.70703125,
-0.1749267578125,
-0.0626220703125,
0.11700439453125,
-0.251220703125,
-1.0458984375,
-0.324951171875,
-0.4599609375,
1.1025390625,
0.5908203125,
0.007389068603515625,
1.14453125,
1.1064453125,
-0.4638671875,
-0.775390625,
0.4931640625,
-1.03515625,
-0.2413330078125,
-0.81787109375,
0.9189453125,
-0.74365234375,
-0.1002197265625,
-0.59130859375,
0.1632080078125,
-0.3623046875,
0.6630859375,
-0.7451171875,
-1.275390625,
-0.1258544921875,
-0.07342529296875,
0.0216064453125,
-0.50927734375,
0.00566864013671875,
0.072998046875,
-0.1641845703125,
0.61181640625,
-0.3466796875,
0.3779296875,
0.4248046875,
0.11151123046875,
-0.04736328125,
-0.65380859375,
0.379150390625,
-0.126953125,
0.29541015625,
-0.142578125,
-0.60986328125,
-0.318359375,
0.33251953125,
-0.2479248046875,
0.080810546875,
0.2247314453125,
-0.513671875,
0.134765625,
-0.007144927978515625,
-0.5654296875,
-0.40966796875,
-0.39990234375,
0.09149169921875,
-0.05035400390625,
-0.0667724609375,
-0.8154296875,
0.9140625,
-0.2449951171875,
1.1015625,
0.58349609375,
0.5068359375,
-0.58740234375,
-0.40234375,
0.227294921875,
0.1270751953125,
0.2476806640625,
-0.223876953125,
-0.13671875,
0.55322265625,
-0.84814453125,
-0.137939453125,
0.174560546875,
0.421630859375,
0.1080322265625,
0.349853515625,
0.2423095703125,
0.045135498046875,
0.99951171875,
0.94189453125,
-0.5458984375,
1.27734375,
-0.405517578125,
-0.2529296875,
0.537109375,
0.00652313232421875,
-0.231689453125,
-0.143310546875,
-0.305908203125,
-0.46923828125,
0.6904296875,
0.492919921875,
-0.5068359375,
0.798828125,
-0.26416015625,
0.34619140625,
-0.4462890625,
0.1798095703125,
0.74658203125,
-0.035888671875,
0.42822265625,
-0.11419677734375,
-0.1361083984375,
-0.3173828125,
-0.362548828125,
0.974609375,
-0.37255859375,
0.1114501953125,
0.666015625,
-0.232177734375,
0.03564453125,
0.048095703125,
-0.179443359375,
0.841796875,
-0.1527099609375,
0.462646484375,
0.626953125,
-0.3515625,
0.84423828125,
0.2362060546875,
-0.054473876953125,
1.421875,
0.240966796875,
-0.11376953125,
0.50634765625,
0.340087890625,
-0.6064453125,
0.2227783203125,
-1.154296875,
0.7001953125,
0.2059326171875,
0.1492919921875,
-0.1531982421875,
0.0180511474609375,
-0.34765625,
0.5908203125,
0.2376708984375,
0.057373046875,
-0.34765625,
0.302490234375,
-0.284423828125,
0.86328125,
-0.327880859375,
0.55908203125,
-0.376220703125,
-0.40087890625,
-0.12469482421875,
-0.11688232421875,
0.36181640625,
-0.11590576171875,
-0.1953125,
0.8427734375,
0.8046875,
0.90087890625,
0.611328125,
-0.259765625,
0.29736328125,
0.1343994140625,
-0.425048828125,
0.39892578125,
0.38671875,
0.73681640625,
0.331298828125,
0.360595703125,
0.285400390625,
-0.308837890625,
-0.77783203125,
-0.509765625,
0.5322265625,
0.68505859375,
-0.467041015625,
0.77783203125,
0.2469482421875,
-0.0144805908203125,
-0.8466796875,
0.083740234375,
-0.258544921875,
-1.109375,
-0.411376953125,
0.681640625,
-0.1767578125,
0.349853515625,
-0.9951171875,
-0.347412109375,
0.69287109375,
1.1826171875,
-0.255615234375,
0.0175018310546875,
0.54736328125,
-0.00576019287109375,
-0.287353515625,
0.33740234375,
-0.09454345703125,
-0.09661865234375,
-0.486328125,
0.50146484375,
-0.08599853515625,
0.06024169921875,
0.100830078125,
0.7099609375,
0.2435302734375,
0.55615234375,
-0.40771484375,
-0.6123046875,
0.1788330078125,
1.4365234375,
0.11383056640625,
0.47802734375,
0.55322265625,
1.1552734375,
0.72607421875,
0.65234375,
0.466796875,
0.1558837890625,
0.78076171875,
1.2138671875,
-0.1312255859375,
0.2685546875,
-0.11285400390625,
0.515625,
0.494873046875,
0.58935546875,
0.26416015625,
0.3408203125,
-0.1505126953125,
-0.0928955078125,
-0.72509765625,
0.30029296875,
-0.33544921875,
0.50927734375,
0.1668701171875,
0.748046875,
-0.4912109375,
-0.315673828125,
0.1829833984375,
0.64794921875,
-1.2373046875,
-0.250732421875,
0.21875,
-0.052642822265625,
0.282470703125,
0.10406494140625,
0.498046875,
0.0682373046875,
0.70166015625,
0.238525390625,
-0.17236328125,
-0.72314453125,
-0.77294921875,
-1.01953125,
-0.966796875,
-0.51123046875,
-0.8369140625,
-0.08062744140625,
-0.16796875,
-0.8544921875,
0.372802734375,
-0.41943359375,
-0.270263671875,
0.42431640625,
-0.583984375,
0.51611328125,
-0.39306640625,
0.5361328125,
-0.35986328125,
0.29833984375,
0.1826171875,
1.1572265625,
-0.6103515625,
-0.2169189453125,
-0.54736328125,
-0.400146484375,
0.1553955078125,
0.1761474609375,
0.435302734375,
-0.1583251953125,
-0.623046875,
-0.8984375,
-0.2435302734375,
-0.32373046875,
-0.533203125,
0.060394287109375,
-0.67431640625,
0.77001953125,
0.55322265625,
-0.77490234375,
0.57373046875,
1.1982421875,
-0.82470703125,
0.55322265625,
0.264404296875,
0.0772705078125,
-0.71484375,
1.267578125,
0.46337890625,
0.53076171875,
-0.65869140625,
-0.79541015625,
-0.336181640625,
0.1314697265625,
0.264892578125,
-0.4501953125,
-0.485595703125,
0.443115234375,
-0.2213134765625,
-0.94580078125,
0.9306640625,
-1.4052734375,
-0.36669921875,
-0.5703125,
-0.396240234375,
0.54052734375,
0.75927734375,
0.19580078125,
-0.0738525390625,
-0.4619140625,
-0.26416015625,
0.60302734375,
0.2454833984375,
-0.9638671875,
-0.27685546875,
0.544921875,
-0.2069091796875,
0.00664520263671875,
0.057037353515625,
-0.51611328125,
0.00010913610458374023,
-0.2138671875,
0.109130859375,
1.212890625,
0.1455078125,
0.67236328125,
0.437744140625,
0.869140625,
-0.8134765625,
-0.261962890625,
-0.0088348388671875,
1.0478515625,
0.5771484375,
0.52490234375,
0.546875,
-0.1407470703125,
-0.78173828125,
-0.80615234375,
0.0867919921875,
0.040771484375,
0.486083984375,
-0.52783203125,
0.49658203125,
-0.074462890625,
-0.681640625,
0.6328125,
-0.65478515625,
0.1436767578125,
1.2802734375,
-0.274658203125,
0.68212890625,
-0.58740234375,
0.34814453125,
0.06756591796875,
0.044952392578125,
0.50830078125,
0.46044921875,
0.72265625,
-0.378662109375,
-0.6943359375,
-0.60546875,
-0.1134033203125,
0.0231475830078125,
-0.716796875,
-0.004276275634765625,
-0.22607421875,
-0.16943359375,
-0.705078125,
0.45654296875,
0.66259765625,
0.54931640625,
0.3603515625,
0.421630859375,
-0.0266265869140625,
0.181884765625,
0.69775390625,
-0.53125,
-0.08404541015625,
-0.439208984375,
0.77783203125,
0.273681640625,
-0.26611328125,
-0.284423828125,
-0.58984375,
-0.0011415481567382812,
0.443115234375,
0.3974609375,
-0.146484375,
-1.1552734375,
0.349365234375,
-0.046051025390625,
0.7822265625,
-0.7900390625,
0.1090087890625,
-0.48876953125,
0.57421875,
0.222412109375,
-1.0234375,
0.1221923828125,
-1.134765625,
0.669921875,
0.55517578125,
-0.09619140625,
-0.74755859375,
-0.09814453125,
-0.80908203125,
-0.79150390625,
0.358154296875,
0.9755859375,
-0.06494140625,
0.0255279541015625,
-1.3271484375,
0.283935546875,
0.384521484375,
-0.6083984375,
0.089111328125,
-0.077880859375,
0.361083984375,
0.0130157470703125,
0.6962890625,
-0.398193359375,
-0.51708984375,
-0.0265655517578125,
-1.03515625,
0.81787109375,
-0.560546875,
0.5869140625,
0.08062744140625,
-0.153076171875,
0.180908203125,
0.66015625,
-0.006847381591796875,
0.07879638671875,
-0.1845703125,
0.05718994140625,
-1.1826171875,
-1.197265625,
0.5576171875,
-0.09722900390625,
-0.474365234375,
0.849609375,
-0.1702880859375,
-0.304931640625,
0.0036258697509765625,
0.57568359375,
-0.42626953125,
0.2890625,
-0.478515625,
0.51708984375,
-0.59130859375,
-0.87109375,
-0.269287109375,
-0.568359375,
0.9541015625,
0.1558837890625,
-0.845703125,
-0.267333984375,
-0.8486328125,
-0.43115234375,
-0.027099609375,
-0.59423828125,
0.1978759765625,
0.08392333984375,
-0.32470703125,
-0.272216796875,
-0.361083984375,
-0.1312255859375,
-0.30908203125,
-0.43359375,
-0.218994140625,
0.331298828125,
0.408935546875,
1.0078125,
0.135009765625,
-0.420166015625,
0.0195465087890625,
-0.1422119140625,
-0.03948974609375,
-0.382080078125,
-0.39599609375,
-0.0227203369140625,
-0.304931640625,
-0.62841796875,
0.457763671875,
-0.007122039794921875,
0.66943359375,
0.60107421875,
0.0124359130859375,
0.38330078125,
0.26171875,
-0.865234375,
1.1845703125,
-0.037841796875,
-1.2998046875,
-0.6669921875,
0.154296875,
0.54736328125,
0.56005859375,
0.165771484375,
-0.86474609375,
-0.60205078125,
-1.0615234375,
0.52978515625,
-0.65869140625,
-0.09246826171875,
-0.97412109375,
-0.59033203125,
-0.57373046875,
0.76953125,
-0.270263671875,
-0.7490234375,
0.1810302734375,
-1.1953125,
0.251953125,
-0.89501953125,
-0.236572265625,
-0.452880859375,
-0.498779296875,
-0.45068359375,
1.32421875,
0.377685546875,
0.392333984375,
-0.1763916015625,
-0.056732177734375,
0.43212890625,
-0.1346435546875,
-0.73046875,
-0.364501953125,
-0.07635498046875,
-0.250244140625,
-0.3603515625,
-0.25439453125,
-0.7880859375,
0.8701171875,
-0.72412109375,
0.466796875,
-0.199462890625,
-0.262451171875,
0.175048828125,
-0.54638671875,
1.2021484375,
-0.568359375,
0.1119384765625,
-0.35009765625,
0.587890625,
0.59228515625,
-0.1717529296875,
-0.004993438720703125,
-0.2474365234375,
-0.60400390625,
-1.3515625,
0.454345703125,
-0.412109375,
0.1583251953125,
-0.7080078125,
0.0966796875,
1.34375,
-0.81787109375,
0.43505859375,
0.98291015625,
0.276123046875,
0.08953857421875,
-0.7119140625,
0.59228515625,
0.6533203125,
-0.5126953125,
0.1790771484375,
0.14453125,
-0.97802734375,
-0.059417724609375,
-0.342041015625,
-0.8818359375,
-0.888671875,
0.34521484375,
1.4033203125,
-0.4521484375,
0.794921875,
-0.2423095703125,
-1.0849609375,
-0.457275390625,
0.6357421875,
0.312744140625,
0.630859375,
1.24609375,
-0.031646728515625,
-0.1578369140625,
0.50341796875,
-0.2266845703125,
-0.265380859375,
-0.38916015625,
1.384765625,
-0.5625,
-0.322509765625,
0.9111328125,
0.88330078125,
-1.423828125,
-0.873046875,
0.053009033203125,
0.364501953125,
-0.267578125,
-0.9326171875,
0.1094970703125,
0.272705078125,
-0.76171875,
0.06378173828125,
0.4423828125,
-0.24658203125,
0.360107421875,
-0.0304107666015625,
0.6572265625,
-0.492919921875,
0.43701171875,
0.462158203125,
-0.363037109375,
-0.515625,
-0.87060546875,
-0.364990234375,
-0.07293701171875,
-0.0257110595703125,
0.95166015625,
-0.377685546875,
0.23583984375,
0.4990234375,
-0.2203369140625,
0.3232421875,
-0.437255859375,
0.10968017578125,
0.1761474609375,
-0.34912109375,
-0.7509765625,
-0.1375732421875,
0.1273193359375,
0.07244873046875,
0.62451171875,
-0.51611328125,
0.1572265625,
0.06829833984375,
0.158935546875,
-0.41064453125,
-0.42724609375,
-0.376220703125,
-1.2001953125,
-0.64404296875,
-0.69189453125,
-0.83349609375,
-0.37744140625,
0.57763671875,
0.0244598388671875,
-0.54345703125,
0.00470733642578125,
0.440185546875,
-0.64892578125,
0.8642578125,
-0.5419921875,
0.324951171875,
-0.45849609375,
-0.52685546875,
-0.6923828125,
0.1029052734375,
-0.4072265625,
-0.407958984375,
-0.044403076171875,
0.63818359375,
-0.23193359375,
0.3642578125,
-0.1082763671875,
0.479248046875,
-0.1630859375,
-0.81103515625,
-0.1524658203125,
0.02630615234375,
-0.31591796875,
1.1142578125,
0.91015625,
0.38330078125,
0.135986328125,
-0.5322265625,
-0.43310546875,
-0.12744140625,
0.6298828125,
0.849609375,
-0.0037593841552734375,
-0.2646484375,
-0.128662109375,
0.220947265625,
-1.0224609375,
0.321533203125,
-0.1329345703125,
0.09722900390625,
0.2244873046875,
-0.321044921875,
0.08685302734375,
1.0166015625,
-0.49169921875,
0.305908203125,
0.1884765625,
0.2298583984375,
0.16015625,
0.076416015625,
0.2310791015625,
0.34130859375,
0.018402099609375,
-0.3515625,
-0.056640625,
0.49072265625,
-0.003810882568359375,
0.410400390625,
-0.2293701171875,
-1.0380859375,
-0.81787109375,
-0.32568359375,
-0.2529296875,
0.263916015625,
0.2286376953125,
-0.440185546875,
-0.133544921875,
0.103271484375,
-0.393798828125,
-0.14794921875,
-1.1484375,
-1.2119140625,
0.73828125,
-0.2474365234375,
-0.94482421875,
-0.2568359375,
-0.394775390625,
0.034820556640625,
-0.06915283203125,
0.484375,
-0.235107421875,
0.474853515625,
-0.03582763671875,
0.5283203125,
-0.1846923828125,
0.12359619140625,
0.2005615234375,
0.8271484375,
-0.83251953125,
-0.62939453125,
0.320068359375,
1.033203125,
0.058441162109375,
-0.388427734375,
-0.357666015625,
0.32666015625,
-0.04998779296875,
0.03118896484375,
-0.225830078125,
0.12274169921875,
-0.08221435546875,
0.495361328125,
-0.79638671875,
-0.228759765625,
-0.1715087890625,
0.50146484375,
-0.042724609375,
-0.546875,
-0.7978515625,
0.89599609375,
0.703125,
-0.30126953125,
0.662109375,
0.061431884765625,
0.30810546875,
-0.1671142578125,
-0.07672119140625,
-0.247802734375,
0.6123046875,
0.50390625,
0.59521484375,
-0.53271484375,
0.316162109375,
0.69140625,
0.5205078125,
-0.04290771484375,
0.369140625,
-0.1446533203125,
0.065673828125,
0.0228424072265625,
-0.5166015625,
-0.498779296875,
0.076416015625,
-0.94775390625,
0.483154296875,
-0.6640625,
0.11285400390625,
-0.473876953125,
-0.744140625,
0.771484375,
-0.239013671875,
-0.0703125,
0.304931640625,
-0.58447265625,
0.27734375,
0.837890625,
-0.1552734375,
-0.36767578125,
0.61474609375,
0.93212890625,
0.7626953125,
0.79150390625,
0.30419921875,
0.4658203125,
-0.7216796875,
0.1561279296875,
0.14599609375,
-0.058502197265625,
-0.364990234375,
-0.80322265625,
-0.90380859375,
0.3466796875,
-0.303955078125,
-0.1839599609375,
0.336669921875,
-0.751953125,
0.205322265625,
0.0226898193359375,
0.77294921875,
-0.320556640625,
0.1629638671875,
0.302978515625,
-0.256591796875,
-0.90966796875,
1.0595703125,
-0.2156982421875,
0.422607421875,
-0.035797119140625,
1.025390625,
0.1546630859375,
1.4306640625,
0.52099609375,
-0.50634765625,
0.129150390625,
0.57958984375,
-0.3759765625,
-0.79443359375,
-0.59814453125,
-0.3662109375,
-0.2117919921875,
-0.80419921875,
-0.2332763671875,
-0.0401611328125,
0.98974609375,
-0.1556396484375,
-0.99609375,
-0.24560546875,
0.162109375,
-1.0830078125,
0.5625,
0.11553955078125,
0.0584716796875,
0.30908203125,
0.047027587890625,
-0.152587890625,
-1.0654296875,
0.223388671875,
-0.78173828125,
0.306884765625,
-0.93603515625,
-0.0892333984375,
-0.8310546875,
-0.7587890625,
0.134033203125,
-0.3818359375,
-0.328369140625,
-0.796875,
0.4453125,
0.8154296875,
0.479736328125,
-0.072509765625,
-0.31005859375,
0.1788330078125,
1.2255859375,
0.74658203125,
0.0579833984375,
0.83984375,
0.187744140625,
-0.334716796875,
-0.1102294921875,
-0.069091796875,
0.59619140625,
-0.39990234375,
0.02105712890625,
-0.4091796875,
0.19873046875,
-1.044921875,
-1.3916015625,
0.29345703125,
0.85693359375,
0.1903076171875,
-0.287353515625,
-1.10546875,
-0.44482421875,
-0.37451171875,
0.0736083984375,
-0.8115234375,
0.72802734375,
-0.1051025390625,
-0.048583984375,
-0.55078125,
-0.982421875,
4.2109375,
0.81982421875,
1.0029296875,
0.0640869140625,
0.3828125,
0.66015625,
0.29296875,
-0.412109375,
-0.046295166015625,
-0.391357421875,
0.59912109375,
-0.397705078125,
0.012451171875,
0.6201171875,
0.376708984375,
0.6494140625,
-0.44384765625,
-0.00917816162109375,
0.2220458984375,
-0.736328125,
-0.92919921875,
0.320068359375,
0.017486572265625,
0.449951171875,
-0.1529541015625,
0.431640625,
0.638671875,
-0.64111328125,
-0.261962890625,
-0.6884765625,
0.410400390625,
-0.2093505859375,
0.93359375,
0.337890625,
0.313720703125,
0.345703125,
0.020782470703125,
-0.0751953125,
-0.364990234375,
0.299560546875,
-0.08807373046875,
-0.00998687744140625,
0.77197265625,
-0.595703125,
-0.0753173828125,
0.84033203125,
-0.62109375,
0.56298828125,
0.50390625,
-0.9482421875,
0.8662109375,
-0.401123046875,
0.53759765625,
-0.828125,
-0.420654296875,
0.06524658203125,
0.17041015625,
0.0479736328125,
-0.1981201171875,
-0.0057830810546875,
0.34521484375,
0.75390625,
0.009307861328125,
0.900390625,
-1.1025390625,
0.1943359375,
0.181640625,
0.295166015625,
-0.5634765625,
0.07403564453125,
-0.4169921875,
-0.45458984375,
-0.292724609375,
-0.54833984375,
0.335205078125,
0.681640625,
-0.238525390625,
0.642578125,
0.85400390625,
-0.52099609375,
0.167236328125,
-0.2242431640625,
-0.215087890625,
-0.8779296875,
0.677734375,
1.3955078125,
-0.72900390625,
-0.155029296875,
-0.2435302734375,
0.51708984375,
0.58837890625,
0.990234375,
0.0858154296875,
-0.689453125,
-0.24853515625
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
You are given a string s of length n consisting only of lowercase Latin letters.
A substring of a string is a contiguous subsequence of that string. So, string "forces" is substring of string "codeforces", but string "coder" is not.
Your task is to calculate the number of ways to remove exactly one substring from this string in such a way that all remaining characters are equal (the number of distinct characters either zero or one).
It is guaranteed that there is at least two different characters in s.
Note that you can remove the whole string and it is correct. Also note that you should remove at least one character.
Since the answer can be rather large (not very large though) print it modulo 998244353.
If you are Python programmer, consider using PyPy instead of Python when you submit your code.
Input
The first line of the input contains one integer n (2 ≤ n ≤ 2 ⋅ 10^5) — the length of the string s.
The second line of the input contains the string s of length n consisting only of lowercase Latin letters.
It is guaranteed that there is at least two different characters in s.
Output
Print one integer — the number of ways modulo 998244353 to remove exactly one substring from s in such way that all remaining characters are equal.
Examples
Input
4
abaa
Output
6
Input
7
aacdeee
Output
6
Input
2
az
Output
3
Note
Let s[l; r] be the substring of s from the position l to the position r inclusive.
Then in the first example you can remove the following substrings:
* s[1; 2];
* s[1; 3];
* s[1; 4];
* s[2; 2];
* s[2; 3];
* s[2; 4].
In the second example you can remove the following substrings:
* s[1; 4];
* s[1; 5];
* s[1; 6];
* s[1; 7];
* s[2; 7];
* s[3; 7].
In the third example you can remove the following substrings:
* s[1; 1];
* s[1; 2];
* s[2; 2].
Submitted Solution:
```
Mod = 998244353
n = int(input())
string = input()
front = 1
i= 1
while(i<n):
if(string[i]==string[0]):
front+=1
else:
break
i+=1
rear = 1
i = n-2
while(i>=0):
if(string[i]==string[n-1]):
rear+=1
else:
break
i-=1
if(front+rear>n):
n = n%Mod
ans = n*(n+1)%Mod
elif(string[0]!=string[n-1]):
ans = front%Mod +rear%Mod
ans = (ans + 1)%Mod
else:
Mid = n -(front+rear)
front = front%Mod
rear = rear%Mod
ans = (front+rear+1)%Mod
temp = (front*rear)%Mod
ans = (ans+temp)%Mod
print(ans)
```
Yes
| 10,841 | [
0.21484375,
0.270263671875,
0.139892578125,
0.261474609375,
-0.55615234375,
-0.3779296875,
-0.1878662109375,
-0.2113037109375,
0.0882568359375,
0.8232421875,
0.68994140625,
-0.281005859375,
-0.046600341796875,
-1.00390625,
-0.36376953125,
0.2296142578125,
-0.50390625,
-0.70703125,
-0.1749267578125,
-0.0626220703125,
0.11700439453125,
-0.251220703125,
-1.0458984375,
-0.324951171875,
-0.4599609375,
1.1025390625,
0.5908203125,
0.007389068603515625,
1.14453125,
1.1064453125,
-0.4638671875,
-0.775390625,
0.4931640625,
-1.03515625,
-0.2413330078125,
-0.81787109375,
0.9189453125,
-0.74365234375,
-0.1002197265625,
-0.59130859375,
0.1632080078125,
-0.3623046875,
0.6630859375,
-0.7451171875,
-1.275390625,
-0.1258544921875,
-0.07342529296875,
0.0216064453125,
-0.50927734375,
0.00566864013671875,
0.072998046875,
-0.1641845703125,
0.61181640625,
-0.3466796875,
0.3779296875,
0.4248046875,
0.11151123046875,
-0.04736328125,
-0.65380859375,
0.379150390625,
-0.126953125,
0.29541015625,
-0.142578125,
-0.60986328125,
-0.318359375,
0.33251953125,
-0.2479248046875,
0.080810546875,
0.2247314453125,
-0.513671875,
0.134765625,
-0.007144927978515625,
-0.5654296875,
-0.40966796875,
-0.39990234375,
0.09149169921875,
-0.05035400390625,
-0.0667724609375,
-0.8154296875,
0.9140625,
-0.2449951171875,
1.1015625,
0.58349609375,
0.5068359375,
-0.58740234375,
-0.40234375,
0.227294921875,
0.1270751953125,
0.2476806640625,
-0.223876953125,
-0.13671875,
0.55322265625,
-0.84814453125,
-0.137939453125,
0.174560546875,
0.421630859375,
0.1080322265625,
0.349853515625,
0.2423095703125,
0.045135498046875,
0.99951171875,
0.94189453125,
-0.5458984375,
1.27734375,
-0.405517578125,
-0.2529296875,
0.537109375,
0.00652313232421875,
-0.231689453125,
-0.143310546875,
-0.305908203125,
-0.46923828125,
0.6904296875,
0.492919921875,
-0.5068359375,
0.798828125,
-0.26416015625,
0.34619140625,
-0.4462890625,
0.1798095703125,
0.74658203125,
-0.035888671875,
0.42822265625,
-0.11419677734375,
-0.1361083984375,
-0.3173828125,
-0.362548828125,
0.974609375,
-0.37255859375,
0.1114501953125,
0.666015625,
-0.232177734375,
0.03564453125,
0.048095703125,
-0.179443359375,
0.841796875,
-0.1527099609375,
0.462646484375,
0.626953125,
-0.3515625,
0.84423828125,
0.2362060546875,
-0.054473876953125,
1.421875,
0.240966796875,
-0.11376953125,
0.50634765625,
0.340087890625,
-0.6064453125,
0.2227783203125,
-1.154296875,
0.7001953125,
0.2059326171875,
0.1492919921875,
-0.1531982421875,
0.0180511474609375,
-0.34765625,
0.5908203125,
0.2376708984375,
0.057373046875,
-0.34765625,
0.302490234375,
-0.284423828125,
0.86328125,
-0.327880859375,
0.55908203125,
-0.376220703125,
-0.40087890625,
-0.12469482421875,
-0.11688232421875,
0.36181640625,
-0.11590576171875,
-0.1953125,
0.8427734375,
0.8046875,
0.90087890625,
0.611328125,
-0.259765625,
0.29736328125,
0.1343994140625,
-0.425048828125,
0.39892578125,
0.38671875,
0.73681640625,
0.331298828125,
0.360595703125,
0.285400390625,
-0.308837890625,
-0.77783203125,
-0.509765625,
0.5322265625,
0.68505859375,
-0.467041015625,
0.77783203125,
0.2469482421875,
-0.0144805908203125,
-0.8466796875,
0.083740234375,
-0.258544921875,
-1.109375,
-0.411376953125,
0.681640625,
-0.1767578125,
0.349853515625,
-0.9951171875,
-0.347412109375,
0.69287109375,
1.1826171875,
-0.255615234375,
0.0175018310546875,
0.54736328125,
-0.00576019287109375,
-0.287353515625,
0.33740234375,
-0.09454345703125,
-0.09661865234375,
-0.486328125,
0.50146484375,
-0.08599853515625,
0.06024169921875,
0.100830078125,
0.7099609375,
0.2435302734375,
0.55615234375,
-0.40771484375,
-0.6123046875,
0.1788330078125,
1.4365234375,
0.11383056640625,
0.47802734375,
0.55322265625,
1.1552734375,
0.72607421875,
0.65234375,
0.466796875,
0.1558837890625,
0.78076171875,
1.2138671875,
-0.1312255859375,
0.2685546875,
-0.11285400390625,
0.515625,
0.494873046875,
0.58935546875,
0.26416015625,
0.3408203125,
-0.1505126953125,
-0.0928955078125,
-0.72509765625,
0.30029296875,
-0.33544921875,
0.50927734375,
0.1668701171875,
0.748046875,
-0.4912109375,
-0.315673828125,
0.1829833984375,
0.64794921875,
-1.2373046875,
-0.250732421875,
0.21875,
-0.052642822265625,
0.282470703125,
0.10406494140625,
0.498046875,
0.0682373046875,
0.70166015625,
0.238525390625,
-0.17236328125,
-0.72314453125,
-0.77294921875,
-1.01953125,
-0.966796875,
-0.51123046875,
-0.8369140625,
-0.08062744140625,
-0.16796875,
-0.8544921875,
0.372802734375,
-0.41943359375,
-0.270263671875,
0.42431640625,
-0.583984375,
0.51611328125,
-0.39306640625,
0.5361328125,
-0.35986328125,
0.29833984375,
0.1826171875,
1.1572265625,
-0.6103515625,
-0.2169189453125,
-0.54736328125,
-0.400146484375,
0.1553955078125,
0.1761474609375,
0.435302734375,
-0.1583251953125,
-0.623046875,
-0.8984375,
-0.2435302734375,
-0.32373046875,
-0.533203125,
0.060394287109375,
-0.67431640625,
0.77001953125,
0.55322265625,
-0.77490234375,
0.57373046875,
1.1982421875,
-0.82470703125,
0.55322265625,
0.264404296875,
0.0772705078125,
-0.71484375,
1.267578125,
0.46337890625,
0.53076171875,
-0.65869140625,
-0.79541015625,
-0.336181640625,
0.1314697265625,
0.264892578125,
-0.4501953125,
-0.485595703125,
0.443115234375,
-0.2213134765625,
-0.94580078125,
0.9306640625,
-1.4052734375,
-0.36669921875,
-0.5703125,
-0.396240234375,
0.54052734375,
0.75927734375,
0.19580078125,
-0.0738525390625,
-0.4619140625,
-0.26416015625,
0.60302734375,
0.2454833984375,
-0.9638671875,
-0.27685546875,
0.544921875,
-0.2069091796875,
0.00664520263671875,
0.057037353515625,
-0.51611328125,
0.00010913610458374023,
-0.2138671875,
0.109130859375,
1.212890625,
0.1455078125,
0.67236328125,
0.437744140625,
0.869140625,
-0.8134765625,
-0.261962890625,
-0.0088348388671875,
1.0478515625,
0.5771484375,
0.52490234375,
0.546875,
-0.1407470703125,
-0.78173828125,
-0.80615234375,
0.0867919921875,
0.040771484375,
0.486083984375,
-0.52783203125,
0.49658203125,
-0.074462890625,
-0.681640625,
0.6328125,
-0.65478515625,
0.1436767578125,
1.2802734375,
-0.274658203125,
0.68212890625,
-0.58740234375,
0.34814453125,
0.06756591796875,
0.044952392578125,
0.50830078125,
0.46044921875,
0.72265625,
-0.378662109375,
-0.6943359375,
-0.60546875,
-0.1134033203125,
0.0231475830078125,
-0.716796875,
-0.004276275634765625,
-0.22607421875,
-0.16943359375,
-0.705078125,
0.45654296875,
0.66259765625,
0.54931640625,
0.3603515625,
0.421630859375,
-0.0266265869140625,
0.181884765625,
0.69775390625,
-0.53125,
-0.08404541015625,
-0.439208984375,
0.77783203125,
0.273681640625,
-0.26611328125,
-0.284423828125,
-0.58984375,
-0.0011415481567382812,
0.443115234375,
0.3974609375,
-0.146484375,
-1.1552734375,
0.349365234375,
-0.046051025390625,
0.7822265625,
-0.7900390625,
0.1090087890625,
-0.48876953125,
0.57421875,
0.222412109375,
-1.0234375,
0.1221923828125,
-1.134765625,
0.669921875,
0.55517578125,
-0.09619140625,
-0.74755859375,
-0.09814453125,
-0.80908203125,
-0.79150390625,
0.358154296875,
0.9755859375,
-0.06494140625,
0.0255279541015625,
-1.3271484375,
0.283935546875,
0.384521484375,
-0.6083984375,
0.089111328125,
-0.077880859375,
0.361083984375,
0.0130157470703125,
0.6962890625,
-0.398193359375,
-0.51708984375,
-0.0265655517578125,
-1.03515625,
0.81787109375,
-0.560546875,
0.5869140625,
0.08062744140625,
-0.153076171875,
0.180908203125,
0.66015625,
-0.006847381591796875,
0.07879638671875,
-0.1845703125,
0.05718994140625,
-1.1826171875,
-1.197265625,
0.5576171875,
-0.09722900390625,
-0.474365234375,
0.849609375,
-0.1702880859375,
-0.304931640625,
0.0036258697509765625,
0.57568359375,
-0.42626953125,
0.2890625,
-0.478515625,
0.51708984375,
-0.59130859375,
-0.87109375,
-0.269287109375,
-0.568359375,
0.9541015625,
0.1558837890625,
-0.845703125,
-0.267333984375,
-0.8486328125,
-0.43115234375,
-0.027099609375,
-0.59423828125,
0.1978759765625,
0.08392333984375,
-0.32470703125,
-0.272216796875,
-0.361083984375,
-0.1312255859375,
-0.30908203125,
-0.43359375,
-0.218994140625,
0.331298828125,
0.408935546875,
1.0078125,
0.135009765625,
-0.420166015625,
0.0195465087890625,
-0.1422119140625,
-0.03948974609375,
-0.382080078125,
-0.39599609375,
-0.0227203369140625,
-0.304931640625,
-0.62841796875,
0.457763671875,
-0.007122039794921875,
0.66943359375,
0.60107421875,
0.0124359130859375,
0.38330078125,
0.26171875,
-0.865234375,
1.1845703125,
-0.037841796875,
-1.2998046875,
-0.6669921875,
0.154296875,
0.54736328125,
0.56005859375,
0.165771484375,
-0.86474609375,
-0.60205078125,
-1.0615234375,
0.52978515625,
-0.65869140625,
-0.09246826171875,
-0.97412109375,
-0.59033203125,
-0.57373046875,
0.76953125,
-0.270263671875,
-0.7490234375,
0.1810302734375,
-1.1953125,
0.251953125,
-0.89501953125,
-0.236572265625,
-0.452880859375,
-0.498779296875,
-0.45068359375,
1.32421875,
0.377685546875,
0.392333984375,
-0.1763916015625,
-0.056732177734375,
0.43212890625,
-0.1346435546875,
-0.73046875,
-0.364501953125,
-0.07635498046875,
-0.250244140625,
-0.3603515625,
-0.25439453125,
-0.7880859375,
0.8701171875,
-0.72412109375,
0.466796875,
-0.199462890625,
-0.262451171875,
0.175048828125,
-0.54638671875,
1.2021484375,
-0.568359375,
0.1119384765625,
-0.35009765625,
0.587890625,
0.59228515625,
-0.1717529296875,
-0.004993438720703125,
-0.2474365234375,
-0.60400390625,
-1.3515625,
0.454345703125,
-0.412109375,
0.1583251953125,
-0.7080078125,
0.0966796875,
1.34375,
-0.81787109375,
0.43505859375,
0.98291015625,
0.276123046875,
0.08953857421875,
-0.7119140625,
0.59228515625,
0.6533203125,
-0.5126953125,
0.1790771484375,
0.14453125,
-0.97802734375,
-0.059417724609375,
-0.342041015625,
-0.8818359375,
-0.888671875,
0.34521484375,
1.4033203125,
-0.4521484375,
0.794921875,
-0.2423095703125,
-1.0849609375,
-0.457275390625,
0.6357421875,
0.312744140625,
0.630859375,
1.24609375,
-0.031646728515625,
-0.1578369140625,
0.50341796875,
-0.2266845703125,
-0.265380859375,
-0.38916015625,
1.384765625,
-0.5625,
-0.322509765625,
0.9111328125,
0.88330078125,
-1.423828125,
-0.873046875,
0.053009033203125,
0.364501953125,
-0.267578125,
-0.9326171875,
0.1094970703125,
0.272705078125,
-0.76171875,
0.06378173828125,
0.4423828125,
-0.24658203125,
0.360107421875,
-0.0304107666015625,
0.6572265625,
-0.492919921875,
0.43701171875,
0.462158203125,
-0.363037109375,
-0.515625,
-0.87060546875,
-0.364990234375,
-0.07293701171875,
-0.0257110595703125,
0.95166015625,
-0.377685546875,
0.23583984375,
0.4990234375,
-0.2203369140625,
0.3232421875,
-0.437255859375,
0.10968017578125,
0.1761474609375,
-0.34912109375,
-0.7509765625,
-0.1375732421875,
0.1273193359375,
0.07244873046875,
0.62451171875,
-0.51611328125,
0.1572265625,
0.06829833984375,
0.158935546875,
-0.41064453125,
-0.42724609375,
-0.376220703125,
-1.2001953125,
-0.64404296875,
-0.69189453125,
-0.83349609375,
-0.37744140625,
0.57763671875,
0.0244598388671875,
-0.54345703125,
0.00470733642578125,
0.440185546875,
-0.64892578125,
0.8642578125,
-0.5419921875,
0.324951171875,
-0.45849609375,
-0.52685546875,
-0.6923828125,
0.1029052734375,
-0.4072265625,
-0.407958984375,
-0.044403076171875,
0.63818359375,
-0.23193359375,
0.3642578125,
-0.1082763671875,
0.479248046875,
-0.1630859375,
-0.81103515625,
-0.1524658203125,
0.02630615234375,
-0.31591796875,
1.1142578125,
0.91015625,
0.38330078125,
0.135986328125,
-0.5322265625,
-0.43310546875,
-0.12744140625,
0.6298828125,
0.849609375,
-0.0037593841552734375,
-0.2646484375,
-0.128662109375,
0.220947265625,
-1.0224609375,
0.321533203125,
-0.1329345703125,
0.09722900390625,
0.2244873046875,
-0.321044921875,
0.08685302734375,
1.0166015625,
-0.49169921875,
0.305908203125,
0.1884765625,
0.2298583984375,
0.16015625,
0.076416015625,
0.2310791015625,
0.34130859375,
0.018402099609375,
-0.3515625,
-0.056640625,
0.49072265625,
-0.003810882568359375,
0.410400390625,
-0.2293701171875,
-1.0380859375,
-0.81787109375,
-0.32568359375,
-0.2529296875,
0.263916015625,
0.2286376953125,
-0.440185546875,
-0.133544921875,
0.103271484375,
-0.393798828125,
-0.14794921875,
-1.1484375,
-1.2119140625,
0.73828125,
-0.2474365234375,
-0.94482421875,
-0.2568359375,
-0.394775390625,
0.034820556640625,
-0.06915283203125,
0.484375,
-0.235107421875,
0.474853515625,
-0.03582763671875,
0.5283203125,
-0.1846923828125,
0.12359619140625,
0.2005615234375,
0.8271484375,
-0.83251953125,
-0.62939453125,
0.320068359375,
1.033203125,
0.058441162109375,
-0.388427734375,
-0.357666015625,
0.32666015625,
-0.04998779296875,
0.03118896484375,
-0.225830078125,
0.12274169921875,
-0.08221435546875,
0.495361328125,
-0.79638671875,
-0.228759765625,
-0.1715087890625,
0.50146484375,
-0.042724609375,
-0.546875,
-0.7978515625,
0.89599609375,
0.703125,
-0.30126953125,
0.662109375,
0.061431884765625,
0.30810546875,
-0.1671142578125,
-0.07672119140625,
-0.247802734375,
0.6123046875,
0.50390625,
0.59521484375,
-0.53271484375,
0.316162109375,
0.69140625,
0.5205078125,
-0.04290771484375,
0.369140625,
-0.1446533203125,
0.065673828125,
0.0228424072265625,
-0.5166015625,
-0.498779296875,
0.076416015625,
-0.94775390625,
0.483154296875,
-0.6640625,
0.11285400390625,
-0.473876953125,
-0.744140625,
0.771484375,
-0.239013671875,
-0.0703125,
0.304931640625,
-0.58447265625,
0.27734375,
0.837890625,
-0.1552734375,
-0.36767578125,
0.61474609375,
0.93212890625,
0.7626953125,
0.79150390625,
0.30419921875,
0.4658203125,
-0.7216796875,
0.1561279296875,
0.14599609375,
-0.058502197265625,
-0.364990234375,
-0.80322265625,
-0.90380859375,
0.3466796875,
-0.303955078125,
-0.1839599609375,
0.336669921875,
-0.751953125,
0.205322265625,
0.0226898193359375,
0.77294921875,
-0.320556640625,
0.1629638671875,
0.302978515625,
-0.256591796875,
-0.90966796875,
1.0595703125,
-0.2156982421875,
0.422607421875,
-0.035797119140625,
1.025390625,
0.1546630859375,
1.4306640625,
0.52099609375,
-0.50634765625,
0.129150390625,
0.57958984375,
-0.3759765625,
-0.79443359375,
-0.59814453125,
-0.3662109375,
-0.2117919921875,
-0.80419921875,
-0.2332763671875,
-0.0401611328125,
0.98974609375,
-0.1556396484375,
-0.99609375,
-0.24560546875,
0.162109375,
-1.0830078125,
0.5625,
0.11553955078125,
0.0584716796875,
0.30908203125,
0.047027587890625,
-0.152587890625,
-1.0654296875,
0.223388671875,
-0.78173828125,
0.306884765625,
-0.93603515625,
-0.0892333984375,
-0.8310546875,
-0.7587890625,
0.134033203125,
-0.3818359375,
-0.328369140625,
-0.796875,
0.4453125,
0.8154296875,
0.479736328125,
-0.072509765625,
-0.31005859375,
0.1788330078125,
1.2255859375,
0.74658203125,
0.0579833984375,
0.83984375,
0.187744140625,
-0.334716796875,
-0.1102294921875,
-0.069091796875,
0.59619140625,
-0.39990234375,
0.02105712890625,
-0.4091796875,
0.19873046875,
-1.044921875,
-1.3916015625,
0.29345703125,
0.85693359375,
0.1903076171875,
-0.287353515625,
-1.10546875,
-0.44482421875,
-0.37451171875,
0.0736083984375,
-0.8115234375,
0.72802734375,
-0.1051025390625,
-0.048583984375,
-0.55078125,
-0.982421875,
4.2109375,
0.81982421875,
1.0029296875,
0.0640869140625,
0.3828125,
0.66015625,
0.29296875,
-0.412109375,
-0.046295166015625,
-0.391357421875,
0.59912109375,
-0.397705078125,
0.012451171875,
0.6201171875,
0.376708984375,
0.6494140625,
-0.44384765625,
-0.00917816162109375,
0.2220458984375,
-0.736328125,
-0.92919921875,
0.320068359375,
0.017486572265625,
0.449951171875,
-0.1529541015625,
0.431640625,
0.638671875,
-0.64111328125,
-0.261962890625,
-0.6884765625,
0.410400390625,
-0.2093505859375,
0.93359375,
0.337890625,
0.313720703125,
0.345703125,
0.020782470703125,
-0.0751953125,
-0.364990234375,
0.299560546875,
-0.08807373046875,
-0.00998687744140625,
0.77197265625,
-0.595703125,
-0.0753173828125,
0.84033203125,
-0.62109375,
0.56298828125,
0.50390625,
-0.9482421875,
0.8662109375,
-0.401123046875,
0.53759765625,
-0.828125,
-0.420654296875,
0.06524658203125,
0.17041015625,
0.0479736328125,
-0.1981201171875,
-0.0057830810546875,
0.34521484375,
0.75390625,
0.009307861328125,
0.900390625,
-1.1025390625,
0.1943359375,
0.181640625,
0.295166015625,
-0.5634765625,
0.07403564453125,
-0.4169921875,
-0.45458984375,
-0.292724609375,
-0.54833984375,
0.335205078125,
0.681640625,
-0.238525390625,
0.642578125,
0.85400390625,
-0.52099609375,
0.167236328125,
-0.2242431640625,
-0.215087890625,
-0.8779296875,
0.677734375,
1.3955078125,
-0.72900390625,
-0.155029296875,
-0.2435302734375,
0.51708984375,
0.58837890625,
0.990234375,
0.0858154296875,
-0.689453125,
-0.24853515625
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
You are given a string s of length n consisting only of lowercase Latin letters.
A substring of a string is a contiguous subsequence of that string. So, string "forces" is substring of string "codeforces", but string "coder" is not.
Your task is to calculate the number of ways to remove exactly one substring from this string in such a way that all remaining characters are equal (the number of distinct characters either zero or one).
It is guaranteed that there is at least two different characters in s.
Note that you can remove the whole string and it is correct. Also note that you should remove at least one character.
Since the answer can be rather large (not very large though) print it modulo 998244353.
If you are Python programmer, consider using PyPy instead of Python when you submit your code.
Input
The first line of the input contains one integer n (2 ≤ n ≤ 2 ⋅ 10^5) — the length of the string s.
The second line of the input contains the string s of length n consisting only of lowercase Latin letters.
It is guaranteed that there is at least two different characters in s.
Output
Print one integer — the number of ways modulo 998244353 to remove exactly one substring from s in such way that all remaining characters are equal.
Examples
Input
4
abaa
Output
6
Input
7
aacdeee
Output
6
Input
2
az
Output
3
Note
Let s[l; r] be the substring of s from the position l to the position r inclusive.
Then in the first example you can remove the following substrings:
* s[1; 2];
* s[1; 3];
* s[1; 4];
* s[2; 2];
* s[2; 3];
* s[2; 4].
In the second example you can remove the following substrings:
* s[1; 4];
* s[1; 5];
* s[1; 6];
* s[1; 7];
* s[2; 7];
* s[3; 7].
In the third example you can remove the following substrings:
* s[1; 1];
* s[1; 2];
* s[2; 2].
Submitted Solution:
```
n=int(input())
s=input()
ans=0
k1,k2=0,-1
for i in range(1,n):
if s[i]!=s[0]:
k1=i
break
for i in range(n-2,-1,-1):
if s[i]!=s[-1]:
k2=i
break
if s[0]==s[-1]:
ans=(k1+1)*(n-k2)
else:
ans+=k1+n-k2-1
ans+=1
print(ans%998244353)
```
Yes
| 10,842 | [
0.21484375,
0.270263671875,
0.139892578125,
0.261474609375,
-0.55615234375,
-0.3779296875,
-0.1878662109375,
-0.2113037109375,
0.0882568359375,
0.8232421875,
0.68994140625,
-0.281005859375,
-0.046600341796875,
-1.00390625,
-0.36376953125,
0.2296142578125,
-0.50390625,
-0.70703125,
-0.1749267578125,
-0.0626220703125,
0.11700439453125,
-0.251220703125,
-1.0458984375,
-0.324951171875,
-0.4599609375,
1.1025390625,
0.5908203125,
0.007389068603515625,
1.14453125,
1.1064453125,
-0.4638671875,
-0.775390625,
0.4931640625,
-1.03515625,
-0.2413330078125,
-0.81787109375,
0.9189453125,
-0.74365234375,
-0.1002197265625,
-0.59130859375,
0.1632080078125,
-0.3623046875,
0.6630859375,
-0.7451171875,
-1.275390625,
-0.1258544921875,
-0.07342529296875,
0.0216064453125,
-0.50927734375,
0.00566864013671875,
0.072998046875,
-0.1641845703125,
0.61181640625,
-0.3466796875,
0.3779296875,
0.4248046875,
0.11151123046875,
-0.04736328125,
-0.65380859375,
0.379150390625,
-0.126953125,
0.29541015625,
-0.142578125,
-0.60986328125,
-0.318359375,
0.33251953125,
-0.2479248046875,
0.080810546875,
0.2247314453125,
-0.513671875,
0.134765625,
-0.007144927978515625,
-0.5654296875,
-0.40966796875,
-0.39990234375,
0.09149169921875,
-0.05035400390625,
-0.0667724609375,
-0.8154296875,
0.9140625,
-0.2449951171875,
1.1015625,
0.58349609375,
0.5068359375,
-0.58740234375,
-0.40234375,
0.227294921875,
0.1270751953125,
0.2476806640625,
-0.223876953125,
-0.13671875,
0.55322265625,
-0.84814453125,
-0.137939453125,
0.174560546875,
0.421630859375,
0.1080322265625,
0.349853515625,
0.2423095703125,
0.045135498046875,
0.99951171875,
0.94189453125,
-0.5458984375,
1.27734375,
-0.405517578125,
-0.2529296875,
0.537109375,
0.00652313232421875,
-0.231689453125,
-0.143310546875,
-0.305908203125,
-0.46923828125,
0.6904296875,
0.492919921875,
-0.5068359375,
0.798828125,
-0.26416015625,
0.34619140625,
-0.4462890625,
0.1798095703125,
0.74658203125,
-0.035888671875,
0.42822265625,
-0.11419677734375,
-0.1361083984375,
-0.3173828125,
-0.362548828125,
0.974609375,
-0.37255859375,
0.1114501953125,
0.666015625,
-0.232177734375,
0.03564453125,
0.048095703125,
-0.179443359375,
0.841796875,
-0.1527099609375,
0.462646484375,
0.626953125,
-0.3515625,
0.84423828125,
0.2362060546875,
-0.054473876953125,
1.421875,
0.240966796875,
-0.11376953125,
0.50634765625,
0.340087890625,
-0.6064453125,
0.2227783203125,
-1.154296875,
0.7001953125,
0.2059326171875,
0.1492919921875,
-0.1531982421875,
0.0180511474609375,
-0.34765625,
0.5908203125,
0.2376708984375,
0.057373046875,
-0.34765625,
0.302490234375,
-0.284423828125,
0.86328125,
-0.327880859375,
0.55908203125,
-0.376220703125,
-0.40087890625,
-0.12469482421875,
-0.11688232421875,
0.36181640625,
-0.11590576171875,
-0.1953125,
0.8427734375,
0.8046875,
0.90087890625,
0.611328125,
-0.259765625,
0.29736328125,
0.1343994140625,
-0.425048828125,
0.39892578125,
0.38671875,
0.73681640625,
0.331298828125,
0.360595703125,
0.285400390625,
-0.308837890625,
-0.77783203125,
-0.509765625,
0.5322265625,
0.68505859375,
-0.467041015625,
0.77783203125,
0.2469482421875,
-0.0144805908203125,
-0.8466796875,
0.083740234375,
-0.258544921875,
-1.109375,
-0.411376953125,
0.681640625,
-0.1767578125,
0.349853515625,
-0.9951171875,
-0.347412109375,
0.69287109375,
1.1826171875,
-0.255615234375,
0.0175018310546875,
0.54736328125,
-0.00576019287109375,
-0.287353515625,
0.33740234375,
-0.09454345703125,
-0.09661865234375,
-0.486328125,
0.50146484375,
-0.08599853515625,
0.06024169921875,
0.100830078125,
0.7099609375,
0.2435302734375,
0.55615234375,
-0.40771484375,
-0.6123046875,
0.1788330078125,
1.4365234375,
0.11383056640625,
0.47802734375,
0.55322265625,
1.1552734375,
0.72607421875,
0.65234375,
0.466796875,
0.1558837890625,
0.78076171875,
1.2138671875,
-0.1312255859375,
0.2685546875,
-0.11285400390625,
0.515625,
0.494873046875,
0.58935546875,
0.26416015625,
0.3408203125,
-0.1505126953125,
-0.0928955078125,
-0.72509765625,
0.30029296875,
-0.33544921875,
0.50927734375,
0.1668701171875,
0.748046875,
-0.4912109375,
-0.315673828125,
0.1829833984375,
0.64794921875,
-1.2373046875,
-0.250732421875,
0.21875,
-0.052642822265625,
0.282470703125,
0.10406494140625,
0.498046875,
0.0682373046875,
0.70166015625,
0.238525390625,
-0.17236328125,
-0.72314453125,
-0.77294921875,
-1.01953125,
-0.966796875,
-0.51123046875,
-0.8369140625,
-0.08062744140625,
-0.16796875,
-0.8544921875,
0.372802734375,
-0.41943359375,
-0.270263671875,
0.42431640625,
-0.583984375,
0.51611328125,
-0.39306640625,
0.5361328125,
-0.35986328125,
0.29833984375,
0.1826171875,
1.1572265625,
-0.6103515625,
-0.2169189453125,
-0.54736328125,
-0.400146484375,
0.1553955078125,
0.1761474609375,
0.435302734375,
-0.1583251953125,
-0.623046875,
-0.8984375,
-0.2435302734375,
-0.32373046875,
-0.533203125,
0.060394287109375,
-0.67431640625,
0.77001953125,
0.55322265625,
-0.77490234375,
0.57373046875,
1.1982421875,
-0.82470703125,
0.55322265625,
0.264404296875,
0.0772705078125,
-0.71484375,
1.267578125,
0.46337890625,
0.53076171875,
-0.65869140625,
-0.79541015625,
-0.336181640625,
0.1314697265625,
0.264892578125,
-0.4501953125,
-0.485595703125,
0.443115234375,
-0.2213134765625,
-0.94580078125,
0.9306640625,
-1.4052734375,
-0.36669921875,
-0.5703125,
-0.396240234375,
0.54052734375,
0.75927734375,
0.19580078125,
-0.0738525390625,
-0.4619140625,
-0.26416015625,
0.60302734375,
0.2454833984375,
-0.9638671875,
-0.27685546875,
0.544921875,
-0.2069091796875,
0.00664520263671875,
0.057037353515625,
-0.51611328125,
0.00010913610458374023,
-0.2138671875,
0.109130859375,
1.212890625,
0.1455078125,
0.67236328125,
0.437744140625,
0.869140625,
-0.8134765625,
-0.261962890625,
-0.0088348388671875,
1.0478515625,
0.5771484375,
0.52490234375,
0.546875,
-0.1407470703125,
-0.78173828125,
-0.80615234375,
0.0867919921875,
0.040771484375,
0.486083984375,
-0.52783203125,
0.49658203125,
-0.074462890625,
-0.681640625,
0.6328125,
-0.65478515625,
0.1436767578125,
1.2802734375,
-0.274658203125,
0.68212890625,
-0.58740234375,
0.34814453125,
0.06756591796875,
0.044952392578125,
0.50830078125,
0.46044921875,
0.72265625,
-0.378662109375,
-0.6943359375,
-0.60546875,
-0.1134033203125,
0.0231475830078125,
-0.716796875,
-0.004276275634765625,
-0.22607421875,
-0.16943359375,
-0.705078125,
0.45654296875,
0.66259765625,
0.54931640625,
0.3603515625,
0.421630859375,
-0.0266265869140625,
0.181884765625,
0.69775390625,
-0.53125,
-0.08404541015625,
-0.439208984375,
0.77783203125,
0.273681640625,
-0.26611328125,
-0.284423828125,
-0.58984375,
-0.0011415481567382812,
0.443115234375,
0.3974609375,
-0.146484375,
-1.1552734375,
0.349365234375,
-0.046051025390625,
0.7822265625,
-0.7900390625,
0.1090087890625,
-0.48876953125,
0.57421875,
0.222412109375,
-1.0234375,
0.1221923828125,
-1.134765625,
0.669921875,
0.55517578125,
-0.09619140625,
-0.74755859375,
-0.09814453125,
-0.80908203125,
-0.79150390625,
0.358154296875,
0.9755859375,
-0.06494140625,
0.0255279541015625,
-1.3271484375,
0.283935546875,
0.384521484375,
-0.6083984375,
0.089111328125,
-0.077880859375,
0.361083984375,
0.0130157470703125,
0.6962890625,
-0.398193359375,
-0.51708984375,
-0.0265655517578125,
-1.03515625,
0.81787109375,
-0.560546875,
0.5869140625,
0.08062744140625,
-0.153076171875,
0.180908203125,
0.66015625,
-0.006847381591796875,
0.07879638671875,
-0.1845703125,
0.05718994140625,
-1.1826171875,
-1.197265625,
0.5576171875,
-0.09722900390625,
-0.474365234375,
0.849609375,
-0.1702880859375,
-0.304931640625,
0.0036258697509765625,
0.57568359375,
-0.42626953125,
0.2890625,
-0.478515625,
0.51708984375,
-0.59130859375,
-0.87109375,
-0.269287109375,
-0.568359375,
0.9541015625,
0.1558837890625,
-0.845703125,
-0.267333984375,
-0.8486328125,
-0.43115234375,
-0.027099609375,
-0.59423828125,
0.1978759765625,
0.08392333984375,
-0.32470703125,
-0.272216796875,
-0.361083984375,
-0.1312255859375,
-0.30908203125,
-0.43359375,
-0.218994140625,
0.331298828125,
0.408935546875,
1.0078125,
0.135009765625,
-0.420166015625,
0.0195465087890625,
-0.1422119140625,
-0.03948974609375,
-0.382080078125,
-0.39599609375,
-0.0227203369140625,
-0.304931640625,
-0.62841796875,
0.457763671875,
-0.007122039794921875,
0.66943359375,
0.60107421875,
0.0124359130859375,
0.38330078125,
0.26171875,
-0.865234375,
1.1845703125,
-0.037841796875,
-1.2998046875,
-0.6669921875,
0.154296875,
0.54736328125,
0.56005859375,
0.165771484375,
-0.86474609375,
-0.60205078125,
-1.0615234375,
0.52978515625,
-0.65869140625,
-0.09246826171875,
-0.97412109375,
-0.59033203125,
-0.57373046875,
0.76953125,
-0.270263671875,
-0.7490234375,
0.1810302734375,
-1.1953125,
0.251953125,
-0.89501953125,
-0.236572265625,
-0.452880859375,
-0.498779296875,
-0.45068359375,
1.32421875,
0.377685546875,
0.392333984375,
-0.1763916015625,
-0.056732177734375,
0.43212890625,
-0.1346435546875,
-0.73046875,
-0.364501953125,
-0.07635498046875,
-0.250244140625,
-0.3603515625,
-0.25439453125,
-0.7880859375,
0.8701171875,
-0.72412109375,
0.466796875,
-0.199462890625,
-0.262451171875,
0.175048828125,
-0.54638671875,
1.2021484375,
-0.568359375,
0.1119384765625,
-0.35009765625,
0.587890625,
0.59228515625,
-0.1717529296875,
-0.004993438720703125,
-0.2474365234375,
-0.60400390625,
-1.3515625,
0.454345703125,
-0.412109375,
0.1583251953125,
-0.7080078125,
0.0966796875,
1.34375,
-0.81787109375,
0.43505859375,
0.98291015625,
0.276123046875,
0.08953857421875,
-0.7119140625,
0.59228515625,
0.6533203125,
-0.5126953125,
0.1790771484375,
0.14453125,
-0.97802734375,
-0.059417724609375,
-0.342041015625,
-0.8818359375,
-0.888671875,
0.34521484375,
1.4033203125,
-0.4521484375,
0.794921875,
-0.2423095703125,
-1.0849609375,
-0.457275390625,
0.6357421875,
0.312744140625,
0.630859375,
1.24609375,
-0.031646728515625,
-0.1578369140625,
0.50341796875,
-0.2266845703125,
-0.265380859375,
-0.38916015625,
1.384765625,
-0.5625,
-0.322509765625,
0.9111328125,
0.88330078125,
-1.423828125,
-0.873046875,
0.053009033203125,
0.364501953125,
-0.267578125,
-0.9326171875,
0.1094970703125,
0.272705078125,
-0.76171875,
0.06378173828125,
0.4423828125,
-0.24658203125,
0.360107421875,
-0.0304107666015625,
0.6572265625,
-0.492919921875,
0.43701171875,
0.462158203125,
-0.363037109375,
-0.515625,
-0.87060546875,
-0.364990234375,
-0.07293701171875,
-0.0257110595703125,
0.95166015625,
-0.377685546875,
0.23583984375,
0.4990234375,
-0.2203369140625,
0.3232421875,
-0.437255859375,
0.10968017578125,
0.1761474609375,
-0.34912109375,
-0.7509765625,
-0.1375732421875,
0.1273193359375,
0.07244873046875,
0.62451171875,
-0.51611328125,
0.1572265625,
0.06829833984375,
0.158935546875,
-0.41064453125,
-0.42724609375,
-0.376220703125,
-1.2001953125,
-0.64404296875,
-0.69189453125,
-0.83349609375,
-0.37744140625,
0.57763671875,
0.0244598388671875,
-0.54345703125,
0.00470733642578125,
0.440185546875,
-0.64892578125,
0.8642578125,
-0.5419921875,
0.324951171875,
-0.45849609375,
-0.52685546875,
-0.6923828125,
0.1029052734375,
-0.4072265625,
-0.407958984375,
-0.044403076171875,
0.63818359375,
-0.23193359375,
0.3642578125,
-0.1082763671875,
0.479248046875,
-0.1630859375,
-0.81103515625,
-0.1524658203125,
0.02630615234375,
-0.31591796875,
1.1142578125,
0.91015625,
0.38330078125,
0.135986328125,
-0.5322265625,
-0.43310546875,
-0.12744140625,
0.6298828125,
0.849609375,
-0.0037593841552734375,
-0.2646484375,
-0.128662109375,
0.220947265625,
-1.0224609375,
0.321533203125,
-0.1329345703125,
0.09722900390625,
0.2244873046875,
-0.321044921875,
0.08685302734375,
1.0166015625,
-0.49169921875,
0.305908203125,
0.1884765625,
0.2298583984375,
0.16015625,
0.076416015625,
0.2310791015625,
0.34130859375,
0.018402099609375,
-0.3515625,
-0.056640625,
0.49072265625,
-0.003810882568359375,
0.410400390625,
-0.2293701171875,
-1.0380859375,
-0.81787109375,
-0.32568359375,
-0.2529296875,
0.263916015625,
0.2286376953125,
-0.440185546875,
-0.133544921875,
0.103271484375,
-0.393798828125,
-0.14794921875,
-1.1484375,
-1.2119140625,
0.73828125,
-0.2474365234375,
-0.94482421875,
-0.2568359375,
-0.394775390625,
0.034820556640625,
-0.06915283203125,
0.484375,
-0.235107421875,
0.474853515625,
-0.03582763671875,
0.5283203125,
-0.1846923828125,
0.12359619140625,
0.2005615234375,
0.8271484375,
-0.83251953125,
-0.62939453125,
0.320068359375,
1.033203125,
0.058441162109375,
-0.388427734375,
-0.357666015625,
0.32666015625,
-0.04998779296875,
0.03118896484375,
-0.225830078125,
0.12274169921875,
-0.08221435546875,
0.495361328125,
-0.79638671875,
-0.228759765625,
-0.1715087890625,
0.50146484375,
-0.042724609375,
-0.546875,
-0.7978515625,
0.89599609375,
0.703125,
-0.30126953125,
0.662109375,
0.061431884765625,
0.30810546875,
-0.1671142578125,
-0.07672119140625,
-0.247802734375,
0.6123046875,
0.50390625,
0.59521484375,
-0.53271484375,
0.316162109375,
0.69140625,
0.5205078125,
-0.04290771484375,
0.369140625,
-0.1446533203125,
0.065673828125,
0.0228424072265625,
-0.5166015625,
-0.498779296875,
0.076416015625,
-0.94775390625,
0.483154296875,
-0.6640625,
0.11285400390625,
-0.473876953125,
-0.744140625,
0.771484375,
-0.239013671875,
-0.0703125,
0.304931640625,
-0.58447265625,
0.27734375,
0.837890625,
-0.1552734375,
-0.36767578125,
0.61474609375,
0.93212890625,
0.7626953125,
0.79150390625,
0.30419921875,
0.4658203125,
-0.7216796875,
0.1561279296875,
0.14599609375,
-0.058502197265625,
-0.364990234375,
-0.80322265625,
-0.90380859375,
0.3466796875,
-0.303955078125,
-0.1839599609375,
0.336669921875,
-0.751953125,
0.205322265625,
0.0226898193359375,
0.77294921875,
-0.320556640625,
0.1629638671875,
0.302978515625,
-0.256591796875,
-0.90966796875,
1.0595703125,
-0.2156982421875,
0.422607421875,
-0.035797119140625,
1.025390625,
0.1546630859375,
1.4306640625,
0.52099609375,
-0.50634765625,
0.129150390625,
0.57958984375,
-0.3759765625,
-0.79443359375,
-0.59814453125,
-0.3662109375,
-0.2117919921875,
-0.80419921875,
-0.2332763671875,
-0.0401611328125,
0.98974609375,
-0.1556396484375,
-0.99609375,
-0.24560546875,
0.162109375,
-1.0830078125,
0.5625,
0.11553955078125,
0.0584716796875,
0.30908203125,
0.047027587890625,
-0.152587890625,
-1.0654296875,
0.223388671875,
-0.78173828125,
0.306884765625,
-0.93603515625,
-0.0892333984375,
-0.8310546875,
-0.7587890625,
0.134033203125,
-0.3818359375,
-0.328369140625,
-0.796875,
0.4453125,
0.8154296875,
0.479736328125,
-0.072509765625,
-0.31005859375,
0.1788330078125,
1.2255859375,
0.74658203125,
0.0579833984375,
0.83984375,
0.187744140625,
-0.334716796875,
-0.1102294921875,
-0.069091796875,
0.59619140625,
-0.39990234375,
0.02105712890625,
-0.4091796875,
0.19873046875,
-1.044921875,
-1.3916015625,
0.29345703125,
0.85693359375,
0.1903076171875,
-0.287353515625,
-1.10546875,
-0.44482421875,
-0.37451171875,
0.0736083984375,
-0.8115234375,
0.72802734375,
-0.1051025390625,
-0.048583984375,
-0.55078125,
-0.982421875,
4.2109375,
0.81982421875,
1.0029296875,
0.0640869140625,
0.3828125,
0.66015625,
0.29296875,
-0.412109375,
-0.046295166015625,
-0.391357421875,
0.59912109375,
-0.397705078125,
0.012451171875,
0.6201171875,
0.376708984375,
0.6494140625,
-0.44384765625,
-0.00917816162109375,
0.2220458984375,
-0.736328125,
-0.92919921875,
0.320068359375,
0.017486572265625,
0.449951171875,
-0.1529541015625,
0.431640625,
0.638671875,
-0.64111328125,
-0.261962890625,
-0.6884765625,
0.410400390625,
-0.2093505859375,
0.93359375,
0.337890625,
0.313720703125,
0.345703125,
0.020782470703125,
-0.0751953125,
-0.364990234375,
0.299560546875,
-0.08807373046875,
-0.00998687744140625,
0.77197265625,
-0.595703125,
-0.0753173828125,
0.84033203125,
-0.62109375,
0.56298828125,
0.50390625,
-0.9482421875,
0.8662109375,
-0.401123046875,
0.53759765625,
-0.828125,
-0.420654296875,
0.06524658203125,
0.17041015625,
0.0479736328125,
-0.1981201171875,
-0.0057830810546875,
0.34521484375,
0.75390625,
0.009307861328125,
0.900390625,
-1.1025390625,
0.1943359375,
0.181640625,
0.295166015625,
-0.5634765625,
0.07403564453125,
-0.4169921875,
-0.45458984375,
-0.292724609375,
-0.54833984375,
0.335205078125,
0.681640625,
-0.238525390625,
0.642578125,
0.85400390625,
-0.52099609375,
0.167236328125,
-0.2242431640625,
-0.215087890625,
-0.8779296875,
0.677734375,
1.3955078125,
-0.72900390625,
-0.155029296875,
-0.2435302734375,
0.51708984375,
0.58837890625,
0.990234375,
0.0858154296875,
-0.689453125,
-0.24853515625
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
You are given a string s of length n consisting only of lowercase Latin letters.
A substring of a string is a contiguous subsequence of that string. So, string "forces" is substring of string "codeforces", but string "coder" is not.
Your task is to calculate the number of ways to remove exactly one substring from this string in such a way that all remaining characters are equal (the number of distinct characters either zero or one).
It is guaranteed that there is at least two different characters in s.
Note that you can remove the whole string and it is correct. Also note that you should remove at least one character.
Since the answer can be rather large (not very large though) print it modulo 998244353.
If you are Python programmer, consider using PyPy instead of Python when you submit your code.
Input
The first line of the input contains one integer n (2 ≤ n ≤ 2 ⋅ 10^5) — the length of the string s.
The second line of the input contains the string s of length n consisting only of lowercase Latin letters.
It is guaranteed that there is at least two different characters in s.
Output
Print one integer — the number of ways modulo 998244353 to remove exactly one substring from s in such way that all remaining characters are equal.
Examples
Input
4
abaa
Output
6
Input
7
aacdeee
Output
6
Input
2
az
Output
3
Note
Let s[l; r] be the substring of s from the position l to the position r inclusive.
Then in the first example you can remove the following substrings:
* s[1; 2];
* s[1; 3];
* s[1; 4];
* s[2; 2];
* s[2; 3];
* s[2; 4].
In the second example you can remove the following substrings:
* s[1; 4];
* s[1; 5];
* s[1; 6];
* s[1; 7];
* s[2; 7];
* s[3; 7].
In the third example you can remove the following substrings:
* s[1; 1];
* s[1; 2];
* s[2; 2].
Submitted Solution:
```
n = int(input())
s = input()
list_s = list(s)
count_char =0
x=-1
current_char = list_s[x]
while(current_char == list_s[-1]):
count_char+=1
x = x-1
current_char = list_s[x]
if list_s[0] == list_s[-1]:
print(count_char*3)
else:
print(count_char*2)
```
No
| 10,843 | [
0.21484375,
0.270263671875,
0.139892578125,
0.261474609375,
-0.55615234375,
-0.3779296875,
-0.1878662109375,
-0.2113037109375,
0.0882568359375,
0.8232421875,
0.68994140625,
-0.281005859375,
-0.046600341796875,
-1.00390625,
-0.36376953125,
0.2296142578125,
-0.50390625,
-0.70703125,
-0.1749267578125,
-0.0626220703125,
0.11700439453125,
-0.251220703125,
-1.0458984375,
-0.324951171875,
-0.4599609375,
1.1025390625,
0.5908203125,
0.007389068603515625,
1.14453125,
1.1064453125,
-0.4638671875,
-0.775390625,
0.4931640625,
-1.03515625,
-0.2413330078125,
-0.81787109375,
0.9189453125,
-0.74365234375,
-0.1002197265625,
-0.59130859375,
0.1632080078125,
-0.3623046875,
0.6630859375,
-0.7451171875,
-1.275390625,
-0.1258544921875,
-0.07342529296875,
0.0216064453125,
-0.50927734375,
0.00566864013671875,
0.072998046875,
-0.1641845703125,
0.61181640625,
-0.3466796875,
0.3779296875,
0.4248046875,
0.11151123046875,
-0.04736328125,
-0.65380859375,
0.379150390625,
-0.126953125,
0.29541015625,
-0.142578125,
-0.60986328125,
-0.318359375,
0.33251953125,
-0.2479248046875,
0.080810546875,
0.2247314453125,
-0.513671875,
0.134765625,
-0.007144927978515625,
-0.5654296875,
-0.40966796875,
-0.39990234375,
0.09149169921875,
-0.05035400390625,
-0.0667724609375,
-0.8154296875,
0.9140625,
-0.2449951171875,
1.1015625,
0.58349609375,
0.5068359375,
-0.58740234375,
-0.40234375,
0.227294921875,
0.1270751953125,
0.2476806640625,
-0.223876953125,
-0.13671875,
0.55322265625,
-0.84814453125,
-0.137939453125,
0.174560546875,
0.421630859375,
0.1080322265625,
0.349853515625,
0.2423095703125,
0.045135498046875,
0.99951171875,
0.94189453125,
-0.5458984375,
1.27734375,
-0.405517578125,
-0.2529296875,
0.537109375,
0.00652313232421875,
-0.231689453125,
-0.143310546875,
-0.305908203125,
-0.46923828125,
0.6904296875,
0.492919921875,
-0.5068359375,
0.798828125,
-0.26416015625,
0.34619140625,
-0.4462890625,
0.1798095703125,
0.74658203125,
-0.035888671875,
0.42822265625,
-0.11419677734375,
-0.1361083984375,
-0.3173828125,
-0.362548828125,
0.974609375,
-0.37255859375,
0.1114501953125,
0.666015625,
-0.232177734375,
0.03564453125,
0.048095703125,
-0.179443359375,
0.841796875,
-0.1527099609375,
0.462646484375,
0.626953125,
-0.3515625,
0.84423828125,
0.2362060546875,
-0.054473876953125,
1.421875,
0.240966796875,
-0.11376953125,
0.50634765625,
0.340087890625,
-0.6064453125,
0.2227783203125,
-1.154296875,
0.7001953125,
0.2059326171875,
0.1492919921875,
-0.1531982421875,
0.0180511474609375,
-0.34765625,
0.5908203125,
0.2376708984375,
0.057373046875,
-0.34765625,
0.302490234375,
-0.284423828125,
0.86328125,
-0.327880859375,
0.55908203125,
-0.376220703125,
-0.40087890625,
-0.12469482421875,
-0.11688232421875,
0.36181640625,
-0.11590576171875,
-0.1953125,
0.8427734375,
0.8046875,
0.90087890625,
0.611328125,
-0.259765625,
0.29736328125,
0.1343994140625,
-0.425048828125,
0.39892578125,
0.38671875,
0.73681640625,
0.331298828125,
0.360595703125,
0.285400390625,
-0.308837890625,
-0.77783203125,
-0.509765625,
0.5322265625,
0.68505859375,
-0.467041015625,
0.77783203125,
0.2469482421875,
-0.0144805908203125,
-0.8466796875,
0.083740234375,
-0.258544921875,
-1.109375,
-0.411376953125,
0.681640625,
-0.1767578125,
0.349853515625,
-0.9951171875,
-0.347412109375,
0.69287109375,
1.1826171875,
-0.255615234375,
0.0175018310546875,
0.54736328125,
-0.00576019287109375,
-0.287353515625,
0.33740234375,
-0.09454345703125,
-0.09661865234375,
-0.486328125,
0.50146484375,
-0.08599853515625,
0.06024169921875,
0.100830078125,
0.7099609375,
0.2435302734375,
0.55615234375,
-0.40771484375,
-0.6123046875,
0.1788330078125,
1.4365234375,
0.11383056640625,
0.47802734375,
0.55322265625,
1.1552734375,
0.72607421875,
0.65234375,
0.466796875,
0.1558837890625,
0.78076171875,
1.2138671875,
-0.1312255859375,
0.2685546875,
-0.11285400390625,
0.515625,
0.494873046875,
0.58935546875,
0.26416015625,
0.3408203125,
-0.1505126953125,
-0.0928955078125,
-0.72509765625,
0.30029296875,
-0.33544921875,
0.50927734375,
0.1668701171875,
0.748046875,
-0.4912109375,
-0.315673828125,
0.1829833984375,
0.64794921875,
-1.2373046875,
-0.250732421875,
0.21875,
-0.052642822265625,
0.282470703125,
0.10406494140625,
0.498046875,
0.0682373046875,
0.70166015625,
0.238525390625,
-0.17236328125,
-0.72314453125,
-0.77294921875,
-1.01953125,
-0.966796875,
-0.51123046875,
-0.8369140625,
-0.08062744140625,
-0.16796875,
-0.8544921875,
0.372802734375,
-0.41943359375,
-0.270263671875,
0.42431640625,
-0.583984375,
0.51611328125,
-0.39306640625,
0.5361328125,
-0.35986328125,
0.29833984375,
0.1826171875,
1.1572265625,
-0.6103515625,
-0.2169189453125,
-0.54736328125,
-0.400146484375,
0.1553955078125,
0.1761474609375,
0.435302734375,
-0.1583251953125,
-0.623046875,
-0.8984375,
-0.2435302734375,
-0.32373046875,
-0.533203125,
0.060394287109375,
-0.67431640625,
0.77001953125,
0.55322265625,
-0.77490234375,
0.57373046875,
1.1982421875,
-0.82470703125,
0.55322265625,
0.264404296875,
0.0772705078125,
-0.71484375,
1.267578125,
0.46337890625,
0.53076171875,
-0.65869140625,
-0.79541015625,
-0.336181640625,
0.1314697265625,
0.264892578125,
-0.4501953125,
-0.485595703125,
0.443115234375,
-0.2213134765625,
-0.94580078125,
0.9306640625,
-1.4052734375,
-0.36669921875,
-0.5703125,
-0.396240234375,
0.54052734375,
0.75927734375,
0.19580078125,
-0.0738525390625,
-0.4619140625,
-0.26416015625,
0.60302734375,
0.2454833984375,
-0.9638671875,
-0.27685546875,
0.544921875,
-0.2069091796875,
0.00664520263671875,
0.057037353515625,
-0.51611328125,
0.00010913610458374023,
-0.2138671875,
0.109130859375,
1.212890625,
0.1455078125,
0.67236328125,
0.437744140625,
0.869140625,
-0.8134765625,
-0.261962890625,
-0.0088348388671875,
1.0478515625,
0.5771484375,
0.52490234375,
0.546875,
-0.1407470703125,
-0.78173828125,
-0.80615234375,
0.0867919921875,
0.040771484375,
0.486083984375,
-0.52783203125,
0.49658203125,
-0.074462890625,
-0.681640625,
0.6328125,
-0.65478515625,
0.1436767578125,
1.2802734375,
-0.274658203125,
0.68212890625,
-0.58740234375,
0.34814453125,
0.06756591796875,
0.044952392578125,
0.50830078125,
0.46044921875,
0.72265625,
-0.378662109375,
-0.6943359375,
-0.60546875,
-0.1134033203125,
0.0231475830078125,
-0.716796875,
-0.004276275634765625,
-0.22607421875,
-0.16943359375,
-0.705078125,
0.45654296875,
0.66259765625,
0.54931640625,
0.3603515625,
0.421630859375,
-0.0266265869140625,
0.181884765625,
0.69775390625,
-0.53125,
-0.08404541015625,
-0.439208984375,
0.77783203125,
0.273681640625,
-0.26611328125,
-0.284423828125,
-0.58984375,
-0.0011415481567382812,
0.443115234375,
0.3974609375,
-0.146484375,
-1.1552734375,
0.349365234375,
-0.046051025390625,
0.7822265625,
-0.7900390625,
0.1090087890625,
-0.48876953125,
0.57421875,
0.222412109375,
-1.0234375,
0.1221923828125,
-1.134765625,
0.669921875,
0.55517578125,
-0.09619140625,
-0.74755859375,
-0.09814453125,
-0.80908203125,
-0.79150390625,
0.358154296875,
0.9755859375,
-0.06494140625,
0.0255279541015625,
-1.3271484375,
0.283935546875,
0.384521484375,
-0.6083984375,
0.089111328125,
-0.077880859375,
0.361083984375,
0.0130157470703125,
0.6962890625,
-0.398193359375,
-0.51708984375,
-0.0265655517578125,
-1.03515625,
0.81787109375,
-0.560546875,
0.5869140625,
0.08062744140625,
-0.153076171875,
0.180908203125,
0.66015625,
-0.006847381591796875,
0.07879638671875,
-0.1845703125,
0.05718994140625,
-1.1826171875,
-1.197265625,
0.5576171875,
-0.09722900390625,
-0.474365234375,
0.849609375,
-0.1702880859375,
-0.304931640625,
0.0036258697509765625,
0.57568359375,
-0.42626953125,
0.2890625,
-0.478515625,
0.51708984375,
-0.59130859375,
-0.87109375,
-0.269287109375,
-0.568359375,
0.9541015625,
0.1558837890625,
-0.845703125,
-0.267333984375,
-0.8486328125,
-0.43115234375,
-0.027099609375,
-0.59423828125,
0.1978759765625,
0.08392333984375,
-0.32470703125,
-0.272216796875,
-0.361083984375,
-0.1312255859375,
-0.30908203125,
-0.43359375,
-0.218994140625,
0.331298828125,
0.408935546875,
1.0078125,
0.135009765625,
-0.420166015625,
0.0195465087890625,
-0.1422119140625,
-0.03948974609375,
-0.382080078125,
-0.39599609375,
-0.0227203369140625,
-0.304931640625,
-0.62841796875,
0.457763671875,
-0.007122039794921875,
0.66943359375,
0.60107421875,
0.0124359130859375,
0.38330078125,
0.26171875,
-0.865234375,
1.1845703125,
-0.037841796875,
-1.2998046875,
-0.6669921875,
0.154296875,
0.54736328125,
0.56005859375,
0.165771484375,
-0.86474609375,
-0.60205078125,
-1.0615234375,
0.52978515625,
-0.65869140625,
-0.09246826171875,
-0.97412109375,
-0.59033203125,
-0.57373046875,
0.76953125,
-0.270263671875,
-0.7490234375,
0.1810302734375,
-1.1953125,
0.251953125,
-0.89501953125,
-0.236572265625,
-0.452880859375,
-0.498779296875,
-0.45068359375,
1.32421875,
0.377685546875,
0.392333984375,
-0.1763916015625,
-0.056732177734375,
0.43212890625,
-0.1346435546875,
-0.73046875,
-0.364501953125,
-0.07635498046875,
-0.250244140625,
-0.3603515625,
-0.25439453125,
-0.7880859375,
0.8701171875,
-0.72412109375,
0.466796875,
-0.199462890625,
-0.262451171875,
0.175048828125,
-0.54638671875,
1.2021484375,
-0.568359375,
0.1119384765625,
-0.35009765625,
0.587890625,
0.59228515625,
-0.1717529296875,
-0.004993438720703125,
-0.2474365234375,
-0.60400390625,
-1.3515625,
0.454345703125,
-0.412109375,
0.1583251953125,
-0.7080078125,
0.0966796875,
1.34375,
-0.81787109375,
0.43505859375,
0.98291015625,
0.276123046875,
0.08953857421875,
-0.7119140625,
0.59228515625,
0.6533203125,
-0.5126953125,
0.1790771484375,
0.14453125,
-0.97802734375,
-0.059417724609375,
-0.342041015625,
-0.8818359375,
-0.888671875,
0.34521484375,
1.4033203125,
-0.4521484375,
0.794921875,
-0.2423095703125,
-1.0849609375,
-0.457275390625,
0.6357421875,
0.312744140625,
0.630859375,
1.24609375,
-0.031646728515625,
-0.1578369140625,
0.50341796875,
-0.2266845703125,
-0.265380859375,
-0.38916015625,
1.384765625,
-0.5625,
-0.322509765625,
0.9111328125,
0.88330078125,
-1.423828125,
-0.873046875,
0.053009033203125,
0.364501953125,
-0.267578125,
-0.9326171875,
0.1094970703125,
0.272705078125,
-0.76171875,
0.06378173828125,
0.4423828125,
-0.24658203125,
0.360107421875,
-0.0304107666015625,
0.6572265625,
-0.492919921875,
0.43701171875,
0.462158203125,
-0.363037109375,
-0.515625,
-0.87060546875,
-0.364990234375,
-0.07293701171875,
-0.0257110595703125,
0.95166015625,
-0.377685546875,
0.23583984375,
0.4990234375,
-0.2203369140625,
0.3232421875,
-0.437255859375,
0.10968017578125,
0.1761474609375,
-0.34912109375,
-0.7509765625,
-0.1375732421875,
0.1273193359375,
0.07244873046875,
0.62451171875,
-0.51611328125,
0.1572265625,
0.06829833984375,
0.158935546875,
-0.41064453125,
-0.42724609375,
-0.376220703125,
-1.2001953125,
-0.64404296875,
-0.69189453125,
-0.83349609375,
-0.37744140625,
0.57763671875,
0.0244598388671875,
-0.54345703125,
0.00470733642578125,
0.440185546875,
-0.64892578125,
0.8642578125,
-0.5419921875,
0.324951171875,
-0.45849609375,
-0.52685546875,
-0.6923828125,
0.1029052734375,
-0.4072265625,
-0.407958984375,
-0.044403076171875,
0.63818359375,
-0.23193359375,
0.3642578125,
-0.1082763671875,
0.479248046875,
-0.1630859375,
-0.81103515625,
-0.1524658203125,
0.02630615234375,
-0.31591796875,
1.1142578125,
0.91015625,
0.38330078125,
0.135986328125,
-0.5322265625,
-0.43310546875,
-0.12744140625,
0.6298828125,
0.849609375,
-0.0037593841552734375,
-0.2646484375,
-0.128662109375,
0.220947265625,
-1.0224609375,
0.321533203125,
-0.1329345703125,
0.09722900390625,
0.2244873046875,
-0.321044921875,
0.08685302734375,
1.0166015625,
-0.49169921875,
0.305908203125,
0.1884765625,
0.2298583984375,
0.16015625,
0.076416015625,
0.2310791015625,
0.34130859375,
0.018402099609375,
-0.3515625,
-0.056640625,
0.49072265625,
-0.003810882568359375,
0.410400390625,
-0.2293701171875,
-1.0380859375,
-0.81787109375,
-0.32568359375,
-0.2529296875,
0.263916015625,
0.2286376953125,
-0.440185546875,
-0.133544921875,
0.103271484375,
-0.393798828125,
-0.14794921875,
-1.1484375,
-1.2119140625,
0.73828125,
-0.2474365234375,
-0.94482421875,
-0.2568359375,
-0.394775390625,
0.034820556640625,
-0.06915283203125,
0.484375,
-0.235107421875,
0.474853515625,
-0.03582763671875,
0.5283203125,
-0.1846923828125,
0.12359619140625,
0.2005615234375,
0.8271484375,
-0.83251953125,
-0.62939453125,
0.320068359375,
1.033203125,
0.058441162109375,
-0.388427734375,
-0.357666015625,
0.32666015625,
-0.04998779296875,
0.03118896484375,
-0.225830078125,
0.12274169921875,
-0.08221435546875,
0.495361328125,
-0.79638671875,
-0.228759765625,
-0.1715087890625,
0.50146484375,
-0.042724609375,
-0.546875,
-0.7978515625,
0.89599609375,
0.703125,
-0.30126953125,
0.662109375,
0.061431884765625,
0.30810546875,
-0.1671142578125,
-0.07672119140625,
-0.247802734375,
0.6123046875,
0.50390625,
0.59521484375,
-0.53271484375,
0.316162109375,
0.69140625,
0.5205078125,
-0.04290771484375,
0.369140625,
-0.1446533203125,
0.065673828125,
0.0228424072265625,
-0.5166015625,
-0.498779296875,
0.076416015625,
-0.94775390625,
0.483154296875,
-0.6640625,
0.11285400390625,
-0.473876953125,
-0.744140625,
0.771484375,
-0.239013671875,
-0.0703125,
0.304931640625,
-0.58447265625,
0.27734375,
0.837890625,
-0.1552734375,
-0.36767578125,
0.61474609375,
0.93212890625,
0.7626953125,
0.79150390625,
0.30419921875,
0.4658203125,
-0.7216796875,
0.1561279296875,
0.14599609375,
-0.058502197265625,
-0.364990234375,
-0.80322265625,
-0.90380859375,
0.3466796875,
-0.303955078125,
-0.1839599609375,
0.336669921875,
-0.751953125,
0.205322265625,
0.0226898193359375,
0.77294921875,
-0.320556640625,
0.1629638671875,
0.302978515625,
-0.256591796875,
-0.90966796875,
1.0595703125,
-0.2156982421875,
0.422607421875,
-0.035797119140625,
1.025390625,
0.1546630859375,
1.4306640625,
0.52099609375,
-0.50634765625,
0.129150390625,
0.57958984375,
-0.3759765625,
-0.79443359375,
-0.59814453125,
-0.3662109375,
-0.2117919921875,
-0.80419921875,
-0.2332763671875,
-0.0401611328125,
0.98974609375,
-0.1556396484375,
-0.99609375,
-0.24560546875,
0.162109375,
-1.0830078125,
0.5625,
0.11553955078125,
0.0584716796875,
0.30908203125,
0.047027587890625,
-0.152587890625,
-1.0654296875,
0.223388671875,
-0.78173828125,
0.306884765625,
-0.93603515625,
-0.0892333984375,
-0.8310546875,
-0.7587890625,
0.134033203125,
-0.3818359375,
-0.328369140625,
-0.796875,
0.4453125,
0.8154296875,
0.479736328125,
-0.072509765625,
-0.31005859375,
0.1788330078125,
1.2255859375,
0.74658203125,
0.0579833984375,
0.83984375,
0.187744140625,
-0.334716796875,
-0.1102294921875,
-0.069091796875,
0.59619140625,
-0.39990234375,
0.02105712890625,
-0.4091796875,
0.19873046875,
-1.044921875,
-1.3916015625,
0.29345703125,
0.85693359375,
0.1903076171875,
-0.287353515625,
-1.10546875,
-0.44482421875,
-0.37451171875,
0.0736083984375,
-0.8115234375,
0.72802734375,
-0.1051025390625,
-0.048583984375,
-0.55078125,
-0.982421875,
4.2109375,
0.81982421875,
1.0029296875,
0.0640869140625,
0.3828125,
0.66015625,
0.29296875,
-0.412109375,
-0.046295166015625,
-0.391357421875,
0.59912109375,
-0.397705078125,
0.012451171875,
0.6201171875,
0.376708984375,
0.6494140625,
-0.44384765625,
-0.00917816162109375,
0.2220458984375,
-0.736328125,
-0.92919921875,
0.320068359375,
0.017486572265625,
0.449951171875,
-0.1529541015625,
0.431640625,
0.638671875,
-0.64111328125,
-0.261962890625,
-0.6884765625,
0.410400390625,
-0.2093505859375,
0.93359375,
0.337890625,
0.313720703125,
0.345703125,
0.020782470703125,
-0.0751953125,
-0.364990234375,
0.299560546875,
-0.08807373046875,
-0.00998687744140625,
0.77197265625,
-0.595703125,
-0.0753173828125,
0.84033203125,
-0.62109375,
0.56298828125,
0.50390625,
-0.9482421875,
0.8662109375,
-0.401123046875,
0.53759765625,
-0.828125,
-0.420654296875,
0.06524658203125,
0.17041015625,
0.0479736328125,
-0.1981201171875,
-0.0057830810546875,
0.34521484375,
0.75390625,
0.009307861328125,
0.900390625,
-1.1025390625,
0.1943359375,
0.181640625,
0.295166015625,
-0.5634765625,
0.07403564453125,
-0.4169921875,
-0.45458984375,
-0.292724609375,
-0.54833984375,
0.335205078125,
0.681640625,
-0.238525390625,
0.642578125,
0.85400390625,
-0.52099609375,
0.167236328125,
-0.2242431640625,
-0.215087890625,
-0.8779296875,
0.677734375,
1.3955078125,
-0.72900390625,
-0.155029296875,
-0.2435302734375,
0.51708984375,
0.58837890625,
0.990234375,
0.0858154296875,
-0.689453125,
-0.24853515625
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
You are given a string s of length n consisting only of lowercase Latin letters.
A substring of a string is a contiguous subsequence of that string. So, string "forces" is substring of string "codeforces", but string "coder" is not.
Your task is to calculate the number of ways to remove exactly one substring from this string in such a way that all remaining characters are equal (the number of distinct characters either zero or one).
It is guaranteed that there is at least two different characters in s.
Note that you can remove the whole string and it is correct. Also note that you should remove at least one character.
Since the answer can be rather large (not very large though) print it modulo 998244353.
If you are Python programmer, consider using PyPy instead of Python when you submit your code.
Input
The first line of the input contains one integer n (2 ≤ n ≤ 2 ⋅ 10^5) — the length of the string s.
The second line of the input contains the string s of length n consisting only of lowercase Latin letters.
It is guaranteed that there is at least two different characters in s.
Output
Print one integer — the number of ways modulo 998244353 to remove exactly one substring from s in such way that all remaining characters are equal.
Examples
Input
4
abaa
Output
6
Input
7
aacdeee
Output
6
Input
2
az
Output
3
Note
Let s[l; r] be the substring of s from the position l to the position r inclusive.
Then in the first example you can remove the following substrings:
* s[1; 2];
* s[1; 3];
* s[1; 4];
* s[2; 2];
* s[2; 3];
* s[2; 4].
In the second example you can remove the following substrings:
* s[1; 4];
* s[1; 5];
* s[1; 6];
* s[1; 7];
* s[2; 7];
* s[3; 7].
In the third example you can remove the following substrings:
* s[1; 1];
* s[1; 2];
* s[2; 2].
Submitted Solution:
```
n = int(input())
s = input().strip()
head = s[0]
cnt1 = 1
tmp = 0
for i in range(1,n//2):
if s[i] == head:
cnt1 += 1
else:
tmp = i-1
break
tail = s[n-1]
cnt2 = 1
for i in range(n-2,tmp,-1):
if s[i] == tail:
cnt2 += 1
else:
break
if head != tail:
print(cnt1+cnt2+1)
else:
print((cnt1+1)*(cnt2+1))
```
No
| 10,844 | [
0.21484375,
0.270263671875,
0.139892578125,
0.261474609375,
-0.55615234375,
-0.3779296875,
-0.1878662109375,
-0.2113037109375,
0.0882568359375,
0.8232421875,
0.68994140625,
-0.281005859375,
-0.046600341796875,
-1.00390625,
-0.36376953125,
0.2296142578125,
-0.50390625,
-0.70703125,
-0.1749267578125,
-0.0626220703125,
0.11700439453125,
-0.251220703125,
-1.0458984375,
-0.324951171875,
-0.4599609375,
1.1025390625,
0.5908203125,
0.007389068603515625,
1.14453125,
1.1064453125,
-0.4638671875,
-0.775390625,
0.4931640625,
-1.03515625,
-0.2413330078125,
-0.81787109375,
0.9189453125,
-0.74365234375,
-0.1002197265625,
-0.59130859375,
0.1632080078125,
-0.3623046875,
0.6630859375,
-0.7451171875,
-1.275390625,
-0.1258544921875,
-0.07342529296875,
0.0216064453125,
-0.50927734375,
0.00566864013671875,
0.072998046875,
-0.1641845703125,
0.61181640625,
-0.3466796875,
0.3779296875,
0.4248046875,
0.11151123046875,
-0.04736328125,
-0.65380859375,
0.379150390625,
-0.126953125,
0.29541015625,
-0.142578125,
-0.60986328125,
-0.318359375,
0.33251953125,
-0.2479248046875,
0.080810546875,
0.2247314453125,
-0.513671875,
0.134765625,
-0.007144927978515625,
-0.5654296875,
-0.40966796875,
-0.39990234375,
0.09149169921875,
-0.05035400390625,
-0.0667724609375,
-0.8154296875,
0.9140625,
-0.2449951171875,
1.1015625,
0.58349609375,
0.5068359375,
-0.58740234375,
-0.40234375,
0.227294921875,
0.1270751953125,
0.2476806640625,
-0.223876953125,
-0.13671875,
0.55322265625,
-0.84814453125,
-0.137939453125,
0.174560546875,
0.421630859375,
0.1080322265625,
0.349853515625,
0.2423095703125,
0.045135498046875,
0.99951171875,
0.94189453125,
-0.5458984375,
1.27734375,
-0.405517578125,
-0.2529296875,
0.537109375,
0.00652313232421875,
-0.231689453125,
-0.143310546875,
-0.305908203125,
-0.46923828125,
0.6904296875,
0.492919921875,
-0.5068359375,
0.798828125,
-0.26416015625,
0.34619140625,
-0.4462890625,
0.1798095703125,
0.74658203125,
-0.035888671875,
0.42822265625,
-0.11419677734375,
-0.1361083984375,
-0.3173828125,
-0.362548828125,
0.974609375,
-0.37255859375,
0.1114501953125,
0.666015625,
-0.232177734375,
0.03564453125,
0.048095703125,
-0.179443359375,
0.841796875,
-0.1527099609375,
0.462646484375,
0.626953125,
-0.3515625,
0.84423828125,
0.2362060546875,
-0.054473876953125,
1.421875,
0.240966796875,
-0.11376953125,
0.50634765625,
0.340087890625,
-0.6064453125,
0.2227783203125,
-1.154296875,
0.7001953125,
0.2059326171875,
0.1492919921875,
-0.1531982421875,
0.0180511474609375,
-0.34765625,
0.5908203125,
0.2376708984375,
0.057373046875,
-0.34765625,
0.302490234375,
-0.284423828125,
0.86328125,
-0.327880859375,
0.55908203125,
-0.376220703125,
-0.40087890625,
-0.12469482421875,
-0.11688232421875,
0.36181640625,
-0.11590576171875,
-0.1953125,
0.8427734375,
0.8046875,
0.90087890625,
0.611328125,
-0.259765625,
0.29736328125,
0.1343994140625,
-0.425048828125,
0.39892578125,
0.38671875,
0.73681640625,
0.331298828125,
0.360595703125,
0.285400390625,
-0.308837890625,
-0.77783203125,
-0.509765625,
0.5322265625,
0.68505859375,
-0.467041015625,
0.77783203125,
0.2469482421875,
-0.0144805908203125,
-0.8466796875,
0.083740234375,
-0.258544921875,
-1.109375,
-0.411376953125,
0.681640625,
-0.1767578125,
0.349853515625,
-0.9951171875,
-0.347412109375,
0.69287109375,
1.1826171875,
-0.255615234375,
0.0175018310546875,
0.54736328125,
-0.00576019287109375,
-0.287353515625,
0.33740234375,
-0.09454345703125,
-0.09661865234375,
-0.486328125,
0.50146484375,
-0.08599853515625,
0.06024169921875,
0.100830078125,
0.7099609375,
0.2435302734375,
0.55615234375,
-0.40771484375,
-0.6123046875,
0.1788330078125,
1.4365234375,
0.11383056640625,
0.47802734375,
0.55322265625,
1.1552734375,
0.72607421875,
0.65234375,
0.466796875,
0.1558837890625,
0.78076171875,
1.2138671875,
-0.1312255859375,
0.2685546875,
-0.11285400390625,
0.515625,
0.494873046875,
0.58935546875,
0.26416015625,
0.3408203125,
-0.1505126953125,
-0.0928955078125,
-0.72509765625,
0.30029296875,
-0.33544921875,
0.50927734375,
0.1668701171875,
0.748046875,
-0.4912109375,
-0.315673828125,
0.1829833984375,
0.64794921875,
-1.2373046875,
-0.250732421875,
0.21875,
-0.052642822265625,
0.282470703125,
0.10406494140625,
0.498046875,
0.0682373046875,
0.70166015625,
0.238525390625,
-0.17236328125,
-0.72314453125,
-0.77294921875,
-1.01953125,
-0.966796875,
-0.51123046875,
-0.8369140625,
-0.08062744140625,
-0.16796875,
-0.8544921875,
0.372802734375,
-0.41943359375,
-0.270263671875,
0.42431640625,
-0.583984375,
0.51611328125,
-0.39306640625,
0.5361328125,
-0.35986328125,
0.29833984375,
0.1826171875,
1.1572265625,
-0.6103515625,
-0.2169189453125,
-0.54736328125,
-0.400146484375,
0.1553955078125,
0.1761474609375,
0.435302734375,
-0.1583251953125,
-0.623046875,
-0.8984375,
-0.2435302734375,
-0.32373046875,
-0.533203125,
0.060394287109375,
-0.67431640625,
0.77001953125,
0.55322265625,
-0.77490234375,
0.57373046875,
1.1982421875,
-0.82470703125,
0.55322265625,
0.264404296875,
0.0772705078125,
-0.71484375,
1.267578125,
0.46337890625,
0.53076171875,
-0.65869140625,
-0.79541015625,
-0.336181640625,
0.1314697265625,
0.264892578125,
-0.4501953125,
-0.485595703125,
0.443115234375,
-0.2213134765625,
-0.94580078125,
0.9306640625,
-1.4052734375,
-0.36669921875,
-0.5703125,
-0.396240234375,
0.54052734375,
0.75927734375,
0.19580078125,
-0.0738525390625,
-0.4619140625,
-0.26416015625,
0.60302734375,
0.2454833984375,
-0.9638671875,
-0.27685546875,
0.544921875,
-0.2069091796875,
0.00664520263671875,
0.057037353515625,
-0.51611328125,
0.00010913610458374023,
-0.2138671875,
0.109130859375,
1.212890625,
0.1455078125,
0.67236328125,
0.437744140625,
0.869140625,
-0.8134765625,
-0.261962890625,
-0.0088348388671875,
1.0478515625,
0.5771484375,
0.52490234375,
0.546875,
-0.1407470703125,
-0.78173828125,
-0.80615234375,
0.0867919921875,
0.040771484375,
0.486083984375,
-0.52783203125,
0.49658203125,
-0.074462890625,
-0.681640625,
0.6328125,
-0.65478515625,
0.1436767578125,
1.2802734375,
-0.274658203125,
0.68212890625,
-0.58740234375,
0.34814453125,
0.06756591796875,
0.044952392578125,
0.50830078125,
0.46044921875,
0.72265625,
-0.378662109375,
-0.6943359375,
-0.60546875,
-0.1134033203125,
0.0231475830078125,
-0.716796875,
-0.004276275634765625,
-0.22607421875,
-0.16943359375,
-0.705078125,
0.45654296875,
0.66259765625,
0.54931640625,
0.3603515625,
0.421630859375,
-0.0266265869140625,
0.181884765625,
0.69775390625,
-0.53125,
-0.08404541015625,
-0.439208984375,
0.77783203125,
0.273681640625,
-0.26611328125,
-0.284423828125,
-0.58984375,
-0.0011415481567382812,
0.443115234375,
0.3974609375,
-0.146484375,
-1.1552734375,
0.349365234375,
-0.046051025390625,
0.7822265625,
-0.7900390625,
0.1090087890625,
-0.48876953125,
0.57421875,
0.222412109375,
-1.0234375,
0.1221923828125,
-1.134765625,
0.669921875,
0.55517578125,
-0.09619140625,
-0.74755859375,
-0.09814453125,
-0.80908203125,
-0.79150390625,
0.358154296875,
0.9755859375,
-0.06494140625,
0.0255279541015625,
-1.3271484375,
0.283935546875,
0.384521484375,
-0.6083984375,
0.089111328125,
-0.077880859375,
0.361083984375,
0.0130157470703125,
0.6962890625,
-0.398193359375,
-0.51708984375,
-0.0265655517578125,
-1.03515625,
0.81787109375,
-0.560546875,
0.5869140625,
0.08062744140625,
-0.153076171875,
0.180908203125,
0.66015625,
-0.006847381591796875,
0.07879638671875,
-0.1845703125,
0.05718994140625,
-1.1826171875,
-1.197265625,
0.5576171875,
-0.09722900390625,
-0.474365234375,
0.849609375,
-0.1702880859375,
-0.304931640625,
0.0036258697509765625,
0.57568359375,
-0.42626953125,
0.2890625,
-0.478515625,
0.51708984375,
-0.59130859375,
-0.87109375,
-0.269287109375,
-0.568359375,
0.9541015625,
0.1558837890625,
-0.845703125,
-0.267333984375,
-0.8486328125,
-0.43115234375,
-0.027099609375,
-0.59423828125,
0.1978759765625,
0.08392333984375,
-0.32470703125,
-0.272216796875,
-0.361083984375,
-0.1312255859375,
-0.30908203125,
-0.43359375,
-0.218994140625,
0.331298828125,
0.408935546875,
1.0078125,
0.135009765625,
-0.420166015625,
0.0195465087890625,
-0.1422119140625,
-0.03948974609375,
-0.382080078125,
-0.39599609375,
-0.0227203369140625,
-0.304931640625,
-0.62841796875,
0.457763671875,
-0.007122039794921875,
0.66943359375,
0.60107421875,
0.0124359130859375,
0.38330078125,
0.26171875,
-0.865234375,
1.1845703125,
-0.037841796875,
-1.2998046875,
-0.6669921875,
0.154296875,
0.54736328125,
0.56005859375,
0.165771484375,
-0.86474609375,
-0.60205078125,
-1.0615234375,
0.52978515625,
-0.65869140625,
-0.09246826171875,
-0.97412109375,
-0.59033203125,
-0.57373046875,
0.76953125,
-0.270263671875,
-0.7490234375,
0.1810302734375,
-1.1953125,
0.251953125,
-0.89501953125,
-0.236572265625,
-0.452880859375,
-0.498779296875,
-0.45068359375,
1.32421875,
0.377685546875,
0.392333984375,
-0.1763916015625,
-0.056732177734375,
0.43212890625,
-0.1346435546875,
-0.73046875,
-0.364501953125,
-0.07635498046875,
-0.250244140625,
-0.3603515625,
-0.25439453125,
-0.7880859375,
0.8701171875,
-0.72412109375,
0.466796875,
-0.199462890625,
-0.262451171875,
0.175048828125,
-0.54638671875,
1.2021484375,
-0.568359375,
0.1119384765625,
-0.35009765625,
0.587890625,
0.59228515625,
-0.1717529296875,
-0.004993438720703125,
-0.2474365234375,
-0.60400390625,
-1.3515625,
0.454345703125,
-0.412109375,
0.1583251953125,
-0.7080078125,
0.0966796875,
1.34375,
-0.81787109375,
0.43505859375,
0.98291015625,
0.276123046875,
0.08953857421875,
-0.7119140625,
0.59228515625,
0.6533203125,
-0.5126953125,
0.1790771484375,
0.14453125,
-0.97802734375,
-0.059417724609375,
-0.342041015625,
-0.8818359375,
-0.888671875,
0.34521484375,
1.4033203125,
-0.4521484375,
0.794921875,
-0.2423095703125,
-1.0849609375,
-0.457275390625,
0.6357421875,
0.312744140625,
0.630859375,
1.24609375,
-0.031646728515625,
-0.1578369140625,
0.50341796875,
-0.2266845703125,
-0.265380859375,
-0.38916015625,
1.384765625,
-0.5625,
-0.322509765625,
0.9111328125,
0.88330078125,
-1.423828125,
-0.873046875,
0.053009033203125,
0.364501953125,
-0.267578125,
-0.9326171875,
0.1094970703125,
0.272705078125,
-0.76171875,
0.06378173828125,
0.4423828125,
-0.24658203125,
0.360107421875,
-0.0304107666015625,
0.6572265625,
-0.492919921875,
0.43701171875,
0.462158203125,
-0.363037109375,
-0.515625,
-0.87060546875,
-0.364990234375,
-0.07293701171875,
-0.0257110595703125,
0.95166015625,
-0.377685546875,
0.23583984375,
0.4990234375,
-0.2203369140625,
0.3232421875,
-0.437255859375,
0.10968017578125,
0.1761474609375,
-0.34912109375,
-0.7509765625,
-0.1375732421875,
0.1273193359375,
0.07244873046875,
0.62451171875,
-0.51611328125,
0.1572265625,
0.06829833984375,
0.158935546875,
-0.41064453125,
-0.42724609375,
-0.376220703125,
-1.2001953125,
-0.64404296875,
-0.69189453125,
-0.83349609375,
-0.37744140625,
0.57763671875,
0.0244598388671875,
-0.54345703125,
0.00470733642578125,
0.440185546875,
-0.64892578125,
0.8642578125,
-0.5419921875,
0.324951171875,
-0.45849609375,
-0.52685546875,
-0.6923828125,
0.1029052734375,
-0.4072265625,
-0.407958984375,
-0.044403076171875,
0.63818359375,
-0.23193359375,
0.3642578125,
-0.1082763671875,
0.479248046875,
-0.1630859375,
-0.81103515625,
-0.1524658203125,
0.02630615234375,
-0.31591796875,
1.1142578125,
0.91015625,
0.38330078125,
0.135986328125,
-0.5322265625,
-0.43310546875,
-0.12744140625,
0.6298828125,
0.849609375,
-0.0037593841552734375,
-0.2646484375,
-0.128662109375,
0.220947265625,
-1.0224609375,
0.321533203125,
-0.1329345703125,
0.09722900390625,
0.2244873046875,
-0.321044921875,
0.08685302734375,
1.0166015625,
-0.49169921875,
0.305908203125,
0.1884765625,
0.2298583984375,
0.16015625,
0.076416015625,
0.2310791015625,
0.34130859375,
0.018402099609375,
-0.3515625,
-0.056640625,
0.49072265625,
-0.003810882568359375,
0.410400390625,
-0.2293701171875,
-1.0380859375,
-0.81787109375,
-0.32568359375,
-0.2529296875,
0.263916015625,
0.2286376953125,
-0.440185546875,
-0.133544921875,
0.103271484375,
-0.393798828125,
-0.14794921875,
-1.1484375,
-1.2119140625,
0.73828125,
-0.2474365234375,
-0.94482421875,
-0.2568359375,
-0.394775390625,
0.034820556640625,
-0.06915283203125,
0.484375,
-0.235107421875,
0.474853515625,
-0.03582763671875,
0.5283203125,
-0.1846923828125,
0.12359619140625,
0.2005615234375,
0.8271484375,
-0.83251953125,
-0.62939453125,
0.320068359375,
1.033203125,
0.058441162109375,
-0.388427734375,
-0.357666015625,
0.32666015625,
-0.04998779296875,
0.03118896484375,
-0.225830078125,
0.12274169921875,
-0.08221435546875,
0.495361328125,
-0.79638671875,
-0.228759765625,
-0.1715087890625,
0.50146484375,
-0.042724609375,
-0.546875,
-0.7978515625,
0.89599609375,
0.703125,
-0.30126953125,
0.662109375,
0.061431884765625,
0.30810546875,
-0.1671142578125,
-0.07672119140625,
-0.247802734375,
0.6123046875,
0.50390625,
0.59521484375,
-0.53271484375,
0.316162109375,
0.69140625,
0.5205078125,
-0.04290771484375,
0.369140625,
-0.1446533203125,
0.065673828125,
0.0228424072265625,
-0.5166015625,
-0.498779296875,
0.076416015625,
-0.94775390625,
0.483154296875,
-0.6640625,
0.11285400390625,
-0.473876953125,
-0.744140625,
0.771484375,
-0.239013671875,
-0.0703125,
0.304931640625,
-0.58447265625,
0.27734375,
0.837890625,
-0.1552734375,
-0.36767578125,
0.61474609375,
0.93212890625,
0.7626953125,
0.79150390625,
0.30419921875,
0.4658203125,
-0.7216796875,
0.1561279296875,
0.14599609375,
-0.058502197265625,
-0.364990234375,
-0.80322265625,
-0.90380859375,
0.3466796875,
-0.303955078125,
-0.1839599609375,
0.336669921875,
-0.751953125,
0.205322265625,
0.0226898193359375,
0.77294921875,
-0.320556640625,
0.1629638671875,
0.302978515625,
-0.256591796875,
-0.90966796875,
1.0595703125,
-0.2156982421875,
0.422607421875,
-0.035797119140625,
1.025390625,
0.1546630859375,
1.4306640625,
0.52099609375,
-0.50634765625,
0.129150390625,
0.57958984375,
-0.3759765625,
-0.79443359375,
-0.59814453125,
-0.3662109375,
-0.2117919921875,
-0.80419921875,
-0.2332763671875,
-0.0401611328125,
0.98974609375,
-0.1556396484375,
-0.99609375,
-0.24560546875,
0.162109375,
-1.0830078125,
0.5625,
0.11553955078125,
0.0584716796875,
0.30908203125,
0.047027587890625,
-0.152587890625,
-1.0654296875,
0.223388671875,
-0.78173828125,
0.306884765625,
-0.93603515625,
-0.0892333984375,
-0.8310546875,
-0.7587890625,
0.134033203125,
-0.3818359375,
-0.328369140625,
-0.796875,
0.4453125,
0.8154296875,
0.479736328125,
-0.072509765625,
-0.31005859375,
0.1788330078125,
1.2255859375,
0.74658203125,
0.0579833984375,
0.83984375,
0.187744140625,
-0.334716796875,
-0.1102294921875,
-0.069091796875,
0.59619140625,
-0.39990234375,
0.02105712890625,
-0.4091796875,
0.19873046875,
-1.044921875,
-1.3916015625,
0.29345703125,
0.85693359375,
0.1903076171875,
-0.287353515625,
-1.10546875,
-0.44482421875,
-0.37451171875,
0.0736083984375,
-0.8115234375,
0.72802734375,
-0.1051025390625,
-0.048583984375,
-0.55078125,
-0.982421875,
4.2109375,
0.81982421875,
1.0029296875,
0.0640869140625,
0.3828125,
0.66015625,
0.29296875,
-0.412109375,
-0.046295166015625,
-0.391357421875,
0.59912109375,
-0.397705078125,
0.012451171875,
0.6201171875,
0.376708984375,
0.6494140625,
-0.44384765625,
-0.00917816162109375,
0.2220458984375,
-0.736328125,
-0.92919921875,
0.320068359375,
0.017486572265625,
0.449951171875,
-0.1529541015625,
0.431640625,
0.638671875,
-0.64111328125,
-0.261962890625,
-0.6884765625,
0.410400390625,
-0.2093505859375,
0.93359375,
0.337890625,
0.313720703125,
0.345703125,
0.020782470703125,
-0.0751953125,
-0.364990234375,
0.299560546875,
-0.08807373046875,
-0.00998687744140625,
0.77197265625,
-0.595703125,
-0.0753173828125,
0.84033203125,
-0.62109375,
0.56298828125,
0.50390625,
-0.9482421875,
0.8662109375,
-0.401123046875,
0.53759765625,
-0.828125,
-0.420654296875,
0.06524658203125,
0.17041015625,
0.0479736328125,
-0.1981201171875,
-0.0057830810546875,
0.34521484375,
0.75390625,
0.009307861328125,
0.900390625,
-1.1025390625,
0.1943359375,
0.181640625,
0.295166015625,
-0.5634765625,
0.07403564453125,
-0.4169921875,
-0.45458984375,
-0.292724609375,
-0.54833984375,
0.335205078125,
0.681640625,
-0.238525390625,
0.642578125,
0.85400390625,
-0.52099609375,
0.167236328125,
-0.2242431640625,
-0.215087890625,
-0.8779296875,
0.677734375,
1.3955078125,
-0.72900390625,
-0.155029296875,
-0.2435302734375,
0.51708984375,
0.58837890625,
0.990234375,
0.0858154296875,
-0.689453125,
-0.24853515625
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
You are given a string s of length n consisting only of lowercase Latin letters.
A substring of a string is a contiguous subsequence of that string. So, string "forces" is substring of string "codeforces", but string "coder" is not.
Your task is to calculate the number of ways to remove exactly one substring from this string in such a way that all remaining characters are equal (the number of distinct characters either zero or one).
It is guaranteed that there is at least two different characters in s.
Note that you can remove the whole string and it is correct. Also note that you should remove at least one character.
Since the answer can be rather large (not very large though) print it modulo 998244353.
If you are Python programmer, consider using PyPy instead of Python when you submit your code.
Input
The first line of the input contains one integer n (2 ≤ n ≤ 2 ⋅ 10^5) — the length of the string s.
The second line of the input contains the string s of length n consisting only of lowercase Latin letters.
It is guaranteed that there is at least two different characters in s.
Output
Print one integer — the number of ways modulo 998244353 to remove exactly one substring from s in such way that all remaining characters are equal.
Examples
Input
4
abaa
Output
6
Input
7
aacdeee
Output
6
Input
2
az
Output
3
Note
Let s[l; r] be the substring of s from the position l to the position r inclusive.
Then in the first example you can remove the following substrings:
* s[1; 2];
* s[1; 3];
* s[1; 4];
* s[2; 2];
* s[2; 3];
* s[2; 4].
In the second example you can remove the following substrings:
* s[1; 4];
* s[1; 5];
* s[1; 6];
* s[1; 7];
* s[2; 7];
* s[3; 7].
In the third example you can remove the following substrings:
* s[1; 1];
* s[1; 2];
* s[2; 2].
Submitted Solution:
```
import sys
import math
data = sys.stdin.readlines()
n = data[0]
s = data[1]
data = list(s[:len(s) - 1])
diferente1 = -1
diferente2 = -1
for i in range(len(s)):
if s[i] != s[0] and diferente1 == -1:
diferente1 = i
if s[-(i+1)] != s[-1] and diferente2 == -1:
diferente2 = i
if diferente1 != -1 and diferente2 != -1:
break
if s[0] == s[-1]:
#print((diferente1+1)*(diferente2+1))
print("Hola")
else:
#print(diferente1+diferente2+1)
print(s[-3])
```
No
| 10,845 | [
0.21484375,
0.270263671875,
0.139892578125,
0.261474609375,
-0.55615234375,
-0.3779296875,
-0.1878662109375,
-0.2113037109375,
0.0882568359375,
0.8232421875,
0.68994140625,
-0.281005859375,
-0.046600341796875,
-1.00390625,
-0.36376953125,
0.2296142578125,
-0.50390625,
-0.70703125,
-0.1749267578125,
-0.0626220703125,
0.11700439453125,
-0.251220703125,
-1.0458984375,
-0.324951171875,
-0.4599609375,
1.1025390625,
0.5908203125,
0.007389068603515625,
1.14453125,
1.1064453125,
-0.4638671875,
-0.775390625,
0.4931640625,
-1.03515625,
-0.2413330078125,
-0.81787109375,
0.9189453125,
-0.74365234375,
-0.1002197265625,
-0.59130859375,
0.1632080078125,
-0.3623046875,
0.6630859375,
-0.7451171875,
-1.275390625,
-0.1258544921875,
-0.07342529296875,
0.0216064453125,
-0.50927734375,
0.00566864013671875,
0.072998046875,
-0.1641845703125,
0.61181640625,
-0.3466796875,
0.3779296875,
0.4248046875,
0.11151123046875,
-0.04736328125,
-0.65380859375,
0.379150390625,
-0.126953125,
0.29541015625,
-0.142578125,
-0.60986328125,
-0.318359375,
0.33251953125,
-0.2479248046875,
0.080810546875,
0.2247314453125,
-0.513671875,
0.134765625,
-0.007144927978515625,
-0.5654296875,
-0.40966796875,
-0.39990234375,
0.09149169921875,
-0.05035400390625,
-0.0667724609375,
-0.8154296875,
0.9140625,
-0.2449951171875,
1.1015625,
0.58349609375,
0.5068359375,
-0.58740234375,
-0.40234375,
0.227294921875,
0.1270751953125,
0.2476806640625,
-0.223876953125,
-0.13671875,
0.55322265625,
-0.84814453125,
-0.137939453125,
0.174560546875,
0.421630859375,
0.1080322265625,
0.349853515625,
0.2423095703125,
0.045135498046875,
0.99951171875,
0.94189453125,
-0.5458984375,
1.27734375,
-0.405517578125,
-0.2529296875,
0.537109375,
0.00652313232421875,
-0.231689453125,
-0.143310546875,
-0.305908203125,
-0.46923828125,
0.6904296875,
0.492919921875,
-0.5068359375,
0.798828125,
-0.26416015625,
0.34619140625,
-0.4462890625,
0.1798095703125,
0.74658203125,
-0.035888671875,
0.42822265625,
-0.11419677734375,
-0.1361083984375,
-0.3173828125,
-0.362548828125,
0.974609375,
-0.37255859375,
0.1114501953125,
0.666015625,
-0.232177734375,
0.03564453125,
0.048095703125,
-0.179443359375,
0.841796875,
-0.1527099609375,
0.462646484375,
0.626953125,
-0.3515625,
0.84423828125,
0.2362060546875,
-0.054473876953125,
1.421875,
0.240966796875,
-0.11376953125,
0.50634765625,
0.340087890625,
-0.6064453125,
0.2227783203125,
-1.154296875,
0.7001953125,
0.2059326171875,
0.1492919921875,
-0.1531982421875,
0.0180511474609375,
-0.34765625,
0.5908203125,
0.2376708984375,
0.057373046875,
-0.34765625,
0.302490234375,
-0.284423828125,
0.86328125,
-0.327880859375,
0.55908203125,
-0.376220703125,
-0.40087890625,
-0.12469482421875,
-0.11688232421875,
0.36181640625,
-0.11590576171875,
-0.1953125,
0.8427734375,
0.8046875,
0.90087890625,
0.611328125,
-0.259765625,
0.29736328125,
0.1343994140625,
-0.425048828125,
0.39892578125,
0.38671875,
0.73681640625,
0.331298828125,
0.360595703125,
0.285400390625,
-0.308837890625,
-0.77783203125,
-0.509765625,
0.5322265625,
0.68505859375,
-0.467041015625,
0.77783203125,
0.2469482421875,
-0.0144805908203125,
-0.8466796875,
0.083740234375,
-0.258544921875,
-1.109375,
-0.411376953125,
0.681640625,
-0.1767578125,
0.349853515625,
-0.9951171875,
-0.347412109375,
0.69287109375,
1.1826171875,
-0.255615234375,
0.0175018310546875,
0.54736328125,
-0.00576019287109375,
-0.287353515625,
0.33740234375,
-0.09454345703125,
-0.09661865234375,
-0.486328125,
0.50146484375,
-0.08599853515625,
0.06024169921875,
0.100830078125,
0.7099609375,
0.2435302734375,
0.55615234375,
-0.40771484375,
-0.6123046875,
0.1788330078125,
1.4365234375,
0.11383056640625,
0.47802734375,
0.55322265625,
1.1552734375,
0.72607421875,
0.65234375,
0.466796875,
0.1558837890625,
0.78076171875,
1.2138671875,
-0.1312255859375,
0.2685546875,
-0.11285400390625,
0.515625,
0.494873046875,
0.58935546875,
0.26416015625,
0.3408203125,
-0.1505126953125,
-0.0928955078125,
-0.72509765625,
0.30029296875,
-0.33544921875,
0.50927734375,
0.1668701171875,
0.748046875,
-0.4912109375,
-0.315673828125,
0.1829833984375,
0.64794921875,
-1.2373046875,
-0.250732421875,
0.21875,
-0.052642822265625,
0.282470703125,
0.10406494140625,
0.498046875,
0.0682373046875,
0.70166015625,
0.238525390625,
-0.17236328125,
-0.72314453125,
-0.77294921875,
-1.01953125,
-0.966796875,
-0.51123046875,
-0.8369140625,
-0.08062744140625,
-0.16796875,
-0.8544921875,
0.372802734375,
-0.41943359375,
-0.270263671875,
0.42431640625,
-0.583984375,
0.51611328125,
-0.39306640625,
0.5361328125,
-0.35986328125,
0.29833984375,
0.1826171875,
1.1572265625,
-0.6103515625,
-0.2169189453125,
-0.54736328125,
-0.400146484375,
0.1553955078125,
0.1761474609375,
0.435302734375,
-0.1583251953125,
-0.623046875,
-0.8984375,
-0.2435302734375,
-0.32373046875,
-0.533203125,
0.060394287109375,
-0.67431640625,
0.77001953125,
0.55322265625,
-0.77490234375,
0.57373046875,
1.1982421875,
-0.82470703125,
0.55322265625,
0.264404296875,
0.0772705078125,
-0.71484375,
1.267578125,
0.46337890625,
0.53076171875,
-0.65869140625,
-0.79541015625,
-0.336181640625,
0.1314697265625,
0.264892578125,
-0.4501953125,
-0.485595703125,
0.443115234375,
-0.2213134765625,
-0.94580078125,
0.9306640625,
-1.4052734375,
-0.36669921875,
-0.5703125,
-0.396240234375,
0.54052734375,
0.75927734375,
0.19580078125,
-0.0738525390625,
-0.4619140625,
-0.26416015625,
0.60302734375,
0.2454833984375,
-0.9638671875,
-0.27685546875,
0.544921875,
-0.2069091796875,
0.00664520263671875,
0.057037353515625,
-0.51611328125,
0.00010913610458374023,
-0.2138671875,
0.109130859375,
1.212890625,
0.1455078125,
0.67236328125,
0.437744140625,
0.869140625,
-0.8134765625,
-0.261962890625,
-0.0088348388671875,
1.0478515625,
0.5771484375,
0.52490234375,
0.546875,
-0.1407470703125,
-0.78173828125,
-0.80615234375,
0.0867919921875,
0.040771484375,
0.486083984375,
-0.52783203125,
0.49658203125,
-0.074462890625,
-0.681640625,
0.6328125,
-0.65478515625,
0.1436767578125,
1.2802734375,
-0.274658203125,
0.68212890625,
-0.58740234375,
0.34814453125,
0.06756591796875,
0.044952392578125,
0.50830078125,
0.46044921875,
0.72265625,
-0.378662109375,
-0.6943359375,
-0.60546875,
-0.1134033203125,
0.0231475830078125,
-0.716796875,
-0.004276275634765625,
-0.22607421875,
-0.16943359375,
-0.705078125,
0.45654296875,
0.66259765625,
0.54931640625,
0.3603515625,
0.421630859375,
-0.0266265869140625,
0.181884765625,
0.69775390625,
-0.53125,
-0.08404541015625,
-0.439208984375,
0.77783203125,
0.273681640625,
-0.26611328125,
-0.284423828125,
-0.58984375,
-0.0011415481567382812,
0.443115234375,
0.3974609375,
-0.146484375,
-1.1552734375,
0.349365234375,
-0.046051025390625,
0.7822265625,
-0.7900390625,
0.1090087890625,
-0.48876953125,
0.57421875,
0.222412109375,
-1.0234375,
0.1221923828125,
-1.134765625,
0.669921875,
0.55517578125,
-0.09619140625,
-0.74755859375,
-0.09814453125,
-0.80908203125,
-0.79150390625,
0.358154296875,
0.9755859375,
-0.06494140625,
0.0255279541015625,
-1.3271484375,
0.283935546875,
0.384521484375,
-0.6083984375,
0.089111328125,
-0.077880859375,
0.361083984375,
0.0130157470703125,
0.6962890625,
-0.398193359375,
-0.51708984375,
-0.0265655517578125,
-1.03515625,
0.81787109375,
-0.560546875,
0.5869140625,
0.08062744140625,
-0.153076171875,
0.180908203125,
0.66015625,
-0.006847381591796875,
0.07879638671875,
-0.1845703125,
0.05718994140625,
-1.1826171875,
-1.197265625,
0.5576171875,
-0.09722900390625,
-0.474365234375,
0.849609375,
-0.1702880859375,
-0.304931640625,
0.0036258697509765625,
0.57568359375,
-0.42626953125,
0.2890625,
-0.478515625,
0.51708984375,
-0.59130859375,
-0.87109375,
-0.269287109375,
-0.568359375,
0.9541015625,
0.1558837890625,
-0.845703125,
-0.267333984375,
-0.8486328125,
-0.43115234375,
-0.027099609375,
-0.59423828125,
0.1978759765625,
0.08392333984375,
-0.32470703125,
-0.272216796875,
-0.361083984375,
-0.1312255859375,
-0.30908203125,
-0.43359375,
-0.218994140625,
0.331298828125,
0.408935546875,
1.0078125,
0.135009765625,
-0.420166015625,
0.0195465087890625,
-0.1422119140625,
-0.03948974609375,
-0.382080078125,
-0.39599609375,
-0.0227203369140625,
-0.304931640625,
-0.62841796875,
0.457763671875,
-0.007122039794921875,
0.66943359375,
0.60107421875,
0.0124359130859375,
0.38330078125,
0.26171875,
-0.865234375,
1.1845703125,
-0.037841796875,
-1.2998046875,
-0.6669921875,
0.154296875,
0.54736328125,
0.56005859375,
0.165771484375,
-0.86474609375,
-0.60205078125,
-1.0615234375,
0.52978515625,
-0.65869140625,
-0.09246826171875,
-0.97412109375,
-0.59033203125,
-0.57373046875,
0.76953125,
-0.270263671875,
-0.7490234375,
0.1810302734375,
-1.1953125,
0.251953125,
-0.89501953125,
-0.236572265625,
-0.452880859375,
-0.498779296875,
-0.45068359375,
1.32421875,
0.377685546875,
0.392333984375,
-0.1763916015625,
-0.056732177734375,
0.43212890625,
-0.1346435546875,
-0.73046875,
-0.364501953125,
-0.07635498046875,
-0.250244140625,
-0.3603515625,
-0.25439453125,
-0.7880859375,
0.8701171875,
-0.72412109375,
0.466796875,
-0.199462890625,
-0.262451171875,
0.175048828125,
-0.54638671875,
1.2021484375,
-0.568359375,
0.1119384765625,
-0.35009765625,
0.587890625,
0.59228515625,
-0.1717529296875,
-0.004993438720703125,
-0.2474365234375,
-0.60400390625,
-1.3515625,
0.454345703125,
-0.412109375,
0.1583251953125,
-0.7080078125,
0.0966796875,
1.34375,
-0.81787109375,
0.43505859375,
0.98291015625,
0.276123046875,
0.08953857421875,
-0.7119140625,
0.59228515625,
0.6533203125,
-0.5126953125,
0.1790771484375,
0.14453125,
-0.97802734375,
-0.059417724609375,
-0.342041015625,
-0.8818359375,
-0.888671875,
0.34521484375,
1.4033203125,
-0.4521484375,
0.794921875,
-0.2423095703125,
-1.0849609375,
-0.457275390625,
0.6357421875,
0.312744140625,
0.630859375,
1.24609375,
-0.031646728515625,
-0.1578369140625,
0.50341796875,
-0.2266845703125,
-0.265380859375,
-0.38916015625,
1.384765625,
-0.5625,
-0.322509765625,
0.9111328125,
0.88330078125,
-1.423828125,
-0.873046875,
0.053009033203125,
0.364501953125,
-0.267578125,
-0.9326171875,
0.1094970703125,
0.272705078125,
-0.76171875,
0.06378173828125,
0.4423828125,
-0.24658203125,
0.360107421875,
-0.0304107666015625,
0.6572265625,
-0.492919921875,
0.43701171875,
0.462158203125,
-0.363037109375,
-0.515625,
-0.87060546875,
-0.364990234375,
-0.07293701171875,
-0.0257110595703125,
0.95166015625,
-0.377685546875,
0.23583984375,
0.4990234375,
-0.2203369140625,
0.3232421875,
-0.437255859375,
0.10968017578125,
0.1761474609375,
-0.34912109375,
-0.7509765625,
-0.1375732421875,
0.1273193359375,
0.07244873046875,
0.62451171875,
-0.51611328125,
0.1572265625,
0.06829833984375,
0.158935546875,
-0.41064453125,
-0.42724609375,
-0.376220703125,
-1.2001953125,
-0.64404296875,
-0.69189453125,
-0.83349609375,
-0.37744140625,
0.57763671875,
0.0244598388671875,
-0.54345703125,
0.00470733642578125,
0.440185546875,
-0.64892578125,
0.8642578125,
-0.5419921875,
0.324951171875,
-0.45849609375,
-0.52685546875,
-0.6923828125,
0.1029052734375,
-0.4072265625,
-0.407958984375,
-0.044403076171875,
0.63818359375,
-0.23193359375,
0.3642578125,
-0.1082763671875,
0.479248046875,
-0.1630859375,
-0.81103515625,
-0.1524658203125,
0.02630615234375,
-0.31591796875,
1.1142578125,
0.91015625,
0.38330078125,
0.135986328125,
-0.5322265625,
-0.43310546875,
-0.12744140625,
0.6298828125,
0.849609375,
-0.0037593841552734375,
-0.2646484375,
-0.128662109375,
0.220947265625,
-1.0224609375,
0.321533203125,
-0.1329345703125,
0.09722900390625,
0.2244873046875,
-0.321044921875,
0.08685302734375,
1.0166015625,
-0.49169921875,
0.305908203125,
0.1884765625,
0.2298583984375,
0.16015625,
0.076416015625,
0.2310791015625,
0.34130859375,
0.018402099609375,
-0.3515625,
-0.056640625,
0.49072265625,
-0.003810882568359375,
0.410400390625,
-0.2293701171875,
-1.0380859375,
-0.81787109375,
-0.32568359375,
-0.2529296875,
0.263916015625,
0.2286376953125,
-0.440185546875,
-0.133544921875,
0.103271484375,
-0.393798828125,
-0.14794921875,
-1.1484375,
-1.2119140625,
0.73828125,
-0.2474365234375,
-0.94482421875,
-0.2568359375,
-0.394775390625,
0.034820556640625,
-0.06915283203125,
0.484375,
-0.235107421875,
0.474853515625,
-0.03582763671875,
0.5283203125,
-0.1846923828125,
0.12359619140625,
0.2005615234375,
0.8271484375,
-0.83251953125,
-0.62939453125,
0.320068359375,
1.033203125,
0.058441162109375,
-0.388427734375,
-0.357666015625,
0.32666015625,
-0.04998779296875,
0.03118896484375,
-0.225830078125,
0.12274169921875,
-0.08221435546875,
0.495361328125,
-0.79638671875,
-0.228759765625,
-0.1715087890625,
0.50146484375,
-0.042724609375,
-0.546875,
-0.7978515625,
0.89599609375,
0.703125,
-0.30126953125,
0.662109375,
0.061431884765625,
0.30810546875,
-0.1671142578125,
-0.07672119140625,
-0.247802734375,
0.6123046875,
0.50390625,
0.59521484375,
-0.53271484375,
0.316162109375,
0.69140625,
0.5205078125,
-0.04290771484375,
0.369140625,
-0.1446533203125,
0.065673828125,
0.0228424072265625,
-0.5166015625,
-0.498779296875,
0.076416015625,
-0.94775390625,
0.483154296875,
-0.6640625,
0.11285400390625,
-0.473876953125,
-0.744140625,
0.771484375,
-0.239013671875,
-0.0703125,
0.304931640625,
-0.58447265625,
0.27734375,
0.837890625,
-0.1552734375,
-0.36767578125,
0.61474609375,
0.93212890625,
0.7626953125,
0.79150390625,
0.30419921875,
0.4658203125,
-0.7216796875,
0.1561279296875,
0.14599609375,
-0.058502197265625,
-0.364990234375,
-0.80322265625,
-0.90380859375,
0.3466796875,
-0.303955078125,
-0.1839599609375,
0.336669921875,
-0.751953125,
0.205322265625,
0.0226898193359375,
0.77294921875,
-0.320556640625,
0.1629638671875,
0.302978515625,
-0.256591796875,
-0.90966796875,
1.0595703125,
-0.2156982421875,
0.422607421875,
-0.035797119140625,
1.025390625,
0.1546630859375,
1.4306640625,
0.52099609375,
-0.50634765625,
0.129150390625,
0.57958984375,
-0.3759765625,
-0.79443359375,
-0.59814453125,
-0.3662109375,
-0.2117919921875,
-0.80419921875,
-0.2332763671875,
-0.0401611328125,
0.98974609375,
-0.1556396484375,
-0.99609375,
-0.24560546875,
0.162109375,
-1.0830078125,
0.5625,
0.11553955078125,
0.0584716796875,
0.30908203125,
0.047027587890625,
-0.152587890625,
-1.0654296875,
0.223388671875,
-0.78173828125,
0.306884765625,
-0.93603515625,
-0.0892333984375,
-0.8310546875,
-0.7587890625,
0.134033203125,
-0.3818359375,
-0.328369140625,
-0.796875,
0.4453125,
0.8154296875,
0.479736328125,
-0.072509765625,
-0.31005859375,
0.1788330078125,
1.2255859375,
0.74658203125,
0.0579833984375,
0.83984375,
0.187744140625,
-0.334716796875,
-0.1102294921875,
-0.069091796875,
0.59619140625,
-0.39990234375,
0.02105712890625,
-0.4091796875,
0.19873046875,
-1.044921875,
-1.3916015625,
0.29345703125,
0.85693359375,
0.1903076171875,
-0.287353515625,
-1.10546875,
-0.44482421875,
-0.37451171875,
0.0736083984375,
-0.8115234375,
0.72802734375,
-0.1051025390625,
-0.048583984375,
-0.55078125,
-0.982421875,
4.2109375,
0.81982421875,
1.0029296875,
0.0640869140625,
0.3828125,
0.66015625,
0.29296875,
-0.412109375,
-0.046295166015625,
-0.391357421875,
0.59912109375,
-0.397705078125,
0.012451171875,
0.6201171875,
0.376708984375,
0.6494140625,
-0.44384765625,
-0.00917816162109375,
0.2220458984375,
-0.736328125,
-0.92919921875,
0.320068359375,
0.017486572265625,
0.449951171875,
-0.1529541015625,
0.431640625,
0.638671875,
-0.64111328125,
-0.261962890625,
-0.6884765625,
0.410400390625,
-0.2093505859375,
0.93359375,
0.337890625,
0.313720703125,
0.345703125,
0.020782470703125,
-0.0751953125,
-0.364990234375,
0.299560546875,
-0.08807373046875,
-0.00998687744140625,
0.77197265625,
-0.595703125,
-0.0753173828125,
0.84033203125,
-0.62109375,
0.56298828125,
0.50390625,
-0.9482421875,
0.8662109375,
-0.401123046875,
0.53759765625,
-0.828125,
-0.420654296875,
0.06524658203125,
0.17041015625,
0.0479736328125,
-0.1981201171875,
-0.0057830810546875,
0.34521484375,
0.75390625,
0.009307861328125,
0.900390625,
-1.1025390625,
0.1943359375,
0.181640625,
0.295166015625,
-0.5634765625,
0.07403564453125,
-0.4169921875,
-0.45458984375,
-0.292724609375,
-0.54833984375,
0.335205078125,
0.681640625,
-0.238525390625,
0.642578125,
0.85400390625,
-0.52099609375,
0.167236328125,
-0.2242431640625,
-0.215087890625,
-0.8779296875,
0.677734375,
1.3955078125,
-0.72900390625,
-0.155029296875,
-0.2435302734375,
0.51708984375,
0.58837890625,
0.990234375,
0.0858154296875,
-0.689453125,
-0.24853515625
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
You are given a string s of length n consisting only of lowercase Latin letters.
A substring of a string is a contiguous subsequence of that string. So, string "forces" is substring of string "codeforces", but string "coder" is not.
Your task is to calculate the number of ways to remove exactly one substring from this string in such a way that all remaining characters are equal (the number of distinct characters either zero or one).
It is guaranteed that there is at least two different characters in s.
Note that you can remove the whole string and it is correct. Also note that you should remove at least one character.
Since the answer can be rather large (not very large though) print it modulo 998244353.
If you are Python programmer, consider using PyPy instead of Python when you submit your code.
Input
The first line of the input contains one integer n (2 ≤ n ≤ 2 ⋅ 10^5) — the length of the string s.
The second line of the input contains the string s of length n consisting only of lowercase Latin letters.
It is guaranteed that there is at least two different characters in s.
Output
Print one integer — the number of ways modulo 998244353 to remove exactly one substring from s in such way that all remaining characters are equal.
Examples
Input
4
abaa
Output
6
Input
7
aacdeee
Output
6
Input
2
az
Output
3
Note
Let s[l; r] be the substring of s from the position l to the position r inclusive.
Then in the first example you can remove the following substrings:
* s[1; 2];
* s[1; 3];
* s[1; 4];
* s[2; 2];
* s[2; 3];
* s[2; 4].
In the second example you can remove the following substrings:
* s[1; 4];
* s[1; 5];
* s[1; 6];
* s[1; 7];
* s[2; 7];
* s[3; 7].
In the third example you can remove the following substrings:
* s[1; 1];
* s[1; 2];
* s[2; 2].
Submitted Solution:
```
n = int(input())
arr = input()
mod = 998244353
left =0
right = 0
l = arr[0]
r = arr[-1]
for c in arr:
if l == c:
left+=1
else:break
if left!=n:
for c in arr[::-1]:
if r == c:
right+=1
else:break
ans = left+right+1
if left == n:
ans = n*(n+1)//2
else:
if left+right == n:
ans = left+right+1
else:
if l == r:
ans = left+(2*right)+1
else:
ans = left+right+1
print(ans%mod)
# print('Left:',left,'Right:',right,right+left)
```
No
| 10,846 | [
0.21484375,
0.270263671875,
0.139892578125,
0.261474609375,
-0.55615234375,
-0.3779296875,
-0.1878662109375,
-0.2113037109375,
0.0882568359375,
0.8232421875,
0.68994140625,
-0.281005859375,
-0.046600341796875,
-1.00390625,
-0.36376953125,
0.2296142578125,
-0.50390625,
-0.70703125,
-0.1749267578125,
-0.0626220703125,
0.11700439453125,
-0.251220703125,
-1.0458984375,
-0.324951171875,
-0.4599609375,
1.1025390625,
0.5908203125,
0.007389068603515625,
1.14453125,
1.1064453125,
-0.4638671875,
-0.775390625,
0.4931640625,
-1.03515625,
-0.2413330078125,
-0.81787109375,
0.9189453125,
-0.74365234375,
-0.1002197265625,
-0.59130859375,
0.1632080078125,
-0.3623046875,
0.6630859375,
-0.7451171875,
-1.275390625,
-0.1258544921875,
-0.07342529296875,
0.0216064453125,
-0.50927734375,
0.00566864013671875,
0.072998046875,
-0.1641845703125,
0.61181640625,
-0.3466796875,
0.3779296875,
0.4248046875,
0.11151123046875,
-0.04736328125,
-0.65380859375,
0.379150390625,
-0.126953125,
0.29541015625,
-0.142578125,
-0.60986328125,
-0.318359375,
0.33251953125,
-0.2479248046875,
0.080810546875,
0.2247314453125,
-0.513671875,
0.134765625,
-0.007144927978515625,
-0.5654296875,
-0.40966796875,
-0.39990234375,
0.09149169921875,
-0.05035400390625,
-0.0667724609375,
-0.8154296875,
0.9140625,
-0.2449951171875,
1.1015625,
0.58349609375,
0.5068359375,
-0.58740234375,
-0.40234375,
0.227294921875,
0.1270751953125,
0.2476806640625,
-0.223876953125,
-0.13671875,
0.55322265625,
-0.84814453125,
-0.137939453125,
0.174560546875,
0.421630859375,
0.1080322265625,
0.349853515625,
0.2423095703125,
0.045135498046875,
0.99951171875,
0.94189453125,
-0.5458984375,
1.27734375,
-0.405517578125,
-0.2529296875,
0.537109375,
0.00652313232421875,
-0.231689453125,
-0.143310546875,
-0.305908203125,
-0.46923828125,
0.6904296875,
0.492919921875,
-0.5068359375,
0.798828125,
-0.26416015625,
0.34619140625,
-0.4462890625,
0.1798095703125,
0.74658203125,
-0.035888671875,
0.42822265625,
-0.11419677734375,
-0.1361083984375,
-0.3173828125,
-0.362548828125,
0.974609375,
-0.37255859375,
0.1114501953125,
0.666015625,
-0.232177734375,
0.03564453125,
0.048095703125,
-0.179443359375,
0.841796875,
-0.1527099609375,
0.462646484375,
0.626953125,
-0.3515625,
0.84423828125,
0.2362060546875,
-0.054473876953125,
1.421875,
0.240966796875,
-0.11376953125,
0.50634765625,
0.340087890625,
-0.6064453125,
0.2227783203125,
-1.154296875,
0.7001953125,
0.2059326171875,
0.1492919921875,
-0.1531982421875,
0.0180511474609375,
-0.34765625,
0.5908203125,
0.2376708984375,
0.057373046875,
-0.34765625,
0.302490234375,
-0.284423828125,
0.86328125,
-0.327880859375,
0.55908203125,
-0.376220703125,
-0.40087890625,
-0.12469482421875,
-0.11688232421875,
0.36181640625,
-0.11590576171875,
-0.1953125,
0.8427734375,
0.8046875,
0.90087890625,
0.611328125,
-0.259765625,
0.29736328125,
0.1343994140625,
-0.425048828125,
0.39892578125,
0.38671875,
0.73681640625,
0.331298828125,
0.360595703125,
0.285400390625,
-0.308837890625,
-0.77783203125,
-0.509765625,
0.5322265625,
0.68505859375,
-0.467041015625,
0.77783203125,
0.2469482421875,
-0.0144805908203125,
-0.8466796875,
0.083740234375,
-0.258544921875,
-1.109375,
-0.411376953125,
0.681640625,
-0.1767578125,
0.349853515625,
-0.9951171875,
-0.347412109375,
0.69287109375,
1.1826171875,
-0.255615234375,
0.0175018310546875,
0.54736328125,
-0.00576019287109375,
-0.287353515625,
0.33740234375,
-0.09454345703125,
-0.09661865234375,
-0.486328125,
0.50146484375,
-0.08599853515625,
0.06024169921875,
0.100830078125,
0.7099609375,
0.2435302734375,
0.55615234375,
-0.40771484375,
-0.6123046875,
0.1788330078125,
1.4365234375,
0.11383056640625,
0.47802734375,
0.55322265625,
1.1552734375,
0.72607421875,
0.65234375,
0.466796875,
0.1558837890625,
0.78076171875,
1.2138671875,
-0.1312255859375,
0.2685546875,
-0.11285400390625,
0.515625,
0.494873046875,
0.58935546875,
0.26416015625,
0.3408203125,
-0.1505126953125,
-0.0928955078125,
-0.72509765625,
0.30029296875,
-0.33544921875,
0.50927734375,
0.1668701171875,
0.748046875,
-0.4912109375,
-0.315673828125,
0.1829833984375,
0.64794921875,
-1.2373046875,
-0.250732421875,
0.21875,
-0.052642822265625,
0.282470703125,
0.10406494140625,
0.498046875,
0.0682373046875,
0.70166015625,
0.238525390625,
-0.17236328125,
-0.72314453125,
-0.77294921875,
-1.01953125,
-0.966796875,
-0.51123046875,
-0.8369140625,
-0.08062744140625,
-0.16796875,
-0.8544921875,
0.372802734375,
-0.41943359375,
-0.270263671875,
0.42431640625,
-0.583984375,
0.51611328125,
-0.39306640625,
0.5361328125,
-0.35986328125,
0.29833984375,
0.1826171875,
1.1572265625,
-0.6103515625,
-0.2169189453125,
-0.54736328125,
-0.400146484375,
0.1553955078125,
0.1761474609375,
0.435302734375,
-0.1583251953125,
-0.623046875,
-0.8984375,
-0.2435302734375,
-0.32373046875,
-0.533203125,
0.060394287109375,
-0.67431640625,
0.77001953125,
0.55322265625,
-0.77490234375,
0.57373046875,
1.1982421875,
-0.82470703125,
0.55322265625,
0.264404296875,
0.0772705078125,
-0.71484375,
1.267578125,
0.46337890625,
0.53076171875,
-0.65869140625,
-0.79541015625,
-0.336181640625,
0.1314697265625,
0.264892578125,
-0.4501953125,
-0.485595703125,
0.443115234375,
-0.2213134765625,
-0.94580078125,
0.9306640625,
-1.4052734375,
-0.36669921875,
-0.5703125,
-0.396240234375,
0.54052734375,
0.75927734375,
0.19580078125,
-0.0738525390625,
-0.4619140625,
-0.26416015625,
0.60302734375,
0.2454833984375,
-0.9638671875,
-0.27685546875,
0.544921875,
-0.2069091796875,
0.00664520263671875,
0.057037353515625,
-0.51611328125,
0.00010913610458374023,
-0.2138671875,
0.109130859375,
1.212890625,
0.1455078125,
0.67236328125,
0.437744140625,
0.869140625,
-0.8134765625,
-0.261962890625,
-0.0088348388671875,
1.0478515625,
0.5771484375,
0.52490234375,
0.546875,
-0.1407470703125,
-0.78173828125,
-0.80615234375,
0.0867919921875,
0.040771484375,
0.486083984375,
-0.52783203125,
0.49658203125,
-0.074462890625,
-0.681640625,
0.6328125,
-0.65478515625,
0.1436767578125,
1.2802734375,
-0.274658203125,
0.68212890625,
-0.58740234375,
0.34814453125,
0.06756591796875,
0.044952392578125,
0.50830078125,
0.46044921875,
0.72265625,
-0.378662109375,
-0.6943359375,
-0.60546875,
-0.1134033203125,
0.0231475830078125,
-0.716796875,
-0.004276275634765625,
-0.22607421875,
-0.16943359375,
-0.705078125,
0.45654296875,
0.66259765625,
0.54931640625,
0.3603515625,
0.421630859375,
-0.0266265869140625,
0.181884765625,
0.69775390625,
-0.53125,
-0.08404541015625,
-0.439208984375,
0.77783203125,
0.273681640625,
-0.26611328125,
-0.284423828125,
-0.58984375,
-0.0011415481567382812,
0.443115234375,
0.3974609375,
-0.146484375,
-1.1552734375,
0.349365234375,
-0.046051025390625,
0.7822265625,
-0.7900390625,
0.1090087890625,
-0.48876953125,
0.57421875,
0.222412109375,
-1.0234375,
0.1221923828125,
-1.134765625,
0.669921875,
0.55517578125,
-0.09619140625,
-0.74755859375,
-0.09814453125,
-0.80908203125,
-0.79150390625,
0.358154296875,
0.9755859375,
-0.06494140625,
0.0255279541015625,
-1.3271484375,
0.283935546875,
0.384521484375,
-0.6083984375,
0.089111328125,
-0.077880859375,
0.361083984375,
0.0130157470703125,
0.6962890625,
-0.398193359375,
-0.51708984375,
-0.0265655517578125,
-1.03515625,
0.81787109375,
-0.560546875,
0.5869140625,
0.08062744140625,
-0.153076171875,
0.180908203125,
0.66015625,
-0.006847381591796875,
0.07879638671875,
-0.1845703125,
0.05718994140625,
-1.1826171875,
-1.197265625,
0.5576171875,
-0.09722900390625,
-0.474365234375,
0.849609375,
-0.1702880859375,
-0.304931640625,
0.0036258697509765625,
0.57568359375,
-0.42626953125,
0.2890625,
-0.478515625,
0.51708984375,
-0.59130859375,
-0.87109375,
-0.269287109375,
-0.568359375,
0.9541015625,
0.1558837890625,
-0.845703125,
-0.267333984375,
-0.8486328125,
-0.43115234375,
-0.027099609375,
-0.59423828125,
0.1978759765625,
0.08392333984375,
-0.32470703125,
-0.272216796875,
-0.361083984375,
-0.1312255859375,
-0.30908203125,
-0.43359375,
-0.218994140625,
0.331298828125,
0.408935546875,
1.0078125,
0.135009765625,
-0.420166015625,
0.0195465087890625,
-0.1422119140625,
-0.03948974609375,
-0.382080078125,
-0.39599609375,
-0.0227203369140625,
-0.304931640625,
-0.62841796875,
0.457763671875,
-0.007122039794921875,
0.66943359375,
0.60107421875,
0.0124359130859375,
0.38330078125,
0.26171875,
-0.865234375,
1.1845703125,
-0.037841796875,
-1.2998046875,
-0.6669921875,
0.154296875,
0.54736328125,
0.56005859375,
0.165771484375,
-0.86474609375,
-0.60205078125,
-1.0615234375,
0.52978515625,
-0.65869140625,
-0.09246826171875,
-0.97412109375,
-0.59033203125,
-0.57373046875,
0.76953125,
-0.270263671875,
-0.7490234375,
0.1810302734375,
-1.1953125,
0.251953125,
-0.89501953125,
-0.236572265625,
-0.452880859375,
-0.498779296875,
-0.45068359375,
1.32421875,
0.377685546875,
0.392333984375,
-0.1763916015625,
-0.056732177734375,
0.43212890625,
-0.1346435546875,
-0.73046875,
-0.364501953125,
-0.07635498046875,
-0.250244140625,
-0.3603515625,
-0.25439453125,
-0.7880859375,
0.8701171875,
-0.72412109375,
0.466796875,
-0.199462890625,
-0.262451171875,
0.175048828125,
-0.54638671875,
1.2021484375,
-0.568359375,
0.1119384765625,
-0.35009765625,
0.587890625,
0.59228515625,
-0.1717529296875,
-0.004993438720703125,
-0.2474365234375,
-0.60400390625,
-1.3515625,
0.454345703125,
-0.412109375,
0.1583251953125,
-0.7080078125,
0.0966796875,
1.34375,
-0.81787109375,
0.43505859375,
0.98291015625,
0.276123046875,
0.08953857421875,
-0.7119140625,
0.59228515625,
0.6533203125,
-0.5126953125,
0.1790771484375,
0.14453125,
-0.97802734375,
-0.059417724609375,
-0.342041015625,
-0.8818359375,
-0.888671875,
0.34521484375,
1.4033203125,
-0.4521484375,
0.794921875,
-0.2423095703125,
-1.0849609375,
-0.457275390625,
0.6357421875,
0.312744140625,
0.630859375,
1.24609375,
-0.031646728515625,
-0.1578369140625,
0.50341796875,
-0.2266845703125,
-0.265380859375,
-0.38916015625,
1.384765625,
-0.5625,
-0.322509765625,
0.9111328125,
0.88330078125,
-1.423828125,
-0.873046875,
0.053009033203125,
0.364501953125,
-0.267578125,
-0.9326171875,
0.1094970703125,
0.272705078125,
-0.76171875,
0.06378173828125,
0.4423828125,
-0.24658203125,
0.360107421875,
-0.0304107666015625,
0.6572265625,
-0.492919921875,
0.43701171875,
0.462158203125,
-0.363037109375,
-0.515625,
-0.87060546875,
-0.364990234375,
-0.07293701171875,
-0.0257110595703125,
0.95166015625,
-0.377685546875,
0.23583984375,
0.4990234375,
-0.2203369140625,
0.3232421875,
-0.437255859375,
0.10968017578125,
0.1761474609375,
-0.34912109375,
-0.7509765625,
-0.1375732421875,
0.1273193359375,
0.07244873046875,
0.62451171875,
-0.51611328125,
0.1572265625,
0.06829833984375,
0.158935546875,
-0.41064453125,
-0.42724609375,
-0.376220703125,
-1.2001953125,
-0.64404296875,
-0.69189453125,
-0.83349609375,
-0.37744140625,
0.57763671875,
0.0244598388671875,
-0.54345703125,
0.00470733642578125,
0.440185546875,
-0.64892578125,
0.8642578125,
-0.5419921875,
0.324951171875,
-0.45849609375,
-0.52685546875,
-0.6923828125,
0.1029052734375,
-0.4072265625,
-0.407958984375,
-0.044403076171875,
0.63818359375,
-0.23193359375,
0.3642578125,
-0.1082763671875,
0.479248046875,
-0.1630859375,
-0.81103515625,
-0.1524658203125,
0.02630615234375,
-0.31591796875,
1.1142578125,
0.91015625,
0.38330078125,
0.135986328125,
-0.5322265625,
-0.43310546875,
-0.12744140625,
0.6298828125,
0.849609375,
-0.0037593841552734375,
-0.2646484375,
-0.128662109375,
0.220947265625,
-1.0224609375,
0.321533203125,
-0.1329345703125,
0.09722900390625,
0.2244873046875,
-0.321044921875,
0.08685302734375,
1.0166015625,
-0.49169921875,
0.305908203125,
0.1884765625,
0.2298583984375,
0.16015625,
0.076416015625,
0.2310791015625,
0.34130859375,
0.018402099609375,
-0.3515625,
-0.056640625,
0.49072265625,
-0.003810882568359375,
0.410400390625,
-0.2293701171875,
-1.0380859375,
-0.81787109375,
-0.32568359375,
-0.2529296875,
0.263916015625,
0.2286376953125,
-0.440185546875,
-0.133544921875,
0.103271484375,
-0.393798828125,
-0.14794921875,
-1.1484375,
-1.2119140625,
0.73828125,
-0.2474365234375,
-0.94482421875,
-0.2568359375,
-0.394775390625,
0.034820556640625,
-0.06915283203125,
0.484375,
-0.235107421875,
0.474853515625,
-0.03582763671875,
0.5283203125,
-0.1846923828125,
0.12359619140625,
0.2005615234375,
0.8271484375,
-0.83251953125,
-0.62939453125,
0.320068359375,
1.033203125,
0.058441162109375,
-0.388427734375,
-0.357666015625,
0.32666015625,
-0.04998779296875,
0.03118896484375,
-0.225830078125,
0.12274169921875,
-0.08221435546875,
0.495361328125,
-0.79638671875,
-0.228759765625,
-0.1715087890625,
0.50146484375,
-0.042724609375,
-0.546875,
-0.7978515625,
0.89599609375,
0.703125,
-0.30126953125,
0.662109375,
0.061431884765625,
0.30810546875,
-0.1671142578125,
-0.07672119140625,
-0.247802734375,
0.6123046875,
0.50390625,
0.59521484375,
-0.53271484375,
0.316162109375,
0.69140625,
0.5205078125,
-0.04290771484375,
0.369140625,
-0.1446533203125,
0.065673828125,
0.0228424072265625,
-0.5166015625,
-0.498779296875,
0.076416015625,
-0.94775390625,
0.483154296875,
-0.6640625,
0.11285400390625,
-0.473876953125,
-0.744140625,
0.771484375,
-0.239013671875,
-0.0703125,
0.304931640625,
-0.58447265625,
0.27734375,
0.837890625,
-0.1552734375,
-0.36767578125,
0.61474609375,
0.93212890625,
0.7626953125,
0.79150390625,
0.30419921875,
0.4658203125,
-0.7216796875,
0.1561279296875,
0.14599609375,
-0.058502197265625,
-0.364990234375,
-0.80322265625,
-0.90380859375,
0.3466796875,
-0.303955078125,
-0.1839599609375,
0.336669921875,
-0.751953125,
0.205322265625,
0.0226898193359375,
0.77294921875,
-0.320556640625,
0.1629638671875,
0.302978515625,
-0.256591796875,
-0.90966796875,
1.0595703125,
-0.2156982421875,
0.422607421875,
-0.035797119140625,
1.025390625,
0.1546630859375,
1.4306640625,
0.52099609375,
-0.50634765625,
0.129150390625,
0.57958984375,
-0.3759765625,
-0.79443359375,
-0.59814453125,
-0.3662109375,
-0.2117919921875,
-0.80419921875,
-0.2332763671875,
-0.0401611328125,
0.98974609375,
-0.1556396484375,
-0.99609375,
-0.24560546875,
0.162109375,
-1.0830078125,
0.5625,
0.11553955078125,
0.0584716796875,
0.30908203125,
0.047027587890625,
-0.152587890625,
-1.0654296875,
0.223388671875,
-0.78173828125,
0.306884765625,
-0.93603515625,
-0.0892333984375,
-0.8310546875,
-0.7587890625,
0.134033203125,
-0.3818359375,
-0.328369140625,
-0.796875,
0.4453125,
0.8154296875,
0.479736328125,
-0.072509765625,
-0.31005859375,
0.1788330078125,
1.2255859375,
0.74658203125,
0.0579833984375,
0.83984375,
0.187744140625,
-0.334716796875,
-0.1102294921875,
-0.069091796875,
0.59619140625,
-0.39990234375,
0.02105712890625,
-0.4091796875,
0.19873046875,
-1.044921875,
-1.3916015625,
0.29345703125,
0.85693359375,
0.1903076171875,
-0.287353515625,
-1.10546875,
-0.44482421875,
-0.37451171875,
0.0736083984375,
-0.8115234375,
0.72802734375,
-0.1051025390625,
-0.048583984375,
-0.55078125,
-0.982421875,
4.2109375,
0.81982421875,
1.0029296875,
0.0640869140625,
0.3828125,
0.66015625,
0.29296875,
-0.412109375,
-0.046295166015625,
-0.391357421875,
0.59912109375,
-0.397705078125,
0.012451171875,
0.6201171875,
0.376708984375,
0.6494140625,
-0.44384765625,
-0.00917816162109375,
0.2220458984375,
-0.736328125,
-0.92919921875,
0.320068359375,
0.017486572265625,
0.449951171875,
-0.1529541015625,
0.431640625,
0.638671875,
-0.64111328125,
-0.261962890625,
-0.6884765625,
0.410400390625,
-0.2093505859375,
0.93359375,
0.337890625,
0.313720703125,
0.345703125,
0.020782470703125,
-0.0751953125,
-0.364990234375,
0.299560546875,
-0.08807373046875,
-0.00998687744140625,
0.77197265625,
-0.595703125,
-0.0753173828125,
0.84033203125,
-0.62109375,
0.56298828125,
0.50390625,
-0.9482421875,
0.8662109375,
-0.401123046875,
0.53759765625,
-0.828125,
-0.420654296875,
0.06524658203125,
0.17041015625,
0.0479736328125,
-0.1981201171875,
-0.0057830810546875,
0.34521484375,
0.75390625,
0.009307861328125,
0.900390625,
-1.1025390625,
0.1943359375,
0.181640625,
0.295166015625,
-0.5634765625,
0.07403564453125,
-0.4169921875,
-0.45458984375,
-0.292724609375,
-0.54833984375,
0.335205078125,
0.681640625,
-0.238525390625,
0.642578125,
0.85400390625,
-0.52099609375,
0.167236328125,
-0.2242431640625,
-0.215087890625,
-0.8779296875,
0.677734375,
1.3955078125,
-0.72900390625,
-0.155029296875,
-0.2435302734375,
0.51708984375,
0.58837890625,
0.990234375,
0.0858154296875,
-0.689453125,
-0.24853515625
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Returning back to problem solving, Gildong is now studying about palindromes. He learned that a palindrome is a string that is the same as its reverse. For example, strings "pop", "noon", "x", and "kkkkkk" are palindromes, while strings "moon", "tv", and "abab" are not. An empty string is also a palindrome.
Gildong loves this concept so much, so he wants to play with it. He has n distinct strings of equal length m. He wants to discard some of the strings (possibly none or all) and reorder the remaining strings so that the concatenation becomes a palindrome. He also wants the palindrome to be as long as possible. Please help him find one.
Input
The first line contains two integers n and m (1 ≤ n ≤ 100, 1 ≤ m ≤ 50) — the number of strings and the length of each string.
Next n lines contain a string of length m each, consisting of lowercase Latin letters only. All strings are distinct.
Output
In the first line, print the length of the longest palindrome string you made.
In the second line, print that palindrome. If there are multiple answers, print any one of them. If the palindrome is empty, print an empty line or don't print this line at all.
Examples
Input
3 3
tab
one
bat
Output
6
tabbat
Input
4 2
oo
ox
xo
xx
Output
6
oxxxxo
Input
3 5
hello
codef
orces
Output
0
Input
9 4
abab
baba
abcd
bcde
cdef
defg
wxyz
zyxw
ijji
Output
20
ababwxyzijjizyxwbaba
Note
In the first example, "battab" is also a valid answer.
In the second example, there can be 4 different valid answers including the sample output. We are not going to provide any hints for what the others are.
In the third example, the empty string is the only valid palindrome string.
Tags: brute force, constructive algorithms, greedy, implementation, strings
Correct Solution:
```
from sys import stdin, stdout
from math import *
from heapq import *
from collections import *
def is_palind(s):
ln=len(s)
for i in range(ln):
if (s[i] != s[ln-1-i]):
return False
return True
def main():
n,m=[int(x)for x in stdin.readline().split()]
npalinds=[]
palinds=[]
alls=[]
for i in range(n):
s=stdin.readline().strip()
if (is_palind(s)==True):
palinds.append(s)
else:
npalinds.append(s)
alls.append(s)
res=''
used=[False]*(n+1)
for ind,s in enumerate(palinds):
if (palinds.count(s)%2==1):
if (len(s)>len(res)):
res=s
if (res in palinds):
used[alls.index(res)]=True
reslist=deque()
reslist.append(res)
for i in range(len(alls)):
if (used[i]==False):
p=alls[i]
for j in range(len(alls)):
if (used[j]==False) and (i!=j):
q=alls[j]
if is_palind(p+q):
reslist.appendleft(p)
reslist.append(q)
used[i]=True
used[j]=True
res="".join(reslist)
stdout.write("%d\n%s"%(len(res),res))
return 0
if __name__ == "__main__":
main()
```
| 10,897 | [
0.0147705078125,
-0.33740234375,
-0.162353515625,
0.403076171875,
-0.230712890625,
-0.525390625,
-0.09991455078125,
-0.1591796875,
0.170654296875,
0.876953125,
0.78955078125,
0.19189453125,
0.1468505859375,
-1.162109375,
-1.0185546875,
-0.2279052734375,
-0.68798828125,
-0.80419921875,
-0.57080078125,
-0.09063720703125,
0.01148223876953125,
-0.01558685302734375,
-1.5673828125,
-0.302978515625,
0.1636962890625,
0.9697265625,
0.270263671875,
0.4462890625,
0.9150390625,
1.427734375,
-0.35009765625,
-0.22119140625,
0.71142578125,
-1.275390625,
-0.289794921875,
-0.4541015625,
0.369140625,
-0.80029296875,
-0.11090087890625,
-0.460693359375,
0.070068359375,
-0.409912109375,
0.50341796875,
-0.97607421875,
-1.17578125,
-0.0165557861328125,
-0.61083984375,
-0.3759765625,
-0.12176513671875,
-0.837890625,
0.100341796875,
-0.3720703125,
0.33544921875,
0.12371826171875,
-0.0943603515625,
-0.1292724609375,
-0.1551513671875,
-0.057647705078125,
-0.66015625,
0.33251953125,
0.477783203125,
0.256591796875,
-0.418212890625,
-1.046875,
-0.626953125,
0.3759765625,
-0.11749267578125,
0.08001708984375,
0.2099609375,
-0.8603515625,
-0.1966552734375,
0.26953125,
-0.144775390625,
-0.490478515625,
-0.093994140625,
0.182373046875,
0.5517578125,
0.3251953125,
-0.93408203125,
0.66455078125,
0.1365966796875,
0.94921875,
-0.09405517578125,
0.10101318359375,
-0.2061767578125,
-0.859375,
0.12841796875,
0.357177734375,
0.2178955078125,
-0.05035400390625,
-0.35986328125,
0.787109375,
-0.51953125,
0.0755615234375,
0.373046875,
0.398193359375,
-0.0987548828125,
0.314453125,
-0.182373046875,
0.306640625,
1.076171875,
1.2255859375,
-0.5302734375,
0.9892578125,
-0.29931640625,
-0.53125,
-0.0254974365234375,
0.158203125,
-0.35693359375,
-0.83251953125,
-0.406982421875,
-0.217041015625,
0.74560546875,
0.278076171875,
0.36328125,
0.88037109375,
-0.1583251953125,
0.5693359375,
-0.97509765625,
0.27099609375,
0.44482421875,
0.136474609375,
0.319091796875,
-0.04742431640625,
0.218505859375,
-0.1707763671875,
-0.54443359375,
1.140625,
-0.67236328125,
-0.00977325439453125,
0.6455078125,
-0.09967041015625,
-0.08197021484375,
0.2265625,
0.1771240234375,
0.599609375,
-0.260986328125,
0.87451171875,
0.73583984375,
-0.52783203125,
0.609375,
-0.32470703125,
0.00958251953125,
1.572265625,
0.412353515625,
0.12384033203125,
0.97412109375,
0.270263671875,
-0.368408203125,
0.373046875,
-0.88623046875,
0.77197265625,
0.062347412109375,
0.0819091796875,
0.038604736328125,
0.031707763671875,
0.2034912109375,
0.469970703125,
0.2578125,
0.5068359375,
-0.260498046875,
0.1942138671875,
-0.2088623046875,
0.6728515625,
-0.393798828125,
1.1787109375,
-0.51220703125,
-0.433837890625,
-0.09942626953125,
-0.406005859375,
-0.177734375,
-0.1048583984375,
-0.25537109375,
0.931640625,
0.603515625,
1.201171875,
0.84228515625,
-0.50634765625,
0.5087890625,
0.2117919921875,
-0.1575927734375,
0.42724609375,
0.5009765625,
0.6845703125,
0.49169921875,
0.2342529296875,
0.031463623046875,
-0.28466796875,
-0.5498046875,
-0.81689453125,
0.043182373046875,
0.67236328125,
-0.323486328125,
0.099365234375,
-0.129150390625,
-0.1190185546875,
-0.7119140625,
-0.28173828125,
-0.178466796875,
-1.0595703125,
-0.1396484375,
0.560546875,
-0.439208984375,
0.50830078125,
-0.619140625,
-0.230712890625,
0.7685546875,
1.2373046875,
-0.55419921875,
0.07958984375,
0.405029296875,
0.2412109375,
-0.456298828125,
0.34423828125,
-0.0249176025390625,
-0.327392578125,
-0.74951171875,
0.7646484375,
-0.0555419921875,
-0.0225830078125,
-0.0592041015625,
0.85107421875,
0.231201171875,
0.317626953125,
0.06988525390625,
-0.402099609375,
0.4091796875,
0.9248046875,
-0.166015625,
0.58203125,
0.2261962890625,
0.83544921875,
0.19384765625,
0.365478515625,
0.384521484375,
-0.294677734375,
0.357666015625,
0.68505859375,
0.12335205078125,
0.2069091796875,
0.18408203125,
0.2489013671875,
0.271728515625,
0.06939697265625,
0.37353515625,
0.96533203125,
0.17041015625,
-0.020263671875,
-0.5126953125,
0.295654296875,
-0.497802734375,
1.271484375,
0.583984375,
0.147216796875,
-0.20068359375,
-0.25341796875,
0.46728515625,
0.91064453125,
-0.837890625,
-0.73779296875,
0.30712890625,
-0.018280029296875,
-0.09796142578125,
-0.376953125,
0.34912109375,
0.6650390625,
0.3046875,
0.1982421875,
-0.187255859375,
-0.72509765625,
-0.796875,
-1.0712890625,
-0.95556640625,
-0.6689453125,
-0.77294921875,
-0.346435546875,
0.462890625,
-0.64111328125,
-0.040771484375,
-0.41259765625,
-0.432861328125,
0.1883544921875,
-1.083984375,
0.448974609375,
0.09637451171875,
0.62255859375,
-0.94970703125,
0.59765625,
0.42431640625,
1.2451171875,
-0.8837890625,
0.0110931396484375,
-0.20361328125,
-0.473388671875,
-0.166259765625,
0.2064208984375,
0.302734375,
0.06927490234375,
-0.47900390625,
-0.75244140625,
-0.3583984375,
0.24755859375,
-0.43603515625,
0.3701171875,
-0.6572265625,
1.0947265625,
0.57568359375,
-0.2529296875,
0.6904296875,
0.75634765625,
-0.5361328125,
0.49609375,
0.25,
0.365234375,
-0.7275390625,
1.466796875,
0.41845703125,
0.389404296875,
-0.425537109375,
-0.232177734375,
-0.67578125,
0.187255859375,
0.11834716796875,
-0.5712890625,
-0.54052734375,
0.83837890625,
-0.050048828125,
-1.08984375,
0.343505859375,
-1.0693359375,
-0.57568359375,
-0.05657958984375,
-0.51904296875,
0.640625,
1.1533203125,
0.2587890625,
-0.2010498046875,
-0.225830078125,
-0.323486328125,
0.366455078125,
0.2376708984375,
-0.134765625,
-0.64453125,
0.5791015625,
-0.2476806640625,
0.05035400390625,
0.379638671875,
-0.461181640625,
-0.003963470458984375,
0.1650390625,
0.348388671875,
0.66162109375,
0.4755859375,
0.2266845703125,
-0.08709716796875,
0.794921875,
-1.2919921875,
-0.259521484375,
-0.0809326171875,
0.6103515625,
0.1148681640625,
0.394775390625,
0.3388671875,
-0.3564453125,
-0.5224609375,
-1.2548828125,
0.5693359375,
0.258544921875,
0.828125,
-0.7314453125,
0.88916015625,
0.2000732421875,
-0.5927734375,
0.55224609375,
-1.0927734375,
-0.352294921875,
1.2138671875,
-0.143310546875,
0.57421875,
-0.56298828125,
0.1595458984375,
0.0008358955383300781,
-0.157958984375,
0.5078125,
0.2479248046875,
0.6220703125,
-0.2161865234375,
-0.87060546875,
-0.359375,
0.291015625,
-0.20458984375,
-0.83544921875,
0.041900634765625,
-0.7880859375,
-0.74072265625,
-0.59375,
0.58447265625,
0.5595703125,
0.401123046875,
0.3369140625,
-0.0179443359375,
0.2337646484375,
0.6494140625,
0.2724609375,
-0.436279296875,
0.1715087890625,
-0.77392578125,
0.63232421875,
0.10174560546875,
-0.39208984375,
-0.75439453125,
-0.09869384765625,
-0.5634765625,
-0.0477294921875,
0.1011962890625,
-0.1898193359375,
-1.234375,
0.318115234375,
0.1351318359375,
0.609375,
-0.278076171875,
-0.37841796875,
-0.3740234375,
0.7587890625,
-0.028961181640625,
-0.92724609375,
0.1439208984375,
-0.736328125,
0.51123046875,
0.62158203125,
0.111083984375,
-0.505859375,
-0.56201171875,
-0.71484375,
-0.560546875,
0.68505859375,
0.8603515625,
-0.3232421875,
0.5869140625,
-1.353515625,
0.69677734375,
0.0926513671875,
-0.1536865234375,
-0.00864410400390625,
-0.16357421875,
0.24658203125,
0.08453369140625,
0.268798828125,
-0.61865234375,
-0.432861328125,
0.0638427734375,
-1.1787109375,
0.5283203125,
-0.525390625,
0.02532958984375,
0.15185546875,
-0.4306640625,
-0.274658203125,
0.59130859375,
-0.4111328125,
0.4384765625,
-0.3466796875,
0.6884765625,
-0.71435546875,
-0.6533203125,
0.471923828125,
-0.493408203125,
-0.2069091796875,
1.0400390625,
-0.1458740234375,
-0.473876953125,
0.2568359375,
0.66748046875,
-0.4306640625,
-0.03546142578125,
-0.474365234375,
0.56787109375,
-0.072509765625,
-0.37548828125,
0.0153350830078125,
-0.35009765625,
0.7900390625,
0.045440673828125,
-1.0400390625,
-0.1851806640625,
-1.083984375,
-0.460205078125,
-0.351318359375,
-0.10528564453125,
0.003604888916015625,
0.024139404296875,
-0.135009765625,
-0.2208251953125,
-0.480712890625,
-0.568359375,
-0.63623046875,
-0.501953125,
-0.59619140625,
0.66455078125,
0.1806640625,
0.67578125,
-0.035003662109375,
-0.68359375,
0.2008056640625,
0.12493896484375,
-0.0172882080078125,
-0.53466796875,
-0.1341552734375,
-0.366455078125,
-0.0660400390625,
0.0131988525390625,
0.42724609375,
0.01094818115234375,
0.3310546875,
1.0009765625,
0.2000732421875,
0.247802734375,
0.30712890625,
-0.49072265625,
0.953125,
0.1455078125,
-1.0634765625,
-0.40673828125,
0.463134765625,
-0.2783203125,
0.7548828125,
0.11419677734375,
-0.75,
-0.75439453125,
-0.81396484375,
0.2626953125,
-1.0732421875,
-0.2001953125,
-1.2587890625,
-0.481689453125,
-0.00592041015625,
0.27734375,
-0.324951171875,
-0.93408203125,
0.11029052734375,
-0.828125,
0.36767578125,
-0.86572265625,
-0.101806640625,
-0.78466796875,
-0.44970703125,
-0.31787109375,
1.099609375,
0.042236328125,
0.408203125,
0.2325439453125,
0.095458984375,
0.32275390625,
-0.003940582275390625,
-0.79638671875,
-0.08514404296875,
-0.09814453125,
0.0648193359375,
-0.0606689453125,
-0.01558685302734375,
-0.5068359375,
0.779296875,
-0.791015625,
0.33154296875,
-0.26953125,
-0.361083984375,
-0.34130859375,
-0.0400390625,
0.6611328125,
-0.237548828125,
0.2159423828125,
-0.0245361328125,
0.65625,
0.95654296875,
-0.56640625,
-0.46142578125,
-0.908203125,
-0.2939453125,
-1.130859375,
0.68115234375,
-0.87890625,
0.29052734375,
-0.74365234375,
0.11187744140625,
1.13671875,
-0.5517578125,
0.51708984375,
1.5087890625,
0.439208984375,
0.138427734375,
-0.556640625,
0.748046875,
0.85107421875,
-0.5849609375,
-0.1083984375,
0.092529296875,
-0.65869140625,
0.0706787109375,
0.107177734375,
-1.1875,
-0.7138671875,
0.2486572265625,
1.4208984375,
-0.2705078125,
0.30517578125,
0.246337890625,
-1.0009765625,
-0.89892578125,
1.046875,
0.300537109375,
0.373291015625,
1.1005859375,
-0.238037109375,
-0.353515625,
0.358154296875,
-0.04644775390625,
-0.06982421875,
-0.2216796875,
1.0107421875,
0.10406494140625,
-0.5048828125,
1.2568359375,
0.8798828125,
-1.0185546875,
-1.0908203125,
-0.47314453125,
-0.1937255859375,
-0.2471923828125,
-0.54150390625,
-0.044586181640625,
0.5361328125,
-0.8994140625,
-0.006664276123046875,
0.5361328125,
-0.365234375,
0.0712890625,
0.056243896484375,
-0.09393310546875,
-0.437255859375,
0.54736328125,
0.728515625,
-0.431396484375,
-0.241943359375,
-1.3681640625,
-0.263916015625,
-0.12127685546875,
0.0516357421875,
0.40087890625,
-0.2161865234375,
0.51123046875,
-0.050933837890625,
0.46728515625,
0.7626953125,
-0.321044921875,
-0.658203125,
0.4560546875,
-0.86474609375,
-0.7314453125,
-0.1114501953125,
0.2509765625,
-0.060577392578125,
0.65087890625,
-0.568359375,
0.0156097412109375,
0.382080078125,
0.251220703125,
-0.17529296875,
-0.8837890625,
-0.22900390625,
-1.291015625,
-0.5224609375,
-0.396240234375,
-0.68359375,
-0.045440673828125,
0.01708984375,
0.06439208984375,
-0.51171875,
0.09417724609375,
0.513671875,
-0.5927734375,
0.75,
-0.79443359375,
0.378173828125,
-0.9716796875,
-0.168701171875,
-0.462890625,
-0.11102294921875,
-0.426025390625,
-0.06536865234375,
-0.55810546875,
0.11016845703125,
0.1680908203125,
0.468994140625,
-0.239013671875,
0.52490234375,
-0.362548828125,
-0.51220703125,
0.27001953125,
0.1063232421875,
0.1326904296875,
0.78173828125,
0.677734375,
-0.2900390625,
0.465576171875,
-0.260009765625,
-0.630859375,
-0.174560546875,
0.66552734375,
0.62841796875,
-0.11322021484375,
-0.035888671875,
-0.40283203125,
0.34326171875,
-1.3359375,
0.2314453125,
-0.378173828125,
0.173095703125,
0.24169921875,
0.0537109375,
0.07147216796875,
1.1123046875,
-0.2744140625,
0.405517578125,
-0.0494384765625,
0.415771484375,
0.1910400390625,
0.1683349609375,
0.1632080078125,
0.60546875,
-0.138427734375,
-0.1378173828125,
0.09130859375,
0.2451171875,
0.11065673828125,
-0.00211334228515625,
-0.1961669921875,
-0.65576171875,
-0.31591796875,
-0.2454833984375,
0.08197021484375,
0.234619140625,
0.306396484375,
-0.53662109375,
0.2626953125,
-0.283203125,
-0.521484375,
-0.0230712890625,
-1.2177734375,
-0.77294921875,
0.1854248046875,
0.052947998046875,
-0.3642578125,
-0.56591796875,
-0.5234375,
-0.3134765625,
0.2183837890625,
0.4541015625,
-0.39599609375,
0.246826171875,
-0.52587890625,
0.461181640625,
-0.30810546875,
0.2373046875,
0.2900390625,
0.2137451171875,
-0.6357421875,
-0.814453125,
0.045166015625,
1.1142578125,
0.242919921875,
-0.00424957275390625,
-0.33837890625,
0.1146240234375,
-0.082763671875,
0.435302734375,
-0.6123046875,
0.0200042724609375,
-0.2451171875,
0.216552734375,
-0.94482421875,
-0.06317138671875,
-0.078369140625,
0.56689453125,
0.21875,
-0.250244140625,
-0.7705078125,
0.89453125,
0.62255859375,
-0.1845703125,
0.379150390625,
0.34619140625,
0.4775390625,
0.0902099609375,
-0.352783203125,
-0.52099609375,
0.9638671875,
0.82421875,
0.5146484375,
-0.37890625,
0.330078125,
0.615234375,
-0.349853515625,
-0.3046875,
0.29150390625,
0.06756591796875,
-0.128662109375,
0.2305908203125,
-0.1297607421875,
-0.10894775390625,
0.2244873046875,
-0.2396240234375,
0.7197265625,
-0.2724609375,
0.1116943359375,
-0.057708740234375,
-0.93115234375,
0.69189453125,
-0.2529296875,
-0.335693359375,
0.0892333984375,
-0.362060546875,
0.2958984375,
0.8359375,
-0.2454833984375,
-0.1630859375,
0.861328125,
0.73828125,
0.28369140625,
0.57568359375,
0.402099609375,
0.451904296875,
-0.5185546875,
0.1236572265625,
0.136962890625,
0.09149169921875,
-0.7109375,
-0.448486328125,
-0.96533203125,
0.662109375,
-0.4912109375,
-0.406982421875,
0.60498046875,
-0.247314453125,
0.11602783203125,
-0.529296875,
0.80712890625,
-0.49609375,
0.07049560546875,
0.4912109375,
-0.436767578125,
-0.5419921875,
0.7353515625,
-0.410400390625,
0.284423828125,
-0.10369873046875,
1.3388671875,
-0.174072265625,
1.7412109375,
0.344482421875,
-0.27099609375,
0.1402587890625,
0.6982421875,
-0.292724609375,
-0.63232421875,
-0.143798828125,
-0.361083984375,
-0.131103515625,
-0.81201171875,
-0.54931640625,
-0.58251953125,
0.72021484375,
-0.170166015625,
-0.61181640625,
0.00876617431640625,
0.222900390625,
-0.65966796875,
0.666015625,
0.305419921875,
-0.10650634765625,
-0.004947662353515625,
0.03961181640625,
-0.3681640625,
-0.59033203125,
0.458740234375,
-0.51220703125,
0.07470703125,
-0.68603515625,
-0.5517578125,
-0.53466796875,
-0.45263671875,
-0.426025390625,
-0.1556396484375,
-0.359375,
-0.83251953125,
0.66015625,
0.57958984375,
0.7529296875,
0.261962890625,
-0.38623046875,
0.1436767578125,
0.62451171875,
1.0693359375,
0.1668701171875,
0.65380859375,
0.386962890625,
-0.30029296875,
0.2099609375,
-0.58935546875,
0.380615234375,
0.30419921875,
0.163330078125,
-0.38916015625,
0.2474365234375,
-0.75244140625,
-1.345703125,
-0.1488037109375,
0.85986328125,
0.7529296875,
-0.72119140625,
-1.044921875,
-0.1492919921875,
-1.107421875,
-0.1759033203125,
-0.45556640625,
1,
-0.226318359375,
-0.02392578125,
-0.079345703125,
-1.203125,
4.234375,
0.91162109375,
1.3291015625,
0.43701171875,
0.252197265625,
1.0732421875,
0.25,
-0.6455078125,
-0.4111328125,
-0.1339111328125,
0.6337890625,
-0.498779296875,
-0.2342529296875,
1.142578125,
0.220458984375,
0.95068359375,
-0.75,
0.1268310546875,
0.314697265625,
-1.048828125,
-0.57568359375,
0.1549072265625,
-0.044097900390625,
0.70263671875,
0.038604736328125,
0.203125,
0.7275390625,
-0.6494140625,
-0.388427734375,
-0.4150390625,
0.0013723373413085938,
-0.274658203125,
0.79248046875,
0.28125,
-0.3134765625,
0.60009765625,
-0.06982421875,
-0.382568359375,
0.0224609375,
0.11737060546875,
0.220458984375,
0.0687255859375,
0.311767578125,
-0.6533203125,
-0.12164306640625,
0.31494140625,
-0.78662109375,
0.3642578125,
0.2138671875,
-0.73779296875,
0.9052734375,
0.2138671875,
0.29541015625,
-0.5400390625,
-0.9228515625,
0.0222930908203125,
0.258056640625,
0.0172576904296875,
-0.496337890625,
0.57666015625,
0.419677734375,
0.414794921875,
0.15673828125,
0.7177734375,
-1.068359375,
1.1806640625,
-0.4345703125,
0.51806640625,
-0.68212890625,
-0.01178741455078125,
-0.00214385986328125,
-0.081298828125,
-0.332275390625,
-0.134033203125,
0.560546875,
0.46484375,
0.04302978515625,
0.458984375,
0.197021484375,
-0.55029296875,
0.30908203125,
-0.1663818359375,
-0.52099609375,
-0.019744873046875,
0.861328125,
1.27734375,
-0.62939453125,
-0.1793212890625,
-0.12548828125,
0.6748046875,
0.72021484375,
0.7138671875,
0.06597900390625,
-0.6064453125,
-0.36572265625
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Returning back to problem solving, Gildong is now studying about palindromes. He learned that a palindrome is a string that is the same as its reverse. For example, strings "pop", "noon", "x", and "kkkkkk" are palindromes, while strings "moon", "tv", and "abab" are not. An empty string is also a palindrome.
Gildong loves this concept so much, so he wants to play with it. He has n distinct strings of equal length m. He wants to discard some of the strings (possibly none or all) and reorder the remaining strings so that the concatenation becomes a palindrome. He also wants the palindrome to be as long as possible. Please help him find one.
Input
The first line contains two integers n and m (1 ≤ n ≤ 100, 1 ≤ m ≤ 50) — the number of strings and the length of each string.
Next n lines contain a string of length m each, consisting of lowercase Latin letters only. All strings are distinct.
Output
In the first line, print the length of the longest palindrome string you made.
In the second line, print that palindrome. If there are multiple answers, print any one of them. If the palindrome is empty, print an empty line or don't print this line at all.
Examples
Input
3 3
tab
one
bat
Output
6
tabbat
Input
4 2
oo
ox
xo
xx
Output
6
oxxxxo
Input
3 5
hello
codef
orces
Output
0
Input
9 4
abab
baba
abcd
bcde
cdef
defg
wxyz
zyxw
ijji
Output
20
ababwxyzijjizyxwbaba
Note
In the first example, "battab" is also a valid answer.
In the second example, there can be 4 different valid answers including the sample output. We are not going to provide any hints for what the others are.
In the third example, the empty string is the only valid palindrome string.
Submitted Solution:
```
def ispal(s):
if (s==s[::-1]):
return 1
return 0
n,m=map(int,input().split())
A=[]
vis=[0]*n
for i in range(n):
A.append(list(input()))
if ispal(A[i]):
vis[i]=1
B=[]
C=[]
ans=0
for i in range(n):
if (vis[i]!=-1):
for j in range(i+1,n):
if (vis[j]!=-1 and A[i]==A[j][::-1]):
vis[i]=-1
vis[j]=-1
B.extend(A[i])
C.append(A[j])
ans=ans+2
break
for i in range(n):
if (vis[i]==1):
ans=ans+1
B.extend(A[i])
break
C.reverse()
for j in C:
B.extend(j)
print(len(B))
print(*B,sep="")
```
Yes
| 10,901 | [
0.056396484375,
-0.1912841796875,
-0.218994140625,
0.364013671875,
-0.302978515625,
-0.411865234375,
-0.10968017578125,
0.056365966796875,
0.09588623046875,
0.82568359375,
0.74853515625,
0.2685546875,
0.049957275390625,
-1.208984375,
-1.0400390625,
-0.322021484375,
-0.7294921875,
-0.7861328125,
-0.39404296875,
-0.177001953125,
-0.148193359375,
-0.0156707763671875,
-1.5478515625,
-0.2509765625,
0.1700439453125,
0.90283203125,
0.19580078125,
0.44287109375,
0.951171875,
1.4345703125,
-0.394287109375,
-0.2052001953125,
0.65869140625,
-1.1142578125,
-0.259033203125,
-0.469482421875,
0.453369140625,
-0.73388671875,
-0.231689453125,
-0.5908203125,
-0.08380126953125,
-0.34326171875,
0.60107421875,
-0.84765625,
-1.2578125,
0.01004791259765625,
-0.45361328125,
-0.470947265625,
-0.2059326171875,
-0.9169921875,
0.08978271484375,
-0.413330078125,
0.334716796875,
0.057220458984375,
-0.0447998046875,
-0.045867919921875,
-0.057037353515625,
0.0285186767578125,
-0.60009765625,
0.294189453125,
0.438720703125,
0.366943359375,
-0.436767578125,
-1.0859375,
-0.6953125,
0.4560546875,
-0.075439453125,
0.03863525390625,
0.33154296875,
-0.5712890625,
-0.309814453125,
0.1865234375,
-0.11163330078125,
-0.3623046875,
0.0026035308837890625,
0.228759765625,
0.5537109375,
0.47216796875,
-0.984375,
0.72509765625,
0.0997314453125,
1.01953125,
0.01369476318359375,
0.1536865234375,
-0.216552734375,
-0.765625,
0.285888671875,
0.320068359375,
0.3037109375,
-0.08056640625,
-0.39501953125,
0.6865234375,
-0.45556640625,
-0.050994873046875,
0.489990234375,
0.27490234375,
-0.188232421875,
0.32568359375,
-0.173828125,
0.343505859375,
1.1201171875,
1.0244140625,
-0.400390625,
1.0615234375,
-0.2890625,
-0.509765625,
-0.031402587890625,
0.1180419921875,
-0.321044921875,
-0.92822265625,
-0.427001953125,
-0.218994140625,
0.736328125,
0.1572265625,
0.31103515625,
0.8037109375,
-0.20849609375,
0.70654296875,
-0.93115234375,
0.12237548828125,
0.453125,
0.1375732421875,
0.437255859375,
0.059326171875,
0.274658203125,
-0.1287841796875,
-0.73486328125,
1.072265625,
-0.77392578125,
-0.0238037109375,
0.6845703125,
-0.043548583984375,
-0.1595458984375,
0.193359375,
0.11065673828125,
0.448974609375,
-0.1436767578125,
0.814453125,
0.787109375,
-0.5791015625,
0.66015625,
-0.1483154296875,
0.15966796875,
1.6181640625,
0.4033203125,
-0.0887451171875,
0.8125,
0.25048828125,
-0.369384765625,
0.437255859375,
-0.85791015625,
0.787109375,
-0.00827789306640625,
-0.109130859375,
-0.034698486328125,
-0.0018978118896484375,
0.1920166015625,
0.397705078125,
0.465576171875,
0.38037109375,
-0.219482421875,
0.2384033203125,
-0.326904296875,
0.56005859375,
-0.37646484375,
0.8984375,
-0.50830078125,
-0.35205078125,
0.00872039794921875,
-0.23974609375,
-0.2320556640625,
-0.11328125,
-0.043975830078125,
0.966796875,
0.6279296875,
1.1962890625,
0.79248046875,
-0.465576171875,
0.55126953125,
0.322021484375,
-0.22509765625,
0.3583984375,
0.52392578125,
0.64697265625,
0.4443359375,
0.269287109375,
-0.1878662109375,
-0.21826171875,
-0.39404296875,
-0.89892578125,
-0.00919342041015625,
0.74267578125,
-0.296630859375,
0.1553955078125,
-0.27685546875,
-0.0361328125,
-0.703125,
-0.203857421875,
-0.1563720703125,
-1.091796875,
-0.354248046875,
0.591796875,
-0.421142578125,
0.55810546875,
-0.5556640625,
-0.375,
0.6708984375,
1.2216796875,
-0.49951171875,
0.261474609375,
0.393798828125,
0.361083984375,
-0.469482421875,
0.2054443359375,
0.012237548828125,
-0.33544921875,
-0.74462890625,
0.57763671875,
-0.06304931640625,
-0.0291748046875,
-0.1781005859375,
0.826171875,
0.1680908203125,
0.291748046875,
-0.08062744140625,
-0.364501953125,
0.427001953125,
1.00390625,
-0.25634765625,
0.619140625,
0.329833984375,
0.88720703125,
0.2568359375,
0.44189453125,
0.365478515625,
-0.176025390625,
0.4072265625,
0.69482421875,
-0.0117034912109375,
0.11444091796875,
0.206298828125,
0.3232421875,
0.380126953125,
0.2841796875,
0.34033203125,
0.96826171875,
0.1617431640625,
-0.1712646484375,
-0.5283203125,
0.365478515625,
-0.442138671875,
1.2646484375,
0.58203125,
0.294921875,
-0.103271484375,
-0.167724609375,
0.537109375,
0.86279296875,
-0.8544921875,
-0.93310546875,
0.33935546875,
-0.03961181640625,
-0.0921630859375,
-0.329833984375,
0.2493896484375,
0.439208984375,
0.409912109375,
0.23828125,
-0.162353515625,
-0.69970703125,
-0.6611328125,
-1.09765625,
-1,
-0.63427734375,
-0.81201171875,
-0.46484375,
0.414306640625,
-0.650390625,
-0.055023193359375,
-0.60009765625,
-0.37060546875,
0.00653839111328125,
-1.04296875,
0.44970703125,
0.07861328125,
0.568359375,
-0.921875,
0.487548828125,
0.42919921875,
1.1865234375,
-0.8388671875,
0.034912109375,
-0.3076171875,
-0.513671875,
-0.08941650390625,
0.129638671875,
0.369873046875,
0.12054443359375,
-0.521484375,
-0.775390625,
-0.282470703125,
0.248046875,
-0.46337890625,
0.290771484375,
-0.69580078125,
1.185546875,
0.509765625,
-0.28857421875,
0.5634765625,
0.67138671875,
-0.57763671875,
0.499755859375,
0.32763671875,
0.501953125,
-0.6279296875,
1.42578125,
0.33544921875,
0.490966796875,
-0.290771484375,
-0.2427978515625,
-0.73876953125,
0.2037353515625,
0.16748046875,
-0.5009765625,
-0.58251953125,
0.84423828125,
-0.08184814453125,
-1.162109375,
0.459228515625,
-1.19921875,
-0.65869140625,
-0.05126953125,
-0.6591796875,
0.58349609375,
1.2431640625,
0.36474609375,
-0.10247802734375,
-0.37744140625,
-0.358642578125,
0.252685546875,
0.25146484375,
-0.222900390625,
-0.72900390625,
0.5830078125,
-0.23046875,
0.320068359375,
0.343017578125,
-0.484375,
0.019989013671875,
0.09185791015625,
0.233154296875,
0.63427734375,
0.372314453125,
0.2081298828125,
-0.2198486328125,
0.826171875,
-1.328125,
-0.2080078125,
-0.257568359375,
0.6240234375,
0.0792236328125,
0.52734375,
0.54052734375,
-0.1834716796875,
-0.53173828125,
-1.17578125,
0.63916015625,
0.2489013671875,
0.74609375,
-0.6416015625,
0.908203125,
0.1558837890625,
-0.61669921875,
0.59375,
-1.1103515625,
-0.266845703125,
1.2109375,
-0.029266357421875,
0.52978515625,
-0.5947265625,
0.1630859375,
-0.060882568359375,
-0.27685546875,
0.3818359375,
0.239501953125,
0.73388671875,
-0.30615234375,
-0.7431640625,
-0.308349609375,
0.260986328125,
-0.225341796875,
-0.873046875,
-0.01666259765625,
-0.87548828125,
-0.96875,
-0.607421875,
0.607421875,
0.492919921875,
0.493408203125,
0.313720703125,
-0.08294677734375,
0.2220458984375,
0.5205078125,
0.29443359375,
-0.35546875,
0.0745849609375,
-0.7060546875,
0.70849609375,
0.2034912109375,
-0.447998046875,
-0.6474609375,
-0.1787109375,
-0.5302734375,
-0.0321044921875,
0.058563232421875,
-0.1199951171875,
-1.2197265625,
0.313720703125,
0.2022705078125,
0.53173828125,
-0.398193359375,
-0.2626953125,
-0.368896484375,
0.6953125,
0.045501708984375,
-0.9599609375,
0.162109375,
-0.69287109375,
0.403564453125,
0.68408203125,
0.04345703125,
-0.552734375,
-0.43505859375,
-0.93798828125,
-0.6337890625,
0.625,
0.87451171875,
-0.391845703125,
0.54638671875,
-1.4462890625,
0.75732421875,
0.281005859375,
-0.293212890625,
0.09088134765625,
-0.2083740234375,
0.166259765625,
0.11309814453125,
0.2479248046875,
-0.69091796875,
-0.455810546875,
0.06658935546875,
-1.0205078125,
0.448486328125,
-0.41748046875,
0.006500244140625,
0.1849365234375,
-0.403076171875,
-0.38134765625,
0.6279296875,
-0.30029296875,
0.5107421875,
-0.331787109375,
0.787109375,
-0.8330078125,
-0.6494140625,
0.418212890625,
-0.352294921875,
-0.30859375,
1.0380859375,
-0.09661865234375,
-0.51318359375,
0.1806640625,
0.54736328125,
-0.459228515625,
0.0435791015625,
-0.452392578125,
0.572265625,
0.002902984619140625,
-0.283203125,
0.1917724609375,
-0.449951171875,
0.72998046875,
-0.1688232421875,
-0.97705078125,
-0.22412109375,
-1.16796875,
-0.4267578125,
-0.4501953125,
-0.2445068359375,
-0.0184478759765625,
0.06866455078125,
-0.140869140625,
-0.13037109375,
-0.3720703125,
-0.556640625,
-0.6298828125,
-0.33935546875,
-0.6494140625,
0.537109375,
0.052001953125,
0.7041015625,
0.12225341796875,
-0.60888671875,
0.10931396484375,
0.00995635986328125,
0.10223388671875,
-0.517578125,
-0.1429443359375,
-0.243408203125,
-0.1361083984375,
-0.033935546875,
0.59033203125,
0.0199432373046875,
0.441162109375,
0.9150390625,
0.283935546875,
0.38623046875,
0.259521484375,
-0.677734375,
1.09765625,
0.08929443359375,
-1.2060546875,
-0.319580078125,
0.5732421875,
-0.2481689453125,
0.89013671875,
-0.0625,
-0.65185546875,
-0.8349609375,
-0.865234375,
0.413818359375,
-1.197265625,
-0.31884765625,
-1.2529296875,
-0.330810546875,
0.05511474609375,
0.359375,
-0.460205078125,
-0.77978515625,
0.27978515625,
-0.86474609375,
0.392333984375,
-0.810546875,
-0.14892578125,
-0.66748046875,
-0.339111328125,
-0.42626953125,
1.1728515625,
0.0987548828125,
0.4619140625,
0.1904296875,
0.077880859375,
0.321533203125,
-0.0017137527465820312,
-0.8115234375,
-0.08306884765625,
-0.08062744140625,
-0.0264892578125,
-0.0179290771484375,
-0.0225677490234375,
-0.487548828125,
0.74609375,
-0.70703125,
0.38330078125,
-0.1807861328125,
-0.29345703125,
-0.2115478515625,
-0.022552490234375,
0.6982421875,
-0.322021484375,
0.1038818359375,
-0.08831787109375,
0.560546875,
1.05078125,
-0.5322265625,
-0.403564453125,
-0.76171875,
-0.2763671875,
-1.2880859375,
0.654296875,
-0.853515625,
0.355712890625,
-0.79541015625,
0.12078857421875,
1.220703125,
-0.5673828125,
0.58447265625,
1.5029296875,
0.49462890625,
0.19921875,
-0.59521484375,
0.71142578125,
0.9970703125,
-0.583984375,
-0.1973876953125,
-0.039459228515625,
-0.7939453125,
0.042694091796875,
-0.01300811767578125,
-1.3154296875,
-0.806640625,
0.333740234375,
1.2626953125,
-0.284912109375,
0.3876953125,
0.264404296875,
-1.09375,
-0.81689453125,
0.99951171875,
0.222900390625,
0.253662109375,
1.0869140625,
-0.24560546875,
-0.5625,
0.4775390625,
-0.1517333984375,
-0.110595703125,
-0.155517578125,
1.0634765625,
-0.0496826171875,
-0.537109375,
1.359375,
0.8037109375,
-1.154296875,
-1.1025390625,
-0.52587890625,
-0.1939697265625,
-0.08734130859375,
-0.634765625,
0.0152587890625,
0.432373046875,
-0.875,
0.03546142578125,
0.480224609375,
-0.36474609375,
0.1302490234375,
0.0794677734375,
-0.0340576171875,
-0.60498046875,
0.370361328125,
0.8095703125,
-0.5224609375,
-0.386962890625,
-1.3828125,
-0.1571044921875,
-0.0777587890625,
0.04656982421875,
0.360595703125,
-0.1842041015625,
0.59912109375,
0.10650634765625,
0.426513671875,
0.80810546875,
-0.435302734375,
-0.447265625,
0.445068359375,
-0.94970703125,
-0.56689453125,
-0.1778564453125,
0.42724609375,
-0.046478271484375,
0.62255859375,
-0.5712890625,
-0.09027099609375,
0.413818359375,
0.26904296875,
-0.07427978515625,
-0.720703125,
-0.379150390625,
-1.1748046875,
-0.53076171875,
-0.326171875,
-0.642578125,
0.02276611328125,
0.1832275390625,
0.064453125,
-0.406005859375,
0.2080078125,
0.66748046875,
-0.69287109375,
0.75390625,
-0.84716796875,
0.355224609375,
-1.0283203125,
-0.12841796875,
-0.369873046875,
-0.265625,
-0.49853515625,
-0.1224365234375,
-0.341064453125,
0.1641845703125,
0.09039306640625,
0.4306640625,
-0.365234375,
0.59130859375,
-0.1346435546875,
-0.30029296875,
0.36865234375,
0.202880859375,
0.0178375244140625,
0.87255859375,
0.6318359375,
-0.2197265625,
0.329833984375,
-0.36962890625,
-0.499267578125,
0.11334228515625,
0.7958984375,
0.55078125,
-0.09771728515625,
-0.01360321044921875,
-0.2330322265625,
0.1715087890625,
-1.2294921875,
0.061187744140625,
-0.390869140625,
0.2354736328125,
0.2337646484375,
0.0908203125,
0.043487548828125,
1.1044921875,
-0.451171875,
0.3759765625,
-0.055084228515625,
0.36376953125,
0.27001953125,
0.2216796875,
0.226806640625,
0.701171875,
-0.0865478515625,
-0.25732421875,
0.067626953125,
0.155517578125,
0.20751953125,
0.0093994140625,
-0.2413330078125,
-0.77734375,
-0.464111328125,
-0.189208984375,
0.0035495758056640625,
0.223388671875,
0.33935546875,
-0.57861328125,
0.3056640625,
-0.285888671875,
-0.6669921875,
0.006008148193359375,
-1.26953125,
-0.80126953125,
0.285888671875,
0.11041259765625,
-0.42626953125,
-0.352294921875,
-0.541015625,
-0.1307373046875,
0.273193359375,
0.35205078125,
-0.35009765625,
0.11761474609375,
-0.47314453125,
0.413818359375,
-0.267333984375,
0.1636962890625,
0.301025390625,
0.200439453125,
-0.79052734375,
-0.751953125,
0.0125579833984375,
1.046875,
0.1541748046875,
0.0084991455078125,
-0.2237548828125,
0.10791015625,
-0.174072265625,
0.276123046875,
-0.51513671875,
-0.0482177734375,
-0.1549072265625,
0.1954345703125,
-0.87939453125,
-0.0941162109375,
-0.01250457763671875,
0.6044921875,
0.106201171875,
-0.223388671875,
-0.853515625,
0.74365234375,
0.6953125,
-0.164794921875,
0.314208984375,
0.370361328125,
0.61279296875,
0.187744140625,
-0.3359375,
-0.5380859375,
0.8173828125,
0.88720703125,
0.580078125,
-0.281982421875,
0.4580078125,
0.724609375,
-0.256103515625,
-0.1781005859375,
0.4140625,
0.08343505859375,
-0.0736083984375,
0.1717529296875,
-0.1412353515625,
-0.145751953125,
0.322509765625,
-0.1981201171875,
0.56494140625,
-0.1827392578125,
0.0743408203125,
-0.082763671875,
-0.865234375,
0.69677734375,
-0.29150390625,
-0.37890625,
-0.040435791015625,
-0.401123046875,
0.40478515625,
0.62060546875,
-0.152099609375,
-0.11553955078125,
0.91064453125,
0.8212890625,
0.345703125,
0.60888671875,
0.343994140625,
0.251953125,
-0.57763671875,
-0.0151214599609375,
0.2607421875,
0.00855255126953125,
-0.6005859375,
-0.505859375,
-1.1240234375,
0.74658203125,
-0.4130859375,
-0.342529296875,
0.45703125,
-0.4091796875,
0.0615234375,
-0.406005859375,
0.947265625,
-0.6123046875,
0.09368896484375,
0.457275390625,
-0.487060546875,
-0.568359375,
0.76123046875,
-0.300048828125,
0.2196044921875,
0.09332275390625,
1.380859375,
-0.166748046875,
1.7578125,
0.457763671875,
-0.3154296875,
0.14697265625,
0.7880859375,
-0.208984375,
-0.66162109375,
-0.056549072265625,
-0.425048828125,
-0.224609375,
-0.7880859375,
-0.5615234375,
-0.69091796875,
0.740234375,
-0.147216796875,
-0.65869140625,
-0.15771484375,
0.259521484375,
-0.6455078125,
0.74658203125,
0.2061767578125,
0.072021484375,
0.10089111328125,
0.03472900390625,
-0.47021484375,
-0.59228515625,
0.44189453125,
-0.3310546875,
0.0567626953125,
-0.6865234375,
-0.4462890625,
-0.5009765625,
-0.34130859375,
-0.3486328125,
-0.1282958984375,
-0.4443359375,
-0.81005859375,
0.69091796875,
0.61279296875,
0.595703125,
0.183837890625,
-0.496826171875,
0.1781005859375,
0.60107421875,
1.099609375,
-0.0667724609375,
0.5771484375,
0.50048828125,
-0.1990966796875,
0.08251953125,
-0.5908203125,
0.45947265625,
0.458251953125,
0.175537109375,
-0.438232421875,
0.26904296875,
-0.818359375,
-1.1904296875,
-0.2481689453125,
0.7509765625,
0.50048828125,
-0.7841796875,
-1.19140625,
-0.307861328125,
-1.083984375,
-0.14501953125,
-0.490478515625,
0.94580078125,
-0.250244140625,
-0.0445556640625,
-0.090576171875,
-1.1953125,
4.203125,
0.84765625,
1.10546875,
0.294189453125,
0.302490234375,
1.0859375,
0.2783203125,
-0.73388671875,
-0.27685546875,
-0.186767578125,
0.59912109375,
-0.462158203125,
-0.1251220703125,
1.1953125,
0.2076416015625,
0.970703125,
-0.857421875,
0.024658203125,
0.41796875,
-1.0625,
-0.658203125,
0.2100830078125,
0.152587890625,
0.607421875,
0.055328369140625,
0.263916015625,
0.84521484375,
-0.6455078125,
-0.5810546875,
-0.41259765625,
-0.0330810546875,
-0.28857421875,
0.75390625,
0.296630859375,
-0.26220703125,
0.62109375,
0.0799560546875,
-0.440673828125,
0.04754638671875,
0.306396484375,
0.2359619140625,
0.0740966796875,
0.310302734375,
-0.58056640625,
-0.1826171875,
0.4052734375,
-0.81396484375,
0.52197265625,
0.2308349609375,
-0.7236328125,
0.861328125,
0.24658203125,
0.36572265625,
-0.421875,
-0.921875,
0.1617431640625,
0.2607421875,
0.0010623931884765625,
-0.430908203125,
0.541015625,
0.387939453125,
0.346923828125,
-0.057098388671875,
0.88671875,
-1.1669921875,
1.134765625,
-0.2152099609375,
0.428466796875,
-0.70654296875,
-0.007503509521484375,
-0.08599853515625,
-0.194580078125,
-0.352783203125,
-0.195556640625,
0.6611328125,
0.5234375,
0.0460205078125,
0.4013671875,
0.23876953125,
-0.53662109375,
0.402099609375,
-0.2369384765625,
-0.4892578125,
-0.08404541015625,
0.78125,
1.236328125,
-0.7216796875,
-0.2509765625,
-0.1600341796875,
0.66259765625,
0.7412109375,
0.76806640625,
0.1536865234375,
-0.7333984375,
-0.6455078125
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Returning back to problem solving, Gildong is now studying about palindromes. He learned that a palindrome is a string that is the same as its reverse. For example, strings "pop", "noon", "x", and "kkkkkk" are palindromes, while strings "moon", "tv", and "abab" are not. An empty string is also a palindrome.
Gildong loves this concept so much, so he wants to play with it. He has n distinct strings of equal length m. He wants to discard some of the strings (possibly none or all) and reorder the remaining strings so that the concatenation becomes a palindrome. He also wants the palindrome to be as long as possible. Please help him find one.
Input
The first line contains two integers n and m (1 ≤ n ≤ 100, 1 ≤ m ≤ 50) — the number of strings and the length of each string.
Next n lines contain a string of length m each, consisting of lowercase Latin letters only. All strings are distinct.
Output
In the first line, print the length of the longest palindrome string you made.
In the second line, print that palindrome. If there are multiple answers, print any one of them. If the palindrome is empty, print an empty line or don't print this line at all.
Examples
Input
3 3
tab
one
bat
Output
6
tabbat
Input
4 2
oo
ox
xo
xx
Output
6
oxxxxo
Input
3 5
hello
codef
orces
Output
0
Input
9 4
abab
baba
abcd
bcde
cdef
defg
wxyz
zyxw
ijji
Output
20
ababwxyzijjizyxwbaba
Note
In the first example, "battab" is also a valid answer.
In the second example, there can be 4 different valid answers including the sample output. We are not going to provide any hints for what the others are.
In the third example, the empty string is the only valid palindrome string.
Submitted Solution:
```
from collections import defaultdict,Counter
n,m = map(int,input().strip().split())
ls = []
for _ in range(n):
st = input()
ls.append(st)
start = ""
end = ""
temp = ""
ans = 0
dic = defaultdict(int)
f = 1
for i,val in enumerate(ls):
if i not in dic:
for j,value in enumerate(ls):
if j not in dic:
if i!=j and val==value[::-1]:
dic[i] = 1
dic[j] = 1
ans += 2*m
start += val
end = value+end
elif val==value[::-1] and f==1:
ans += m
temp = val
f = 0
print(ans)
if ans>0:
print(start+temp+end)
```
Yes
| 10,902 | [
0.022705078125,
-0.2626953125,
-0.2098388671875,
0.3359375,
-0.304931640625,
-0.431884765625,
-0.11322021484375,
0.0307464599609375,
0.110107421875,
0.86083984375,
0.76171875,
0.19482421875,
0.027374267578125,
-1.1962890625,
-1.0322265625,
-0.301513671875,
-0.734375,
-0.79248046875,
-0.405029296875,
-0.1600341796875,
-0.08453369140625,
0.00835418701171875,
-1.5361328125,
-0.260009765625,
0.1627197265625,
0.92529296875,
0.2176513671875,
0.447265625,
0.93603515625,
1.4072265625,
-0.397705078125,
-0.2288818359375,
0.66796875,
-1.1201171875,
-0.2296142578125,
-0.489013671875,
0.44140625,
-0.75390625,
-0.2364501953125,
-0.58056640625,
-0.05499267578125,
-0.3720703125,
0.5947265625,
-0.8671875,
-1.205078125,
0.004848480224609375,
-0.46533203125,
-0.47509765625,
-0.2100830078125,
-0.8955078125,
0.07763671875,
-0.390869140625,
0.33447265625,
0.07501220703125,
-0.0557861328125,
-0.051910400390625,
-0.060211181640625,
0.0212249755859375,
-0.61767578125,
0.283203125,
0.445068359375,
0.382080078125,
-0.468994140625,
-1.0703125,
-0.6826171875,
0.4736328125,
-0.071044921875,
0.0478515625,
0.304443359375,
-0.60107421875,
-0.318115234375,
0.223388671875,
-0.1622314453125,
-0.36474609375,
-0.03594970703125,
0.21826171875,
0.5595703125,
0.4599609375,
-1.0146484375,
0.71826171875,
0.09423828125,
1.0341796875,
-0.01543426513671875,
0.1756591796875,
-0.237060546875,
-0.78271484375,
0.250244140625,
0.288818359375,
0.319091796875,
-0.0718994140625,
-0.398681640625,
0.6796875,
-0.47119140625,
-0.0287933349609375,
0.476318359375,
0.2783203125,
-0.216552734375,
0.305419921875,
-0.1700439453125,
0.338134765625,
1.130859375,
1.0458984375,
-0.419921875,
1.080078125,
-0.2646484375,
-0.50927734375,
-0.052398681640625,
0.09912109375,
-0.313720703125,
-0.92041015625,
-0.416015625,
-0.2125244140625,
0.71484375,
0.196533203125,
0.31689453125,
0.81103515625,
-0.18798828125,
0.7197265625,
-0.9716796875,
0.11981201171875,
0.44970703125,
0.1392822265625,
0.436279296875,
-0.005229949951171875,
0.301513671875,
-0.1373291015625,
-0.712890625,
1.0576171875,
-0.7900390625,
-0.0283355712890625,
0.6591796875,
-0.01129150390625,
-0.1552734375,
0.1888427734375,
0.0985107421875,
0.43798828125,
-0.1690673828125,
0.82080078125,
0.76806640625,
-0.6123046875,
0.65869140625,
-0.13427734375,
0.1378173828125,
1.6162109375,
0.399169921875,
-0.0657958984375,
0.81201171875,
0.26123046875,
-0.322998046875,
0.4267578125,
-0.8828125,
0.7890625,
-0.04852294921875,
-0.10076904296875,
-0.044708251953125,
0.002201080322265625,
0.1705322265625,
0.427734375,
0.409423828125,
0.365234375,
-0.2305908203125,
0.204833984375,
-0.28955078125,
0.59423828125,
-0.37060546875,
0.8984375,
-0.5546875,
-0.384765625,
0.0058135986328125,
-0.245361328125,
-0.19921875,
-0.1243896484375,
-0.036834716796875,
0.9609375,
0.65576171875,
1.18359375,
0.798828125,
-0.4658203125,
0.541015625,
0.34033203125,
-0.199462890625,
0.376220703125,
0.49560546875,
0.6484375,
0.42822265625,
0.2548828125,
-0.177001953125,
-0.2335205078125,
-0.423583984375,
-0.8994140625,
0.00518798828125,
0.72216796875,
-0.339599609375,
0.1572265625,
-0.267333984375,
-0.029541015625,
-0.67236328125,
-0.246337890625,
-0.1541748046875,
-1.0703125,
-0.32470703125,
0.57080078125,
-0.40478515625,
0.6005859375,
-0.572265625,
-0.3427734375,
0.66650390625,
1.25,
-0.4990234375,
0.260986328125,
0.4345703125,
0.38330078125,
-0.4912109375,
0.18896484375,
0.03887939453125,
-0.32763671875,
-0.7470703125,
0.55908203125,
-0.08514404296875,
-0.01580810546875,
-0.182373046875,
0.810546875,
0.14794921875,
0.288330078125,
-0.0809326171875,
-0.35205078125,
0.40380859375,
0.9892578125,
-0.274169921875,
0.6435546875,
0.304931640625,
0.841796875,
0.2626953125,
0.395751953125,
0.357666015625,
-0.14306640625,
0.387939453125,
0.71826171875,
0.00632476806640625,
0.137939453125,
0.188232421875,
0.365234375,
0.33203125,
0.27490234375,
0.3564453125,
0.96240234375,
0.136962890625,
-0.18212890625,
-0.5009765625,
0.396484375,
-0.479248046875,
1.2841796875,
0.59033203125,
0.26806640625,
-0.1141357421875,
-0.1759033203125,
0.56298828125,
0.81982421875,
-0.87158203125,
-0.90185546875,
0.386962890625,
-0.0271148681640625,
-0.048553466796875,
-0.31103515625,
0.23388671875,
0.46923828125,
0.390380859375,
0.1966552734375,
-0.1689453125,
-0.7060546875,
-0.6494140625,
-1.109375,
-0.9970703125,
-0.65087890625,
-0.77392578125,
-0.441162109375,
0.41552734375,
-0.65625,
-0.057037353515625,
-0.5751953125,
-0.350830078125,
-0.0215301513671875,
-1.0009765625,
0.431640625,
0.06640625,
0.53857421875,
-0.91259765625,
0.47119140625,
0.421875,
1.2158203125,
-0.80517578125,
0.04498291015625,
-0.296630859375,
-0.4833984375,
-0.10955810546875,
0.177001953125,
0.336669921875,
0.1524658203125,
-0.53076171875,
-0.77734375,
-0.291015625,
0.2132568359375,
-0.4208984375,
0.281494140625,
-0.6689453125,
1.2021484375,
0.525390625,
-0.3095703125,
0.57421875,
0.66162109375,
-0.57958984375,
0.46826171875,
0.317138671875,
0.478515625,
-0.60595703125,
1.427734375,
0.354248046875,
0.493896484375,
-0.322509765625,
-0.21923828125,
-0.7392578125,
0.1859130859375,
0.1693115234375,
-0.53076171875,
-0.59033203125,
0.83642578125,
-0.09979248046875,
-1.150390625,
0.450439453125,
-1.18359375,
-0.65185546875,
-0.039703369140625,
-0.662109375,
0.56396484375,
1.1923828125,
0.326171875,
-0.140869140625,
-0.3720703125,
-0.30810546875,
0.253662109375,
0.294189453125,
-0.2210693359375,
-0.73583984375,
0.57861328125,
-0.2318115234375,
0.289794921875,
0.383056640625,
-0.486572265625,
0.027618408203125,
0.09771728515625,
0.2467041015625,
0.61279296875,
0.38818359375,
0.20263671875,
-0.250244140625,
0.78369140625,
-1.322265625,
-0.19921875,
-0.230712890625,
0.60205078125,
0.09735107421875,
0.46728515625,
0.490966796875,
-0.18603515625,
-0.541015625,
-1.1943359375,
0.595703125,
0.2349853515625,
0.73388671875,
-0.6708984375,
0.90966796875,
0.12005615234375,
-0.60546875,
0.63330078125,
-1.09765625,
-0.2734375,
1.2421875,
-0.04150390625,
0.5458984375,
-0.62548828125,
0.14599609375,
-0.033538818359375,
-0.224609375,
0.387939453125,
0.25,
0.71533203125,
-0.273681640625,
-0.720703125,
-0.28076171875,
0.281005859375,
-0.21337890625,
-0.84814453125,
0.0055694580078125,
-0.90087890625,
-0.9267578125,
-0.60595703125,
0.5888671875,
0.493896484375,
0.5205078125,
0.346923828125,
-0.06793212890625,
0.2293701171875,
0.48779296875,
0.2919921875,
-0.3525390625,
0.0792236328125,
-0.69677734375,
0.7060546875,
0.208740234375,
-0.473388671875,
-0.61865234375,
-0.1802978515625,
-0.52197265625,
-0.0152130126953125,
0.08123779296875,
-0.098876953125,
-1.244140625,
0.279541015625,
0.2301025390625,
0.5537109375,
-0.361083984375,
-0.28466796875,
-0.388671875,
0.71337890625,
0.044464111328125,
-0.9482421875,
0.1744384765625,
-0.73876953125,
0.404052734375,
0.6552734375,
0.0198974609375,
-0.55859375,
-0.45556640625,
-0.9169921875,
-0.58154296875,
0.64501953125,
0.83935546875,
-0.374267578125,
0.5478515625,
-1.41015625,
0.740234375,
0.264404296875,
-0.29638671875,
0.1326904296875,
-0.227783203125,
0.161865234375,
0.07940673828125,
0.2264404296875,
-0.63525390625,
-0.44189453125,
0.09991455078125,
-1.0302734375,
0.45751953125,
-0.452880859375,
-0.01427459716796875,
0.18603515625,
-0.396240234375,
-0.364501953125,
0.583984375,
-0.288330078125,
0.50146484375,
-0.3466796875,
0.77001953125,
-0.82470703125,
-0.65283203125,
0.44384765625,
-0.3525390625,
-0.30517578125,
1.03125,
-0.11541748046875,
-0.50390625,
0.158203125,
0.52197265625,
-0.435302734375,
0.05230712890625,
-0.4560546875,
0.54150390625,
0.0194091796875,
-0.292236328125,
0.1270751953125,
-0.423583984375,
0.7294921875,
-0.1767578125,
-0.9716796875,
-0.232421875,
-1.1650390625,
-0.41015625,
-0.428955078125,
-0.2406005859375,
-0.035003662109375,
0.07366943359375,
-0.1512451171875,
-0.1541748046875,
-0.37744140625,
-0.59521484375,
-0.638671875,
-0.34423828125,
-0.70068359375,
0.552734375,
0.032623291015625,
0.72509765625,
0.07452392578125,
-0.64013671875,
0.131103515625,
-0.0377197265625,
0.09295654296875,
-0.53076171875,
-0.1429443359375,
-0.224853515625,
-0.138427734375,
-0.0662841796875,
0.59423828125,
-0.006694793701171875,
0.453369140625,
0.91259765625,
0.302978515625,
0.353515625,
0.276611328125,
-0.65283203125,
1.076171875,
0.10235595703125,
-1.173828125,
-0.3115234375,
0.60009765625,
-0.270751953125,
0.90234375,
-0.0760498046875,
-0.63671875,
-0.81494140625,
-0.86962890625,
0.435791015625,
-1.169921875,
-0.30810546875,
-1.26171875,
-0.328857421875,
0.0369873046875,
0.3525390625,
-0.491455078125,
-0.78173828125,
0.2783203125,
-0.83203125,
0.376220703125,
-0.7998046875,
-0.1383056640625,
-0.69287109375,
-0.348388671875,
-0.432861328125,
1.1708984375,
0.082275390625,
0.4521484375,
0.199951171875,
0.12939453125,
0.299072265625,
0.0010280609130859375,
-0.80712890625,
-0.06866455078125,
-0.09832763671875,
-0.0241851806640625,
-0.0089874267578125,
-0.016571044921875,
-0.485595703125,
0.7607421875,
-0.74853515625,
0.3740234375,
-0.1734619140625,
-0.32861328125,
-0.1798095703125,
-0.0372314453125,
0.66796875,
-0.318115234375,
0.1270751953125,
-0.09588623046875,
0.5615234375,
1.02734375,
-0.5390625,
-0.40625,
-0.8134765625,
-0.2841796875,
-1.2861328125,
0.65625,
-0.8349609375,
0.3671875,
-0.7744140625,
0.134033203125,
1.208984375,
-0.59228515625,
0.56298828125,
1.505859375,
0.47998046875,
0.2105712890625,
-0.61669921875,
0.73876953125,
0.9990234375,
-0.55810546875,
-0.1787109375,
-0.03778076171875,
-0.802734375,
0.07757568359375,
-0.035064697265625,
-1.3056640625,
-0.81640625,
0.322998046875,
1.3134765625,
-0.27783203125,
0.319580078125,
0.281005859375,
-1.0791015625,
-0.78955078125,
0.998046875,
0.21630859375,
0.257568359375,
1.0595703125,
-0.2744140625,
-0.51708984375,
0.453857421875,
-0.1651611328125,
-0.161865234375,
-0.155517578125,
1.0419921875,
-0.049530029296875,
-0.5107421875,
1.3603515625,
0.7470703125,
-1.1416015625,
-1.0634765625,
-0.5390625,
-0.1614990234375,
-0.06414794921875,
-0.6337890625,
-0.039306640625,
0.47509765625,
-0.88720703125,
-0.004421234130859375,
0.45068359375,
-0.38525390625,
0.14453125,
0.1129150390625,
-0.040618896484375,
-0.58251953125,
0.38232421875,
0.7919921875,
-0.51806640625,
-0.40283203125,
-1.3447265625,
-0.1580810546875,
-0.061004638671875,
0.06121826171875,
0.384765625,
-0.1722412109375,
0.578125,
0.0928955078125,
0.40478515625,
0.8046875,
-0.443603515625,
-0.448974609375,
0.468994140625,
-0.90966796875,
-0.5849609375,
-0.1488037109375,
0.416748046875,
-0.0389404296875,
0.607421875,
-0.58056640625,
-0.10711669921875,
0.459228515625,
0.234375,
-0.1058349609375,
-0.734375,
-0.3427734375,
-1.1787109375,
-0.49169921875,
-0.31591796875,
-0.65966796875,
0.048431396484375,
0.1737060546875,
0.065673828125,
-0.422119140625,
0.243408203125,
0.65234375,
-0.6689453125,
0.708984375,
-0.87353515625,
0.3779296875,
-1.0009765625,
-0.11688232421875,
-0.37939453125,
-0.233642578125,
-0.482666015625,
-0.1622314453125,
-0.3291015625,
0.1658935546875,
0.06365966796875,
0.420166015625,
-0.371826171875,
0.60595703125,
-0.15283203125,
-0.338623046875,
0.3642578125,
0.2001953125,
0.035064697265625,
0.869140625,
0.6259765625,
-0.2135009765625,
0.361083984375,
-0.32470703125,
-0.53759765625,
0.11004638671875,
0.81103515625,
0.525390625,
-0.0947265625,
-0.01078033447265625,
-0.267578125,
0.2330322265625,
-1.2529296875,
0.132080078125,
-0.388671875,
0.301513671875,
0.241943359375,
0.0908203125,
0.047149658203125,
1.1259765625,
-0.4541015625,
0.36376953125,
-0.032501220703125,
0.345947265625,
0.282470703125,
0.252197265625,
0.21728515625,
0.65869140625,
-0.07440185546875,
-0.28955078125,
0.07684326171875,
0.1575927734375,
0.1766357421875,
0.03997802734375,
-0.233642578125,
-0.7685546875,
-0.46240234375,
-0.210205078125,
0.0005259513854980469,
0.250732421875,
0.387451171875,
-0.53369140625,
0.307861328125,
-0.290283203125,
-0.66064453125,
-0.0440673828125,
-1.263671875,
-0.82177734375,
0.301513671875,
0.049652099609375,
-0.376220703125,
-0.387451171875,
-0.52490234375,
-0.1468505859375,
0.2255859375,
0.364013671875,
-0.358642578125,
0.16552734375,
-0.4765625,
0.423583984375,
-0.31298828125,
0.1549072265625,
0.303955078125,
0.1920166015625,
-0.7724609375,
-0.787109375,
0.003017425537109375,
1.095703125,
0.1429443359375,
-0.006927490234375,
-0.2213134765625,
0.11566162109375,
-0.172607421875,
0.2646484375,
-0.4853515625,
-0.05987548828125,
-0.134765625,
0.2032470703125,
-0.8642578125,
-0.0926513671875,
-0.06268310546875,
0.56787109375,
0.08880615234375,
-0.2379150390625,
-0.82177734375,
0.79443359375,
0.70751953125,
-0.1407470703125,
0.280029296875,
0.34912109375,
0.57275390625,
0.1451416015625,
-0.322021484375,
-0.5732421875,
0.841796875,
0.9013671875,
0.568359375,
-0.294921875,
0.443359375,
0.69921875,
-0.260009765625,
-0.1829833984375,
0.4404296875,
0.1483154296875,
-0.10791015625,
0.19921875,
-0.1478271484375,
-0.1710205078125,
0.337890625,
-0.205322265625,
0.58447265625,
-0.2083740234375,
0.08331298828125,
-0.07080078125,
-0.8486328125,
0.70556640625,
-0.34130859375,
-0.353759765625,
-0.0469970703125,
-0.40234375,
0.39501953125,
0.6357421875,
-0.1258544921875,
-0.1153564453125,
0.91748046875,
0.81689453125,
0.339599609375,
0.6181640625,
0.374267578125,
0.2474365234375,
-0.59716796875,
-0.01678466796875,
0.24658203125,
0.02984619140625,
-0.65380859375,
-0.478759765625,
-1.10546875,
0.7431640625,
-0.414794921875,
-0.32080078125,
0.489013671875,
-0.40771484375,
0.08819580078125,
-0.455078125,
0.95947265625,
-0.59228515625,
0.10546875,
0.46240234375,
-0.499267578125,
-0.521484375,
0.7578125,
-0.2841796875,
0.2119140625,
0.0745849609375,
1.3408203125,
-0.11920166015625,
1.7421875,
0.442626953125,
-0.299072265625,
0.1717529296875,
0.74462890625,
-0.2410888671875,
-0.654296875,
-0.05120849609375,
-0.3896484375,
-0.193359375,
-0.77099609375,
-0.544921875,
-0.71484375,
0.7548828125,
-0.134033203125,
-0.65576171875,
-0.152099609375,
0.224365234375,
-0.62841796875,
0.75244140625,
0.2022705078125,
0.06768798828125,
0.1488037109375,
0.01538848876953125,
-0.463623046875,
-0.6015625,
0.41845703125,
-0.343017578125,
0.05645751953125,
-0.6650390625,
-0.451904296875,
-0.47216796875,
-0.3623046875,
-0.360107421875,
-0.1453857421875,
-0.4580078125,
-0.79345703125,
0.70556640625,
0.59521484375,
0.5947265625,
0.1578369140625,
-0.497314453125,
0.1651611328125,
0.5947265625,
1.0751953125,
-0.032440185546875,
0.599609375,
0.477294921875,
-0.1964111328125,
0.08795166015625,
-0.5498046875,
0.491455078125,
0.46142578125,
0.1654052734375,
-0.422607421875,
0.258056640625,
-0.8134765625,
-1.203125,
-0.210693359375,
0.73583984375,
0.50146484375,
-0.78759765625,
-1.1484375,
-0.28173828125,
-1.0888671875,
-0.156494140625,
-0.50341796875,
0.96630859375,
-0.21142578125,
-0.013519287109375,
-0.059234619140625,
-1.1826171875,
4.2265625,
0.853515625,
1.123046875,
0.313720703125,
0.300537109375,
1.0849609375,
0.27734375,
-0.70703125,
-0.276611328125,
-0.2431640625,
0.63671875,
-0.45263671875,
-0.1275634765625,
1.21484375,
0.226318359375,
0.97607421875,
-0.83544921875,
0.00687408447265625,
0.439453125,
-1.0185546875,
-0.68603515625,
0.2208251953125,
0.16015625,
0.640625,
0.041961669921875,
0.2763671875,
0.8681640625,
-0.646484375,
-0.5498046875,
-0.407958984375,
-0.01666259765625,
-0.303466796875,
0.7265625,
0.299072265625,
-0.26123046875,
0.5986328125,
0.0338134765625,
-0.4462890625,
0.0531005859375,
0.31982421875,
0.2108154296875,
0.0574951171875,
0.304443359375,
-0.55810546875,
-0.1937255859375,
0.3759765625,
-0.78662109375,
0.484619140625,
0.235595703125,
-0.7236328125,
0.86572265625,
0.268310546875,
0.344482421875,
-0.40087890625,
-0.89208984375,
0.13134765625,
0.27099609375,
-0.0007853507995605469,
-0.3876953125,
0.5234375,
0.4140625,
0.391357421875,
-0.039886474609375,
0.89453125,
-1.115234375,
1.1513671875,
-0.2349853515625,
0.43017578125,
-0.685546875,
-0.0082244873046875,
-0.1126708984375,
-0.1815185546875,
-0.339111328125,
-0.253173828125,
0.62548828125,
0.52099609375,
0.04742431640625,
0.43408203125,
0.263427734375,
-0.55029296875,
0.358154296875,
-0.276611328125,
-0.443359375,
-0.10223388671875,
0.77880859375,
1.22265625,
-0.7060546875,
-0.272216796875,
-0.1409912109375,
0.63916015625,
0.73193359375,
0.787109375,
0.14697265625,
-0.76318359375,
-0.5986328125
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Returning back to problem solving, Gildong is now studying about palindromes. He learned that a palindrome is a string that is the same as its reverse. For example, strings "pop", "noon", "x", and "kkkkkk" are palindromes, while strings "moon", "tv", and "abab" are not. An empty string is also a palindrome.
Gildong loves this concept so much, so he wants to play with it. He has n distinct strings of equal length m. He wants to discard some of the strings (possibly none or all) and reorder the remaining strings so that the concatenation becomes a palindrome. He also wants the palindrome to be as long as possible. Please help him find one.
Input
The first line contains two integers n and m (1 ≤ n ≤ 100, 1 ≤ m ≤ 50) — the number of strings and the length of each string.
Next n lines contain a string of length m each, consisting of lowercase Latin letters only. All strings are distinct.
Output
In the first line, print the length of the longest palindrome string you made.
In the second line, print that palindrome. If there are multiple answers, print any one of them. If the palindrome is empty, print an empty line or don't print this line at all.
Examples
Input
3 3
tab
one
bat
Output
6
tabbat
Input
4 2
oo
ox
xo
xx
Output
6
oxxxxo
Input
3 5
hello
codef
orces
Output
0
Input
9 4
abab
baba
abcd
bcde
cdef
defg
wxyz
zyxw
ijji
Output
20
ababwxyzijjizyxwbaba
Note
In the first example, "battab" is also a valid answer.
In the second example, there can be 4 different valid answers including the sample output. We are not going to provide any hints for what the others are.
In the third example, the empty string is the only valid palindrome string.
Submitted Solution:
```
import math
t=1
while(t):
x,y=map(int,input().split())
l=[]
j=[]
k=[]
m=[]
t1=[]
t2=[]
for i in range(x):
l1=input()
l.append(l1)
for i in range(x):
r=l[:i]+l[i+1:]
if l[i][::-1] in r:
j.append(l[i])
k.append(l[i][::-1])
if(l[i]==l[i][::-1]):
m.append(l[i])
for i in range(len(j)):
if j[i] not in t1 and j[i][::-1] not in t1:
t1.append(j[i])
t2.append(j[i][::-1])
str1=str()
str2=str()
for i in range(len(t1)):
str1=str1+t1[i]
for i in range(len(t2)-1,-1,-1):
str2=str2+t2[i]
if(len(m)>0):
print(len(str1+m[0]+str2))
print(str1+m[0]+str2)
elif(len(str1+str2)>0):
print(len(str1+str2))
print(str1+str2)
else:
print(0)
t=t-1
```
Yes
| 10,903 | [
0.0615234375,
-0.244384765625,
-0.2244873046875,
0.350341796875,
-0.30419921875,
-0.424560546875,
-0.1201171875,
0.052032470703125,
0.09173583984375,
0.85693359375,
0.74853515625,
0.25048828125,
0.0296478271484375,
-1.1826171875,
-1.0185546875,
-0.289306640625,
-0.71142578125,
-0.82275390625,
-0.41015625,
-0.162109375,
-0.11981201171875,
0.028839111328125,
-1.525390625,
-0.27978515625,
0.1524658203125,
0.912109375,
0.197021484375,
0.44970703125,
0.912109375,
1.4111328125,
-0.423095703125,
-0.22021484375,
0.650390625,
-1.1220703125,
-0.225830078125,
-0.462158203125,
0.451171875,
-0.75732421875,
-0.226806640625,
-0.57763671875,
-0.08355712890625,
-0.34912109375,
0.59033203125,
-0.87109375,
-1.201171875,
0.0168914794921875,
-0.47900390625,
-0.462646484375,
-0.2117919921875,
-0.890625,
0.1221923828125,
-0.39794921875,
0.310546875,
0.0999755859375,
-0.03204345703125,
-0.01529693603515625,
-0.07696533203125,
0.00911712646484375,
-0.61474609375,
0.290771484375,
0.409423828125,
0.347900390625,
-0.47705078125,
-1.0927734375,
-0.68701171875,
0.4736328125,
-0.076904296875,
0.035675048828125,
0.308349609375,
-0.5986328125,
-0.332763671875,
0.2139892578125,
-0.156494140625,
-0.309814453125,
-0.0247955322265625,
0.2232666015625,
0.53125,
0.4736328125,
-1.0322265625,
0.7119140625,
0.07275390625,
1.02734375,
-0.02191162109375,
0.1806640625,
-0.2391357421875,
-0.7734375,
0.2470703125,
0.300537109375,
0.331787109375,
-0.066162109375,
-0.4013671875,
0.66845703125,
-0.470703125,
-0.0260772705078125,
0.483154296875,
0.281982421875,
-0.18798828125,
0.31591796875,
-0.2005615234375,
0.347412109375,
1.1484375,
1.0234375,
-0.417236328125,
1.099609375,
-0.309814453125,
-0.51123046875,
-0.058502197265625,
0.11669921875,
-0.31201171875,
-0.93896484375,
-0.412109375,
-0.2271728515625,
0.7041015625,
0.1824951171875,
0.32666015625,
0.80029296875,
-0.179443359375,
0.7041015625,
-0.97900390625,
0.1085205078125,
0.4443359375,
0.1065673828125,
0.43798828125,
0.0333251953125,
0.307861328125,
-0.1263427734375,
-0.71337890625,
1.0673828125,
-0.7734375,
-0.0172576904296875,
0.654296875,
-0.0222320556640625,
-0.1461181640625,
0.2152099609375,
0.10418701171875,
0.436767578125,
-0.1671142578125,
0.826171875,
0.7880859375,
-0.6025390625,
0.66064453125,
-0.14404296875,
0.169677734375,
1.611328125,
0.42138671875,
-0.08489990234375,
0.8017578125,
0.245361328125,
-0.346435546875,
0.427734375,
-0.86669921875,
0.802734375,
-0.035797119140625,
-0.09332275390625,
-0.079345703125,
0.01038360595703125,
0.166748046875,
0.412353515625,
0.423095703125,
0.375,
-0.2386474609375,
0.2071533203125,
-0.298583984375,
0.59521484375,
-0.37451171875,
0.8876953125,
-0.546875,
-0.368896484375,
-0.001708984375,
-0.240234375,
-0.213134765625,
-0.12493896484375,
-0.053802490234375,
0.9609375,
0.65283203125,
1.197265625,
0.7998046875,
-0.461669921875,
0.5498046875,
0.345458984375,
-0.206787109375,
0.376708984375,
0.5068359375,
0.6572265625,
0.43505859375,
0.258056640625,
-0.1572265625,
-0.19140625,
-0.408935546875,
-0.8935546875,
0.00446319580078125,
0.72802734375,
-0.365478515625,
0.1771240234375,
-0.2496337890625,
-0.034332275390625,
-0.66259765625,
-0.242919921875,
-0.162353515625,
-1.0791015625,
-0.34912109375,
0.60693359375,
-0.423828125,
0.6044921875,
-0.56787109375,
-0.347412109375,
0.63330078125,
1.2626953125,
-0.5009765625,
0.275146484375,
0.427490234375,
0.369140625,
-0.48046875,
0.16943359375,
0.026031494140625,
-0.332275390625,
-0.740234375,
0.57373046875,
-0.075927734375,
-0.0015010833740234375,
-0.14794921875,
0.82958984375,
0.159912109375,
0.3115234375,
-0.12060546875,
-0.361083984375,
0.398681640625,
1,
-0.2578125,
0.6494140625,
0.321533203125,
0.8662109375,
0.2763671875,
0.397216796875,
0.367431640625,
-0.1361083984375,
0.37890625,
0.71044921875,
-0.00382232666015625,
0.13525390625,
0.1956787109375,
0.341796875,
0.34765625,
0.28466796875,
0.3798828125,
0.9765625,
0.1378173828125,
-0.1885986328125,
-0.51513671875,
0.396484375,
-0.4677734375,
1.279296875,
0.61376953125,
0.281982421875,
-0.1302490234375,
-0.16748046875,
0.572265625,
0.81005859375,
-0.8427734375,
-0.89990234375,
0.365478515625,
-0.0282135009765625,
-0.08489990234375,
-0.30712890625,
0.255859375,
0.436767578125,
0.383544921875,
0.2017822265625,
-0.1790771484375,
-0.72021484375,
-0.64208984375,
-1.1181640625,
-1.017578125,
-0.6650390625,
-0.77587890625,
-0.465576171875,
0.414306640625,
-0.6533203125,
-0.0545654296875,
-0.5498046875,
-0.354248046875,
-0.0222320556640625,
-1.0048828125,
0.4345703125,
0.0650634765625,
0.583984375,
-0.9140625,
0.47900390625,
0.4443359375,
1.205078125,
-0.8056640625,
0.026885986328125,
-0.27978515625,
-0.4755859375,
-0.10382080078125,
0.15478515625,
0.3505859375,
0.140625,
-0.5361328125,
-0.79150390625,
-0.295654296875,
0.206298828125,
-0.44775390625,
0.294921875,
-0.66064453125,
1.1904296875,
0.4951171875,
-0.294677734375,
0.5576171875,
0.66845703125,
-0.5771484375,
0.479248046875,
0.33544921875,
0.50390625,
-0.61279296875,
1.44140625,
0.36572265625,
0.478515625,
-0.318359375,
-0.219482421875,
-0.73193359375,
0.2125244140625,
0.1741943359375,
-0.53466796875,
-0.58837890625,
0.8388671875,
-0.09747314453125,
-1.1396484375,
0.435302734375,
-1.2041015625,
-0.677734375,
-0.0460205078125,
-0.66064453125,
0.58154296875,
1.2099609375,
0.322021484375,
-0.10833740234375,
-0.380615234375,
-0.315673828125,
0.2333984375,
0.296875,
-0.219970703125,
-0.7265625,
0.58203125,
-0.2259521484375,
0.295654296875,
0.391845703125,
-0.4853515625,
0.0458984375,
0.09490966796875,
0.244384765625,
0.5751953125,
0.395751953125,
0.1988525390625,
-0.264404296875,
0.8134765625,
-1.3349609375,
-0.229248046875,
-0.231689453125,
0.5654296875,
0.079345703125,
0.45751953125,
0.495849609375,
-0.2021484375,
-0.52734375,
-1.19140625,
0.638671875,
0.23193359375,
0.73974609375,
-0.6708984375,
0.91015625,
0.1265869140625,
-0.62451171875,
0.62158203125,
-1.10546875,
-0.29150390625,
1.244140625,
-0.038299560546875,
0.50146484375,
-0.6025390625,
0.12548828125,
-0.032989501953125,
-0.251953125,
0.394287109375,
0.244384765625,
0.748046875,
-0.26904296875,
-0.73291015625,
-0.285400390625,
0.296630859375,
-0.19189453125,
-0.8701171875,
0.0038909912109375,
-0.900390625,
-0.95751953125,
-0.6083984375,
0.591796875,
0.470458984375,
0.5166015625,
0.313232421875,
-0.058441162109375,
0.2391357421875,
0.513671875,
0.280029296875,
-0.34619140625,
0.0750732421875,
-0.68798828125,
0.6923828125,
0.24267578125,
-0.4677734375,
-0.626953125,
-0.1788330078125,
-0.5419921875,
-0.03350830078125,
0.09454345703125,
-0.10198974609375,
-1.2197265625,
0.282958984375,
0.2200927734375,
0.5537109375,
-0.38525390625,
-0.2568359375,
-0.3994140625,
0.7177734375,
0.065185546875,
-0.95166015625,
0.1754150390625,
-0.74462890625,
0.38525390625,
0.64013671875,
0.021331787109375,
-0.55419921875,
-0.44189453125,
-0.92236328125,
-0.58447265625,
0.6279296875,
0.84521484375,
-0.37451171875,
0.5283203125,
-1.43359375,
0.73046875,
0.289306640625,
-0.290771484375,
0.135009765625,
-0.24169921875,
0.156982421875,
0.08709716796875,
0.253662109375,
-0.654296875,
-0.451171875,
0.052825927734375,
-1.0458984375,
0.45556640625,
-0.4541015625,
0.0027294158935546875,
0.2008056640625,
-0.406005859375,
-0.370361328125,
0.57958984375,
-0.280517578125,
0.491455078125,
-0.324951171875,
0.77392578125,
-0.80908203125,
-0.64501953125,
0.44970703125,
-0.348388671875,
-0.305419921875,
1.044921875,
-0.0953369140625,
-0.488525390625,
0.141845703125,
0.5263671875,
-0.431396484375,
0.046295166015625,
-0.467529296875,
0.533203125,
0.025238037109375,
-0.2880859375,
0.1285400390625,
-0.427734375,
0.71484375,
-0.1605224609375,
-0.99365234375,
-0.210205078125,
-1.1572265625,
-0.413818359375,
-0.44287109375,
-0.2310791015625,
-0.058624267578125,
0.08648681640625,
-0.1385498046875,
-0.133544921875,
-0.378173828125,
-0.6171875,
-0.64111328125,
-0.353271484375,
-0.6484375,
0.5498046875,
0.05816650390625,
0.697265625,
0.08502197265625,
-0.60986328125,
0.140869140625,
-0.056671142578125,
0.10369873046875,
-0.51806640625,
-0.1422119140625,
-0.24072265625,
-0.1436767578125,
-0.0794677734375,
0.6142578125,
-0.01538848876953125,
0.44091796875,
0.90771484375,
0.3173828125,
0.361083984375,
0.276123046875,
-0.6494140625,
1.095703125,
0.10040283203125,
-1.2099609375,
-0.31689453125,
0.58056640625,
-0.2381591796875,
0.92236328125,
-0.06695556640625,
-0.66162109375,
-0.82421875,
-0.87451171875,
0.42578125,
-1.1982421875,
-0.3037109375,
-1.2705078125,
-0.32275390625,
0.03314208984375,
0.387451171875,
-0.48583984375,
-0.78857421875,
0.281494140625,
-0.8349609375,
0.376220703125,
-0.8095703125,
-0.1497802734375,
-0.68017578125,
-0.350830078125,
-0.43896484375,
1.189453125,
0.08282470703125,
0.4609375,
0.2027587890625,
0.11334228515625,
0.301025390625,
-0.0157318115234375,
-0.8095703125,
-0.081298828125,
-0.091796875,
-0.01018524169921875,
0.01052093505859375,
0.00820159912109375,
-0.4638671875,
0.78173828125,
-0.73779296875,
0.370849609375,
-0.16845703125,
-0.322509765625,
-0.200439453125,
-0.035797119140625,
0.64501953125,
-0.33056640625,
0.109619140625,
-0.09942626953125,
0.5263671875,
1.056640625,
-0.53173828125,
-0.42138671875,
-0.80615234375,
-0.2900390625,
-1.2734375,
0.6611328125,
-0.8251953125,
0.34326171875,
-0.7802734375,
0.146240234375,
1.21875,
-0.58740234375,
0.5595703125,
1.53125,
0.499755859375,
0.2294921875,
-0.619140625,
0.748046875,
0.99267578125,
-0.5693359375,
-0.1861572265625,
-0.027984619140625,
-0.787109375,
0.056488037109375,
-0.04132080078125,
-1.30859375,
-0.8232421875,
0.32470703125,
1.2900390625,
-0.29541015625,
0.349365234375,
0.25927734375,
-1.107421875,
-0.78662109375,
1.01171875,
0.2314453125,
0.24658203125,
1.076171875,
-0.2425537109375,
-0.51611328125,
0.45068359375,
-0.1724853515625,
-0.1771240234375,
-0.1357421875,
1.0595703125,
-0.042755126953125,
-0.50537109375,
1.345703125,
0.76123046875,
-1.1455078125,
-1.0859375,
-0.521484375,
-0.1983642578125,
-0.04888916015625,
-0.62646484375,
-0.0175628662109375,
0.456787109375,
-0.88330078125,
0.0032863616943359375,
0.468505859375,
-0.3837890625,
0.1322021484375,
0.13671875,
-0.03082275390625,
-0.6123046875,
0.38720703125,
0.81396484375,
-0.5224609375,
-0.39892578125,
-1.3505859375,
-0.174560546875,
-0.037017822265625,
0.045501708984375,
0.399658203125,
-0.1925048828125,
0.560546875,
0.0775146484375,
0.387939453125,
0.826171875,
-0.4443359375,
-0.43798828125,
0.47021484375,
-0.90625,
-0.59326171875,
-0.148681640625,
0.421142578125,
-0.0537109375,
0.6337890625,
-0.5751953125,
-0.09515380859375,
0.43603515625,
0.23193359375,
-0.128662109375,
-0.73681640625,
-0.371337890625,
-1.1904296875,
-0.5107421875,
-0.34228515625,
-0.66455078125,
0.03076171875,
0.1806640625,
0.051849365234375,
-0.426025390625,
0.2353515625,
0.63916015625,
-0.65234375,
0.74267578125,
-0.87158203125,
0.37841796875,
-1.0224609375,
-0.1148681640625,
-0.3603515625,
-0.2471923828125,
-0.4990234375,
-0.145263671875,
-0.341064453125,
0.1519775390625,
0.066650390625,
0.405517578125,
-0.357421875,
0.60205078125,
-0.13330078125,
-0.3447265625,
0.35888671875,
0.2283935546875,
0.01904296875,
0.87646484375,
0.6181640625,
-0.21435546875,
0.33740234375,
-0.3466796875,
-0.5263671875,
0.110107421875,
0.8212890625,
0.51171875,
-0.07745361328125,
-0.007793426513671875,
-0.264892578125,
0.239990234375,
-1.2607421875,
0.10565185546875,
-0.369873046875,
0.28662109375,
0.2548828125,
0.0804443359375,
0.05596923828125,
1.0849609375,
-0.459716796875,
0.36962890625,
-0.045440673828125,
0.3583984375,
0.288818359375,
0.25,
0.1983642578125,
0.63720703125,
-0.07763671875,
-0.26708984375,
0.07171630859375,
0.1318359375,
0.17626953125,
0.0426025390625,
-0.214599609375,
-0.77685546875,
-0.4619140625,
-0.19921875,
-0.00672149658203125,
0.2396240234375,
0.3779296875,
-0.548828125,
0.300537109375,
-0.289794921875,
-0.64453125,
-0.01515960693359375,
-1.271484375,
-0.7958984375,
0.291748046875,
0.0555419921875,
-0.375244140625,
-0.36328125,
-0.533203125,
-0.1519775390625,
0.218505859375,
0.3701171875,
-0.363037109375,
0.16845703125,
-0.47216796875,
0.406005859375,
-0.3056640625,
0.1734619140625,
0.298583984375,
0.1927490234375,
-0.77587890625,
-0.78564453125,
-0.0108795166015625,
1.1015625,
0.1373291015625,
-0.011383056640625,
-0.2249755859375,
0.117431640625,
-0.1771240234375,
0.270751953125,
-0.4833984375,
-0.048492431640625,
-0.12384033203125,
0.17236328125,
-0.8447265625,
-0.07379150390625,
-0.0921630859375,
0.580078125,
0.08050537109375,
-0.238037109375,
-0.80419921875,
0.77880859375,
0.71435546875,
-0.1409912109375,
0.282958984375,
0.3505859375,
0.591796875,
0.16943359375,
-0.331787109375,
-0.552734375,
0.8369140625,
0.8896484375,
0.5693359375,
-0.277587890625,
0.4462890625,
0.70458984375,
-0.24169921875,
-0.186279296875,
0.44287109375,
0.11566162109375,
-0.1181640625,
0.2196044921875,
-0.1258544921875,
-0.1463623046875,
0.3447265625,
-0.2071533203125,
0.56884765625,
-0.221435546875,
0.08404541015625,
-0.0631103515625,
-0.837890625,
0.7197265625,
-0.331298828125,
-0.357421875,
-0.05084228515625,
-0.4189453125,
0.418701171875,
0.63330078125,
-0.120849609375,
-0.0872802734375,
0.91455078125,
0.8271484375,
0.368896484375,
0.61474609375,
0.363525390625,
0.25146484375,
-0.591796875,
-0.019561767578125,
0.255859375,
0.01186370849609375,
-0.65869140625,
-0.4775390625,
-1.12109375,
0.76123046875,
-0.412353515625,
-0.312255859375,
0.4970703125,
-0.399658203125,
0.07562255859375,
-0.46533203125,
0.9462890625,
-0.568359375,
0.08001708984375,
0.458251953125,
-0.517578125,
-0.54052734375,
0.7802734375,
-0.291748046875,
0.20654296875,
0.04803466796875,
1.35546875,
-0.13916015625,
1.7548828125,
0.462158203125,
-0.28955078125,
0.157958984375,
0.7587890625,
-0.2265625,
-0.66064453125,
-0.0193634033203125,
-0.393310546875,
-0.2069091796875,
-0.78515625,
-0.5673828125,
-0.73046875,
0.7509765625,
-0.128662109375,
-0.6611328125,
-0.1546630859375,
0.2374267578125,
-0.6044921875,
0.71923828125,
0.2073974609375,
0.08453369140625,
0.1505126953125,
0.04595947265625,
-0.477294921875,
-0.5771484375,
0.412841796875,
-0.349609375,
0.06427001953125,
-0.681640625,
-0.44140625,
-0.48828125,
-0.350830078125,
-0.35693359375,
-0.1529541015625,
-0.465087890625,
-0.77685546875,
0.7392578125,
0.5849609375,
0.58544921875,
0.15625,
-0.51123046875,
0.1632080078125,
0.61572265625,
1.1025390625,
-0.0401611328125,
0.60009765625,
0.485595703125,
-0.2177734375,
0.090087890625,
-0.59423828125,
0.47705078125,
0.468994140625,
0.1607666015625,
-0.430419921875,
0.255859375,
-0.8154296875,
-1.1689453125,
-0.221923828125,
0.748046875,
0.51171875,
-0.76416015625,
-1.1865234375,
-0.283935546875,
-1.09765625,
-0.14697265625,
-0.495361328125,
0.9560546875,
-0.2066650390625,
-0.020111083984375,
-0.073486328125,
-1.1923828125,
4.21484375,
0.86572265625,
1.1171875,
0.307373046875,
0.337158203125,
1.0654296875,
0.264892578125,
-0.71533203125,
-0.287841796875,
-0.2171630859375,
0.63623046875,
-0.452880859375,
-0.11138916015625,
1.1796875,
0.21923828125,
0.9638671875,
-0.8388671875,
0.014190673828125,
0.406982421875,
-1.0068359375,
-0.69091796875,
0.2266845703125,
0.16162109375,
0.6201171875,
0.01971435546875,
0.287109375,
0.88330078125,
-0.64599609375,
-0.55224609375,
-0.440673828125,
-0.006542205810546875,
-0.2783203125,
0.72509765625,
0.32861328125,
-0.26220703125,
0.6005859375,
0.027313232421875,
-0.46044921875,
0.061737060546875,
0.318603515625,
0.1881103515625,
0.04656982421875,
0.312744140625,
-0.578125,
-0.203369140625,
0.36181640625,
-0.7900390625,
0.50244140625,
0.2222900390625,
-0.720703125,
0.88037109375,
0.261474609375,
0.3564453125,
-0.3994140625,
-0.8974609375,
0.127685546875,
0.2890625,
0.018890380859375,
-0.37841796875,
0.51953125,
0.397705078125,
0.3662109375,
-0.038116455078125,
0.896484375,
-1.1240234375,
1.15234375,
-0.26123046875,
0.419921875,
-0.697265625,
-0.0019102096557617188,
-0.1181640625,
-0.189453125,
-0.326171875,
-0.2666015625,
0.6376953125,
0.5283203125,
0.04620361328125,
0.39794921875,
0.2413330078125,
-0.55029296875,
0.3623046875,
-0.266357421875,
-0.466064453125,
-0.09271240234375,
0.7783203125,
1.2255859375,
-0.701171875,
-0.256103515625,
-0.1243896484375,
0.66748046875,
0.73291015625,
0.7900390625,
0.1478271484375,
-0.7578125,
-0.61669921875
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Returning back to problem solving, Gildong is now studying about palindromes. He learned that a palindrome is a string that is the same as its reverse. For example, strings "pop", "noon", "x", and "kkkkkk" are palindromes, while strings "moon", "tv", and "abab" are not. An empty string is also a palindrome.
Gildong loves this concept so much, so he wants to play with it. He has n distinct strings of equal length m. He wants to discard some of the strings (possibly none or all) and reorder the remaining strings so that the concatenation becomes a palindrome. He also wants the palindrome to be as long as possible. Please help him find one.
Input
The first line contains two integers n and m (1 ≤ n ≤ 100, 1 ≤ m ≤ 50) — the number of strings and the length of each string.
Next n lines contain a string of length m each, consisting of lowercase Latin letters only. All strings are distinct.
Output
In the first line, print the length of the longest palindrome string you made.
In the second line, print that palindrome. If there are multiple answers, print any one of them. If the palindrome is empty, print an empty line or don't print this line at all.
Examples
Input
3 3
tab
one
bat
Output
6
tabbat
Input
4 2
oo
ox
xo
xx
Output
6
oxxxxo
Input
3 5
hello
codef
orces
Output
0
Input
9 4
abab
baba
abcd
bcde
cdef
defg
wxyz
zyxw
ijji
Output
20
ababwxyzijjizyxwbaba
Note
In the first example, "battab" is also a valid answer.
In the second example, there can be 4 different valid answers including the sample output. We are not going to provide any hints for what the others are.
In the third example, the empty string is the only valid palindrome string.
Submitted Solution:
```
n,m=map(int,input().split())
dp=[0]*n
for i in range(n):
s=input()
dp[i]=s
dpp=[]
dpop=[]
for i in range(n):
if dp[i]==dp[i][::-1]:
dpp.append(dp[i])
elif dp[i][::-1] in dp:
if dp[i][::-1] not in dpop:
dpop.append(dp[i])
dpop.append(dp[i][::-1])
s=""
if dpp:
s=dpp[0]
while dpop:
a=dpop.pop(0)
b=dpop.pop(0)
s=a+s+b
print(len(s))
print(s)
```
Yes
| 10,904 | [
0.047760009765625,
-0.2320556640625,
-0.2144775390625,
0.332763671875,
-0.327880859375,
-0.407470703125,
-0.13037109375,
0.0614013671875,
0.07684326171875,
0.8388671875,
0.74462890625,
0.2396240234375,
0.0212249755859375,
-1.1767578125,
-1.0166015625,
-0.315673828125,
-0.70654296875,
-0.82275390625,
-0.412109375,
-0.1741943359375,
-0.105712890625,
-0.0020847320556640625,
-1.5234375,
-0.252197265625,
0.146240234375,
0.91748046875,
0.1968994140625,
0.434814453125,
0.91650390625,
1.3857421875,
-0.39697265625,
-0.2220458984375,
0.65966796875,
-1.1083984375,
-0.21142578125,
-0.47314453125,
0.4423828125,
-0.744140625,
-0.2269287109375,
-0.5771484375,
-0.09808349609375,
-0.3359375,
0.60498046875,
-0.85302734375,
-1.2060546875,
0.0164642333984375,
-0.46533203125,
-0.462890625,
-0.2181396484375,
-0.90185546875,
0.1268310546875,
-0.402099609375,
0.322509765625,
0.094482421875,
-0.0177459716796875,
-0.023712158203125,
-0.07708740234375,
0.006862640380859375,
-0.62451171875,
0.30126953125,
0.4296875,
0.37451171875,
-0.47509765625,
-1.0849609375,
-0.697265625,
0.491455078125,
-0.0653076171875,
0.0438232421875,
0.300048828125,
-0.57275390625,
-0.321044921875,
0.201416015625,
-0.13525390625,
-0.29931640625,
-0.047119140625,
0.2274169921875,
0.53173828125,
0.4755859375,
-1.0546875,
0.7041015625,
0.074951171875,
1.03125,
-0.0225372314453125,
0.18408203125,
-0.2275390625,
-0.771484375,
0.26611328125,
0.307861328125,
0.355712890625,
-0.0712890625,
-0.392822265625,
0.65673828125,
-0.466552734375,
-0.02227783203125,
0.490234375,
0.283447265625,
-0.21435546875,
0.306640625,
-0.1846923828125,
0.351806640625,
1.1396484375,
1.0068359375,
-0.421142578125,
1.091796875,
-0.305908203125,
-0.513671875,
-0.0731201171875,
0.0972900390625,
-0.291015625,
-0.921875,
-0.4140625,
-0.22900390625,
0.7216796875,
0.2042236328125,
0.3017578125,
0.7861328125,
-0.176025390625,
0.71630859375,
-0.9775390625,
0.10614013671875,
0.44482421875,
0.10833740234375,
0.44189453125,
0.0252838134765625,
0.331298828125,
-0.1322021484375,
-0.71142578125,
1.044921875,
-0.7890625,
0.007587432861328125,
0.67333984375,
-0.021575927734375,
-0.1414794921875,
0.184814453125,
0.09918212890625,
0.432861328125,
-0.1649169921875,
0.796875,
0.78564453125,
-0.60546875,
0.689453125,
-0.1341552734375,
0.1656494140625,
1.6123046875,
0.40673828125,
-0.07135009765625,
0.7939453125,
0.271728515625,
-0.34423828125,
0.4208984375,
-0.8583984375,
0.78173828125,
-0.03466796875,
-0.10015869140625,
-0.045684814453125,
0.01050567626953125,
0.1929931640625,
0.395751953125,
0.420166015625,
0.379638671875,
-0.2386474609375,
0.229248046875,
-0.2978515625,
0.60400390625,
-0.375,
0.8955078125,
-0.5341796875,
-0.3828125,
0.0004551410675048828,
-0.267333984375,
-0.2030029296875,
-0.122314453125,
-0.043243408203125,
0.970703125,
0.62744140625,
1.1923828125,
0.80322265625,
-0.459228515625,
0.52783203125,
0.33544921875,
-0.2239990234375,
0.3583984375,
0.51318359375,
0.65576171875,
0.440185546875,
0.27001953125,
-0.1544189453125,
-0.1982421875,
-0.40283203125,
-0.9033203125,
0.000009059906005859375,
0.7314453125,
-0.361572265625,
0.1846923828125,
-0.2734375,
-0.0213165283203125,
-0.6748046875,
-0.251953125,
-0.1571044921875,
-1.076171875,
-0.36083984375,
0.58251953125,
-0.41943359375,
0.60986328125,
-0.56640625,
-0.356201171875,
0.6376953125,
1.2568359375,
-0.48046875,
0.255615234375,
0.43310546875,
0.374755859375,
-0.480224609375,
0.1688232421875,
0.03692626953125,
-0.325439453125,
-0.73291015625,
0.57373046875,
-0.07257080078125,
0.0024929046630859375,
-0.1614990234375,
0.81103515625,
0.174072265625,
0.29931640625,
-0.1329345703125,
-0.35546875,
0.378173828125,
0.98681640625,
-0.2474365234375,
0.634765625,
0.321533203125,
0.85107421875,
0.283203125,
0.43701171875,
0.36767578125,
-0.1629638671875,
0.38671875,
0.7119140625,
-0.0255279541015625,
0.13525390625,
0.2071533203125,
0.3193359375,
0.36669921875,
0.295654296875,
0.34326171875,
0.9873046875,
0.1517333984375,
-0.194580078125,
-0.4970703125,
0.3818359375,
-0.45751953125,
1.2548828125,
0.58544921875,
0.297119140625,
-0.1341552734375,
-0.1690673828125,
0.56884765625,
0.82470703125,
-0.853515625,
-0.8955078125,
0.33740234375,
-0.01532745361328125,
-0.07403564453125,
-0.2841796875,
0.2457275390625,
0.43115234375,
0.37451171875,
0.2066650390625,
-0.1739501953125,
-0.71484375,
-0.63916015625,
-1.1162109375,
-1.0380859375,
-0.6455078125,
-0.76220703125,
-0.481201171875,
0.41552734375,
-0.65625,
-0.0556640625,
-0.57373046875,
-0.35302734375,
-0.0179443359375,
-0.98876953125,
0.46484375,
0.073974609375,
0.59326171875,
-0.8935546875,
0.474853515625,
0.447021484375,
1.1953125,
-0.8115234375,
0.033294677734375,
-0.28564453125,
-0.48388671875,
-0.114501953125,
0.1317138671875,
0.339111328125,
0.1317138671875,
-0.552734375,
-0.8173828125,
-0.298095703125,
0.2447509765625,
-0.44091796875,
0.2841796875,
-0.6806640625,
1.1845703125,
0.470458984375,
-0.287841796875,
0.55029296875,
0.66357421875,
-0.57373046875,
0.513671875,
0.332275390625,
0.49365234375,
-0.6025390625,
1.4443359375,
0.349609375,
0.50146484375,
-0.34228515625,
-0.22412109375,
-0.72216796875,
0.2156982421875,
0.183837890625,
-0.54736328125,
-0.58642578125,
0.8466796875,
-0.069091796875,
-1.1396484375,
0.44677734375,
-1.21484375,
-0.69140625,
-0.042083740234375,
-0.6787109375,
0.57373046875,
1.2099609375,
0.343017578125,
-0.09954833984375,
-0.4091796875,
-0.33203125,
0.244384765625,
0.302001953125,
-0.2279052734375,
-0.716796875,
0.599609375,
-0.2227783203125,
0.296142578125,
0.400634765625,
-0.4931640625,
0.02947998046875,
0.08929443359375,
0.236328125,
0.5947265625,
0.374267578125,
0.1910400390625,
-0.257568359375,
0.8056640625,
-1.3134765625,
-0.21630859375,
-0.220703125,
0.58251953125,
0.06207275390625,
0.490966796875,
0.5166015625,
-0.1942138671875,
-0.54296875,
-1.169921875,
0.6533203125,
0.2044677734375,
0.7353515625,
-0.6591796875,
0.89501953125,
0.1297607421875,
-0.6396484375,
0.63037109375,
-1.0986328125,
-0.27587890625,
1.234375,
-0.027069091796875,
0.5087890625,
-0.6171875,
0.151611328125,
-0.05609130859375,
-0.251220703125,
0.405517578125,
0.242431640625,
0.75048828125,
-0.27392578125,
-0.7158203125,
-0.283935546875,
0.29296875,
-0.2044677734375,
-0.87060546875,
-0.029052734375,
-0.90087890625,
-0.94287109375,
-0.61376953125,
0.61962890625,
0.4501953125,
0.51708984375,
0.323486328125,
-0.0653076171875,
0.220947265625,
0.5224609375,
0.291259765625,
-0.3203125,
0.087646484375,
-0.69091796875,
0.69873046875,
0.2227783203125,
-0.4619140625,
-0.6123046875,
-0.165283203125,
-0.54345703125,
-0.0114898681640625,
0.09210205078125,
-0.115966796875,
-1.2431640625,
0.309326171875,
0.219970703125,
0.54248046875,
-0.38232421875,
-0.254150390625,
-0.389892578125,
0.70166015625,
0.07000732421875,
-0.95654296875,
0.1988525390625,
-0.744140625,
0.393310546875,
0.65673828125,
0.005130767822265625,
-0.55615234375,
-0.446044921875,
-0.92724609375,
-0.60888671875,
0.615234375,
0.85498046875,
-0.36083984375,
0.5302734375,
-1.4345703125,
0.7275390625,
0.2841796875,
-0.304931640625,
0.1336669921875,
-0.2568359375,
0.1690673828125,
0.05767822265625,
0.2398681640625,
-0.6533203125,
-0.443359375,
0.05682373046875,
-1.03515625,
0.45458984375,
-0.427734375,
-0.00209808349609375,
0.19091796875,
-0.4130859375,
-0.362548828125,
0.591796875,
-0.287841796875,
0.46044921875,
-0.334228515625,
0.7802734375,
-0.82275390625,
-0.6435546875,
0.423095703125,
-0.330078125,
-0.315673828125,
1.015625,
-0.106689453125,
-0.50048828125,
0.140380859375,
0.5576171875,
-0.431884765625,
0.06402587890625,
-0.446044921875,
0.5283203125,
0.04107666015625,
-0.279296875,
0.136962890625,
-0.41943359375,
0.7080078125,
-0.1597900390625,
-0.98486328125,
-0.2266845703125,
-1.169921875,
-0.41796875,
-0.434814453125,
-0.24267578125,
-0.045074462890625,
0.09539794921875,
-0.13671875,
-0.130859375,
-0.3671875,
-0.59228515625,
-0.62548828125,
-0.36279296875,
-0.6650390625,
0.55029296875,
0.0675048828125,
0.70263671875,
0.0860595703125,
-0.6220703125,
0.1129150390625,
-0.05023193359375,
0.109375,
-0.51318359375,
-0.1512451171875,
-0.22119140625,
-0.1573486328125,
-0.07769775390625,
0.60107421875,
-0.026580810546875,
0.44970703125,
0.91162109375,
0.3095703125,
0.36572265625,
0.2724609375,
-0.6640625,
1.09765625,
0.12066650390625,
-1.2158203125,
-0.315673828125,
0.5810546875,
-0.218017578125,
0.92724609375,
-0.057952880859375,
-0.65185546875,
-0.837890625,
-0.89501953125,
0.411865234375,
-1.1884765625,
-0.320556640625,
-1.283203125,
-0.346923828125,
0.03179931640625,
0.366943359375,
-0.47705078125,
-0.77880859375,
0.29248046875,
-0.86572265625,
0.388916015625,
-0.8330078125,
-0.14013671875,
-0.7060546875,
-0.351806640625,
-0.446044921875,
1.1728515625,
0.10516357421875,
0.46337890625,
0.1849365234375,
0.09771728515625,
0.30712890625,
-0.0125885009765625,
-0.80810546875,
-0.0877685546875,
-0.067626953125,
-0.013092041015625,
-0.01319122314453125,
0.0181732177734375,
-0.484130859375,
0.7783203125,
-0.7353515625,
0.373291015625,
-0.174560546875,
-0.310546875,
-0.1881103515625,
-0.041351318359375,
0.66748046875,
-0.33837890625,
0.1123046875,
-0.1165771484375,
0.55078125,
1.0693359375,
-0.546875,
-0.41943359375,
-0.79150390625,
-0.30126953125,
-1.2783203125,
0.64697265625,
-0.8388671875,
0.355224609375,
-0.77001953125,
0.1455078125,
1.2001953125,
-0.59765625,
0.5703125,
1.537109375,
0.484130859375,
0.228515625,
-0.64453125,
0.736328125,
0.98193359375,
-0.55322265625,
-0.200439453125,
-0.0296478271484375,
-0.79150390625,
0.04461669921875,
-0.04461669921875,
-1.3095703125,
-0.80810546875,
0.317138671875,
1.306640625,
-0.286865234375,
0.36376953125,
0.26025390625,
-1.1025390625,
-0.78857421875,
1.01171875,
0.20458984375,
0.2322998046875,
1.0654296875,
-0.220703125,
-0.51171875,
0.452392578125,
-0.16748046875,
-0.1656494140625,
-0.1402587890625,
1.0595703125,
-0.06719970703125,
-0.5166015625,
1.3447265625,
0.76611328125,
-1.146484375,
-1.0869140625,
-0.5419921875,
-0.20166015625,
-0.05682373046875,
-0.62353515625,
0.004878997802734375,
0.461181640625,
-0.8818359375,
0.030181884765625,
0.484375,
-0.3837890625,
0.14697265625,
0.128662109375,
-0.0092620849609375,
-0.64306640625,
0.387451171875,
0.82275390625,
-0.52392578125,
-0.414794921875,
-1.3662109375,
-0.1588134765625,
-0.05218505859375,
0.05078125,
0.38427734375,
-0.17138671875,
0.556640625,
0.1153564453125,
0.408203125,
0.810546875,
-0.442138671875,
-0.454833984375,
0.453369140625,
-0.90234375,
-0.5732421875,
-0.1549072265625,
0.419189453125,
-0.056732177734375,
0.6455078125,
-0.564453125,
-0.09619140625,
0.449951171875,
0.2291259765625,
-0.11328125,
-0.72265625,
-0.370849609375,
-1.1748046875,
-0.52294921875,
-0.3271484375,
-0.64306640625,
0.01531982421875,
0.1868896484375,
0.05120849609375,
-0.426513671875,
0.2275390625,
0.6455078125,
-0.65380859375,
0.73046875,
-0.87548828125,
0.352294921875,
-1.021484375,
-0.1307373046875,
-0.36865234375,
-0.234375,
-0.5,
-0.1473388671875,
-0.3173828125,
0.1600341796875,
0.07489013671875,
0.405517578125,
-0.35595703125,
0.58837890625,
-0.13525390625,
-0.338134765625,
0.360595703125,
0.22412109375,
0.01264190673828125,
0.9052734375,
0.60986328125,
-0.2174072265625,
0.34033203125,
-0.354736328125,
-0.50634765625,
0.11639404296875,
0.80224609375,
0.509765625,
-0.06884765625,
-0.0065765380859375,
-0.249267578125,
0.2227783203125,
-1.2275390625,
0.097900390625,
-0.39453125,
0.28564453125,
0.2423095703125,
0.0709228515625,
0.0526123046875,
1.0791015625,
-0.48046875,
0.37890625,
-0.043304443359375,
0.361572265625,
0.303955078125,
0.2440185546875,
0.190673828125,
0.66796875,
-0.077392578125,
-0.25439453125,
0.0626220703125,
0.1719970703125,
0.1878662109375,
0.04351806640625,
-0.23681640625,
-0.77685546875,
-0.474365234375,
-0.2015380859375,
0.006732940673828125,
0.2476806640625,
0.3837890625,
-0.55419921875,
0.294677734375,
-0.25634765625,
-0.65771484375,
-0.00354766845703125,
-1.2685546875,
-0.81201171875,
0.294921875,
0.06646728515625,
-0.384033203125,
-0.34814453125,
-0.55126953125,
-0.1435546875,
0.2498779296875,
0.35986328125,
-0.373046875,
0.1429443359375,
-0.455078125,
0.418701171875,
-0.330322265625,
0.167724609375,
0.268310546875,
0.1822509765625,
-0.79638671875,
-0.7900390625,
0.0031585693359375,
1.080078125,
0.125,
-0.0220947265625,
-0.2254638671875,
0.142822265625,
-0.16796875,
0.2373046875,
-0.48681640625,
-0.0293426513671875,
-0.1170654296875,
0.1884765625,
-0.833984375,
-0.084228515625,
-0.08172607421875,
0.5732421875,
0.083251953125,
-0.242919921875,
-0.814453125,
0.76123046875,
0.697265625,
-0.1595458984375,
0.296630859375,
0.345947265625,
0.58642578125,
0.1661376953125,
-0.34619140625,
-0.5263671875,
0.83251953125,
0.8701171875,
0.58935546875,
-0.29345703125,
0.46435546875,
0.685546875,
-0.245849609375,
-0.1707763671875,
0.432861328125,
0.12310791015625,
-0.1265869140625,
0.215576171875,
-0.1519775390625,
-0.1270751953125,
0.342529296875,
-0.2022705078125,
0.56494140625,
-0.2056884765625,
0.07049560546875,
-0.08428955078125,
-0.83740234375,
0.70849609375,
-0.301513671875,
-0.361328125,
-0.041839599609375,
-0.423095703125,
0.42626953125,
0.62744140625,
-0.1148681640625,
-0.0859375,
0.9248046875,
0.83203125,
0.359130859375,
0.62109375,
0.3583984375,
0.2425537109375,
-0.5830078125,
-0.03369140625,
0.278076171875,
0.0001100301742553711,
-0.64013671875,
-0.48486328125,
-1.1044921875,
0.74755859375,
-0.401123046875,
-0.320556640625,
0.487548828125,
-0.41552734375,
0.0726318359375,
-0.4404296875,
0.9609375,
-0.5927734375,
0.09954833984375,
0.44775390625,
-0.501953125,
-0.54931640625,
0.77392578125,
-0.28369140625,
0.240966796875,
0.060821533203125,
1.36328125,
-0.1578369140625,
1.7685546875,
0.47412109375,
-0.29248046875,
0.162841796875,
0.7685546875,
-0.22705078125,
-0.6455078125,
-0.0116424560546875,
-0.388671875,
-0.209716796875,
-0.78759765625,
-0.556640625,
-0.70556640625,
0.7451171875,
-0.11419677734375,
-0.67236328125,
-0.14111328125,
0.2396240234375,
-0.60009765625,
0.7255859375,
0.200439453125,
0.1011962890625,
0.13525390625,
0.057891845703125,
-0.47607421875,
-0.58544921875,
0.42333984375,
-0.341796875,
0.087158203125,
-0.67333984375,
-0.4287109375,
-0.51806640625,
-0.336181640625,
-0.34033203125,
-0.147705078125,
-0.476318359375,
-0.7646484375,
0.7265625,
0.59912109375,
0.578125,
0.1722412109375,
-0.498291015625,
0.1484375,
0.61083984375,
1.0947265625,
-0.047119140625,
0.58984375,
0.477294921875,
-0.2083740234375,
0.0855712890625,
-0.5859375,
0.462158203125,
0.459228515625,
0.163818359375,
-0.457763671875,
0.26416015625,
-0.81640625,
-1.158203125,
-0.2340087890625,
0.75048828125,
0.4990234375,
-0.75830078125,
-1.1953125,
-0.298828125,
-1.099609375,
-0.15185546875,
-0.509765625,
0.97119140625,
-0.2320556640625,
-0.04248046875,
-0.08392333984375,
-1.1689453125,
4.21875,
0.85791015625,
1.1083984375,
0.317138671875,
0.318603515625,
1.060546875,
0.2607421875,
-0.70263671875,
-0.275634765625,
-0.2332763671875,
0.6181640625,
-0.4541015625,
-0.10791015625,
1.1982421875,
0.2291259765625,
0.9677734375,
-0.83544921875,
0.00841522216796875,
0.41357421875,
-1.0185546875,
-0.67822265625,
0.230712890625,
0.1649169921875,
0.60302734375,
0.038421630859375,
0.292724609375,
0.86572265625,
-0.63818359375,
-0.560546875,
-0.44482421875,
-0.007007598876953125,
-0.275634765625,
0.74609375,
0.32275390625,
-0.2379150390625,
0.59130859375,
0.04974365234375,
-0.4638671875,
0.049224853515625,
0.311767578125,
0.19189453125,
0.0673828125,
0.311767578125,
-0.59130859375,
-0.2193603515625,
0.407470703125,
-0.7919921875,
0.5126953125,
0.198486328125,
-0.7314453125,
0.88818359375,
0.26611328125,
0.35888671875,
-0.398193359375,
-0.900390625,
0.13720703125,
0.27099609375,
0.0221710205078125,
-0.382568359375,
0.53076171875,
0.384033203125,
0.3701171875,
-0.037628173828125,
0.8984375,
-1.1376953125,
1.138671875,
-0.2354736328125,
0.4140625,
-0.708984375,
-0.0038433074951171875,
-0.1177978515625,
-0.2044677734375,
-0.33349609375,
-0.27392578125,
0.6484375,
0.53173828125,
0.05242919921875,
0.384033203125,
0.250244140625,
-0.55224609375,
0.358154296875,
-0.27099609375,
-0.4443359375,
-0.111083984375,
0.77685546875,
1.234375,
-0.69775390625,
-0.2568359375,
-0.1292724609375,
0.66650390625,
0.73193359375,
0.79638671875,
0.129638671875,
-0.77001953125,
-0.64013671875
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Returning back to problem solving, Gildong is now studying about palindromes. He learned that a palindrome is a string that is the same as its reverse. For example, strings "pop", "noon", "x", and "kkkkkk" are palindromes, while strings "moon", "tv", and "abab" are not. An empty string is also a palindrome.
Gildong loves this concept so much, so he wants to play with it. He has n distinct strings of equal length m. He wants to discard some of the strings (possibly none or all) and reorder the remaining strings so that the concatenation becomes a palindrome. He also wants the palindrome to be as long as possible. Please help him find one.
Input
The first line contains two integers n and m (1 ≤ n ≤ 100, 1 ≤ m ≤ 50) — the number of strings and the length of each string.
Next n lines contain a string of length m each, consisting of lowercase Latin letters only. All strings are distinct.
Output
In the first line, print the length of the longest palindrome string you made.
In the second line, print that palindrome. If there are multiple answers, print any one of them. If the palindrome is empty, print an empty line or don't print this line at all.
Examples
Input
3 3
tab
one
bat
Output
6
tabbat
Input
4 2
oo
ox
xo
xx
Output
6
oxxxxo
Input
3 5
hello
codef
orces
Output
0
Input
9 4
abab
baba
abcd
bcde
cdef
defg
wxyz
zyxw
ijji
Output
20
ababwxyzijjizyxwbaba
Note
In the first example, "battab" is also a valid answer.
In the second example, there can be 4 different valid answers including the sample output. We are not going to provide any hints for what the others are.
In the third example, the empty string is the only valid palindrome string.
Submitted Solution:
```
q, z = [int(x) for x in input().split()]
str1 = []
for x in range(q):
str1.append(input())
str2 = []
for each in str1:
str2.append(each[::-1])
str3 = set(str1) & set(str2)
'''
temp = set(str1) & set(str2)
temp1 = []
for each in str3:
temp.remove(each)
if each[::-1] not in temp:
temp1.append(each)
else:
temp.remove
for each in temp1:
str3.remove(each)
str4 = []
c = 0
for each in str3:
str4.insert(c, each)
str4.insert(-1*c-1, each[::-1])
str3.remove(each)
str3.remove(each[::-1])
num1 = len(str4) // 2
for each in temp1:
str4.insert(num1, each)
'''
str3 = list(str3)
#print(str3)
if len(str3) % 2 == 0:
for x in range(len(str3)):
if x == str3.index(str3[x][::-1]):
str3.pop(x)
break
for x in range(len(str3)):
temp = str3[x]
num1 = str3.index(temp[::-1])
if x != num1:
str3[num1], str3[-1*x-1] = str3[-1*x-1], str3[num1]
print(z*len(str3))
print("".join(str3))
```
No
| 10,905 | [
0.045745849609375,
-0.25390625,
-0.19775390625,
0.35693359375,
-0.3203125,
-0.42138671875,
-0.12225341796875,
0.053497314453125,
0.083251953125,
0.8330078125,
0.74755859375,
0.23828125,
-0.01371002197265625,
-1.1865234375,
-1.01953125,
-0.29150390625,
-0.71875,
-0.8271484375,
-0.392333984375,
-0.173828125,
-0.10504150390625,
-0.004871368408203125,
-1.5498046875,
-0.2486572265625,
0.173095703125,
0.90283203125,
0.2049560546875,
0.44482421875,
0.9345703125,
1.41796875,
-0.413330078125,
-0.2259521484375,
0.67333984375,
-1.125,
-0.236572265625,
-0.476806640625,
0.453125,
-0.7607421875,
-0.2210693359375,
-0.5703125,
-0.1007080078125,
-0.353271484375,
0.59033203125,
-0.865234375,
-1.216796875,
0.0125579833984375,
-0.467041015625,
-0.461669921875,
-0.1961669921875,
-0.89453125,
0.113525390625,
-0.367919921875,
0.31787109375,
0.09063720703125,
-0.034942626953125,
-0.034393310546875,
-0.0633544921875,
0.0150604248046875,
-0.60205078125,
0.287109375,
0.416015625,
0.347900390625,
-0.46240234375,
-1.076171875,
-0.6845703125,
0.4873046875,
-0.0828857421875,
0.06292724609375,
0.31396484375,
-0.61083984375,
-0.314453125,
0.2037353515625,
-0.1517333984375,
-0.323486328125,
-0.05419921875,
0.2193603515625,
0.55322265625,
0.4697265625,
-1.0322265625,
0.712890625,
0.06817626953125,
1.009765625,
-0.01016998291015625,
0.1729736328125,
-0.2379150390625,
-0.76025390625,
0.26171875,
0.2822265625,
0.33154296875,
-0.059295654296875,
-0.40966796875,
0.66162109375,
-0.4716796875,
-0.02984619140625,
0.489013671875,
0.256103515625,
-0.1851806640625,
0.312744140625,
-0.186767578125,
0.36572265625,
1.142578125,
1.0234375,
-0.4501953125,
1.0703125,
-0.281982421875,
-0.48583984375,
-0.06842041015625,
0.09954833984375,
-0.29736328125,
-0.93701171875,
-0.413330078125,
-0.2171630859375,
0.70166015625,
0.1968994140625,
0.314453125,
0.7919921875,
-0.189697265625,
0.7353515625,
-0.98095703125,
0.1163330078125,
0.437255859375,
0.138671875,
0.457275390625,
0.0225067138671875,
0.31591796875,
-0.12841796875,
-0.7138671875,
1.0517578125,
-0.7783203125,
-0.0220489501953125,
0.6591796875,
-0.01904296875,
-0.13818359375,
0.1988525390625,
0.10052490234375,
0.439453125,
-0.1866455078125,
0.80322265625,
0.75439453125,
-0.6123046875,
0.7041015625,
-0.1517333984375,
0.1541748046875,
1.6220703125,
0.420166015625,
-0.08343505859375,
0.80126953125,
0.25634765625,
-0.3173828125,
0.42138671875,
-0.8642578125,
0.7734375,
-0.048004150390625,
-0.1036376953125,
-0.0220184326171875,
0.0208282470703125,
0.1881103515625,
0.400390625,
0.412109375,
0.402587890625,
-0.2100830078125,
0.211669921875,
-0.3115234375,
0.58154296875,
-0.361328125,
0.87060546875,
-0.5126953125,
-0.372314453125,
-0.002910614013671875,
-0.247314453125,
-0.2093505859375,
-0.126953125,
-0.01708984375,
0.96533203125,
0.6279296875,
1.1904296875,
0.806640625,
-0.455322265625,
0.544921875,
0.35400390625,
-0.2314453125,
0.383056640625,
0.487548828125,
0.67041015625,
0.458740234375,
0.234375,
-0.1708984375,
-0.18408203125,
-0.40966796875,
-0.89599609375,
0.020721435546875,
0.72509765625,
-0.337646484375,
0.1800537109375,
-0.267578125,
-0.040679931640625,
-0.67626953125,
-0.2435302734375,
-0.1668701171875,
-1.056640625,
-0.336181640625,
0.59521484375,
-0.402587890625,
0.5947265625,
-0.54931640625,
-0.324462890625,
0.65625,
1.26171875,
-0.48779296875,
0.27880859375,
0.42333984375,
0.369873046875,
-0.456298828125,
0.203369140625,
0.0299224853515625,
-0.33984375,
-0.74853515625,
0.5439453125,
-0.0601806640625,
0.00336456298828125,
-0.1650390625,
0.81005859375,
0.1610107421875,
0.306640625,
-0.11328125,
-0.36181640625,
0.406494140625,
0.97705078125,
-0.251708984375,
0.64404296875,
0.317626953125,
0.84814453125,
0.2890625,
0.412841796875,
0.342529296875,
-0.156982421875,
0.38916015625,
0.69140625,
0.007171630859375,
0.1553955078125,
0.18896484375,
0.298095703125,
0.355224609375,
0.281494140625,
0.360595703125,
0.9931640625,
0.153076171875,
-0.2056884765625,
-0.5205078125,
0.353271484375,
-0.44873046875,
1.2685546875,
0.58935546875,
0.278564453125,
-0.11761474609375,
-0.1864013671875,
0.58837890625,
0.818359375,
-0.88720703125,
-0.8896484375,
0.363037109375,
-0.0330810546875,
-0.09442138671875,
-0.2685546875,
0.25927734375,
0.441162109375,
0.373291015625,
0.2099609375,
-0.17529296875,
-0.7109375,
-0.6357421875,
-1.1298828125,
-1.0166015625,
-0.65283203125,
-0.76708984375,
-0.458740234375,
0.41455078125,
-0.66455078125,
-0.030670166015625,
-0.5712890625,
-0.344482421875,
-0.016510009765625,
-1.033203125,
0.433837890625,
0.0592041015625,
0.57568359375,
-0.8974609375,
0.4775390625,
0.425048828125,
1.2177734375,
-0.81982421875,
0.0574951171875,
-0.305908203125,
-0.4873046875,
-0.10943603515625,
0.1328125,
0.32470703125,
0.1531982421875,
-0.51171875,
-0.7919921875,
-0.309814453125,
0.25830078125,
-0.45263671875,
0.27197265625,
-0.6826171875,
1.1826171875,
0.488525390625,
-0.301513671875,
0.55712890625,
0.681640625,
-0.5771484375,
0.499267578125,
0.344970703125,
0.498779296875,
-0.60595703125,
1.4384765625,
0.377197265625,
0.49365234375,
-0.3056640625,
-0.23388671875,
-0.73876953125,
0.20849609375,
0.173828125,
-0.5361328125,
-0.61181640625,
0.8388671875,
-0.0792236328125,
-1.1376953125,
0.43701171875,
-1.2001953125,
-0.6796875,
-0.07452392578125,
-0.67626953125,
0.56396484375,
1.212890625,
0.323486328125,
-0.1005859375,
-0.3974609375,
-0.322998046875,
0.24853515625,
0.28662109375,
-0.2142333984375,
-0.70849609375,
0.58203125,
-0.22607421875,
0.30029296875,
0.3818359375,
-0.496826171875,
0.01131439208984375,
0.08203125,
0.2322998046875,
0.603515625,
0.386474609375,
0.2088623046875,
-0.256591796875,
0.80712890625,
-1.330078125,
-0.2152099609375,
-0.231689453125,
0.5791015625,
0.0701904296875,
0.4775390625,
0.517578125,
-0.1900634765625,
-0.52392578125,
-1.171875,
0.61962890625,
0.231689453125,
0.72705078125,
-0.6416015625,
0.9013671875,
0.1220703125,
-0.623046875,
0.615234375,
-1.1142578125,
-0.265869140625,
1.244140625,
-0.02587890625,
0.52001953125,
-0.6083984375,
0.150634765625,
-0.01617431640625,
-0.253173828125,
0.41796875,
0.224609375,
0.73828125,
-0.268310546875,
-0.716796875,
-0.265869140625,
0.316162109375,
-0.211181640625,
-0.865234375,
-0.01190185546875,
-0.89892578125,
-0.95166015625,
-0.6171875,
0.623046875,
0.456298828125,
0.5,
0.338623046875,
-0.076416015625,
0.2371826171875,
0.52197265625,
0.26806640625,
-0.348876953125,
0.09222412109375,
-0.69482421875,
0.71484375,
0.23681640625,
-0.4599609375,
-0.61865234375,
-0.1673583984375,
-0.5224609375,
-0.00322723388671875,
0.07379150390625,
-0.08013916015625,
-1.2431640625,
0.2919921875,
0.2198486328125,
0.53955078125,
-0.37451171875,
-0.255126953125,
-0.3828125,
0.6904296875,
0.060638427734375,
-0.955078125,
0.2086181640625,
-0.75732421875,
0.411376953125,
0.63134765625,
0.00927734375,
-0.5263671875,
-0.4580078125,
-0.9189453125,
-0.5986328125,
0.6357421875,
0.84814453125,
-0.36328125,
0.53369140625,
-1.4150390625,
0.73388671875,
0.263427734375,
-0.31591796875,
0.1290283203125,
-0.257080078125,
0.1739501953125,
0.06842041015625,
0.25732421875,
-0.65966796875,
-0.444091796875,
0.06158447265625,
-1.044921875,
0.44677734375,
-0.42236328125,
-0.02349853515625,
0.1971435546875,
-0.412353515625,
-0.366455078125,
0.5537109375,
-0.27197265625,
0.492431640625,
-0.34033203125,
0.7646484375,
-0.82177734375,
-0.6357421875,
0.443115234375,
-0.369140625,
-0.30615234375,
1.013671875,
-0.09130859375,
-0.495849609375,
0.1346435546875,
0.57861328125,
-0.42724609375,
0.043975830078125,
-0.453125,
0.54345703125,
0.03082275390625,
-0.2939453125,
0.11883544921875,
-0.41015625,
0.70263671875,
-0.168212890625,
-0.98681640625,
-0.2303466796875,
-1.154296875,
-0.417724609375,
-0.447021484375,
-0.2227783203125,
-0.0391845703125,
0.089111328125,
-0.1434326171875,
-0.1376953125,
-0.374267578125,
-0.59521484375,
-0.6630859375,
-0.360107421875,
-0.67919921875,
0.53271484375,
0.06201171875,
0.71240234375,
0.0811767578125,
-0.59423828125,
0.125,
-0.032562255859375,
0.10107421875,
-0.52197265625,
-0.1573486328125,
-0.1983642578125,
-0.155029296875,
-0.07562255859375,
0.62060546875,
-0.0296478271484375,
0.4658203125,
0.91015625,
0.317626953125,
0.37109375,
0.279541015625,
-0.62939453125,
1.09765625,
0.117919921875,
-1.1953125,
-0.322265625,
0.58544921875,
-0.23876953125,
0.90576171875,
-0.06207275390625,
-0.66015625,
-0.845703125,
-0.8681640625,
0.41796875,
-1.17578125,
-0.318603515625,
-1.279296875,
-0.361572265625,
0.054901123046875,
0.3564453125,
-0.4716796875,
-0.77734375,
0.286376953125,
-0.84619140625,
0.3916015625,
-0.83056640625,
-0.1549072265625,
-0.685546875,
-0.342041015625,
-0.4423828125,
1.173828125,
0.0867919921875,
0.45751953125,
0.19775390625,
0.10577392578125,
0.321533203125,
-0.02825927734375,
-0.81591796875,
-0.08453369140625,
-0.0955810546875,
-0.007122039794921875,
-0.01438140869140625,
0.0188751220703125,
-0.479248046875,
0.78515625,
-0.74072265625,
0.3857421875,
-0.1881103515625,
-0.341796875,
-0.218017578125,
-0.0362548828125,
0.66064453125,
-0.32470703125,
0.1063232421875,
-0.07647705078125,
0.56103515625,
1.048828125,
-0.53759765625,
-0.4052734375,
-0.78955078125,
-0.300048828125,
-1.2802734375,
0.64453125,
-0.81787109375,
0.341552734375,
-0.765625,
0.1385498046875,
1.2001953125,
-0.60546875,
0.56201171875,
1.5244140625,
0.473388671875,
0.2242431640625,
-0.61669921875,
0.76318359375,
0.9931640625,
-0.5546875,
-0.201171875,
-0.0102081298828125,
-0.79736328125,
0.056671142578125,
-0.035430908203125,
-1.3125,
-0.8154296875,
0.3095703125,
1.3125,
-0.28857421875,
0.353515625,
0.26953125,
-1.091796875,
-0.77783203125,
1.0087890625,
0.2298583984375,
0.26611328125,
1.0771484375,
-0.2744140625,
-0.52783203125,
0.4560546875,
-0.1873779296875,
-0.15185546875,
-0.168212890625,
1.0439453125,
-0.0628662109375,
-0.51806640625,
1.349609375,
0.7666015625,
-1.1376953125,
-1.09765625,
-0.546875,
-0.19677734375,
-0.06207275390625,
-0.60888671875,
-0.0057373046875,
0.460205078125,
-0.8720703125,
0.01526641845703125,
0.467041015625,
-0.392578125,
0.162841796875,
0.10467529296875,
-0.0281829833984375,
-0.6142578125,
0.376220703125,
0.802734375,
-0.51171875,
-0.399169921875,
-1.3486328125,
-0.1512451171875,
-0.048736572265625,
0.062469482421875,
0.371826171875,
-0.1590576171875,
0.5712890625,
0.0914306640625,
0.410888671875,
0.80810546875,
-0.4208984375,
-0.463623046875,
0.467041015625,
-0.8955078125,
-0.58056640625,
-0.1578369140625,
0.405029296875,
-0.04888916015625,
0.63671875,
-0.58251953125,
-0.1102294921875,
0.44189453125,
0.237060546875,
-0.10455322265625,
-0.7265625,
-0.358154296875,
-1.1796875,
-0.50537109375,
-0.330810546875,
-0.67333984375,
0.0167083740234375,
0.201904296875,
0.043853759765625,
-0.43798828125,
0.2193603515625,
0.6328125,
-0.66455078125,
0.71875,
-0.8662109375,
0.37353515625,
-0.97900390625,
-0.125732421875,
-0.36962890625,
-0.2315673828125,
-0.50146484375,
-0.148193359375,
-0.336669921875,
0.1431884765625,
0.059600830078125,
0.393310546875,
-0.369140625,
0.60546875,
-0.1212158203125,
-0.341552734375,
0.352294921875,
0.2149658203125,
0.022613525390625,
0.9140625,
0.63232421875,
-0.187255859375,
0.357666015625,
-0.349365234375,
-0.51123046875,
0.12310791015625,
0.81591796875,
0.53125,
-0.064208984375,
-0.0074005126953125,
-0.273193359375,
0.2252197265625,
-1.2578125,
0.127197265625,
-0.402099609375,
0.30712890625,
0.2410888671875,
0.07464599609375,
0.0455322265625,
1.0595703125,
-0.45703125,
0.357666015625,
-0.0142059326171875,
0.36376953125,
0.293701171875,
0.26220703125,
0.1884765625,
0.671875,
-0.051239013671875,
-0.265869140625,
0.06488037109375,
0.150634765625,
0.1807861328125,
0.0187225341796875,
-0.2274169921875,
-0.77392578125,
-0.4775390625,
-0.2109375,
0.00872802734375,
0.213134765625,
0.382080078125,
-0.54345703125,
0.310302734375,
-0.267333984375,
-0.662109375,
-0.025970458984375,
-1.2734375,
-0.79052734375,
0.2763671875,
0.061187744140625,
-0.372314453125,
-0.351806640625,
-0.55029296875,
-0.1463623046875,
0.22607421875,
0.34521484375,
-0.384521484375,
0.1513671875,
-0.4560546875,
0.419921875,
-0.302490234375,
0.1722412109375,
0.28369140625,
0.1754150390625,
-0.7734375,
-0.7919921875,
0.01568603515625,
1.06640625,
0.1339111328125,
-0.03167724609375,
-0.219970703125,
0.11248779296875,
-0.1678466796875,
0.260986328125,
-0.51171875,
-0.0484619140625,
-0.11712646484375,
0.195556640625,
-0.8671875,
-0.0985107421875,
-0.0689697265625,
0.5771484375,
0.07781982421875,
-0.2393798828125,
-0.8154296875,
0.78173828125,
0.7021484375,
-0.16796875,
0.255126953125,
0.343994140625,
0.57470703125,
0.176513671875,
-0.357177734375,
-0.56005859375,
0.8349609375,
0.88134765625,
0.5791015625,
-0.296142578125,
0.450927734375,
0.67333984375,
-0.2374267578125,
-0.18505859375,
0.422119140625,
0.1317138671875,
-0.1309814453125,
0.2164306640625,
-0.1353759765625,
-0.1353759765625,
0.3388671875,
-0.2388916015625,
0.544921875,
-0.194091796875,
0.08074951171875,
-0.08721923828125,
-0.8447265625,
0.697265625,
-0.323974609375,
-0.3701171875,
-0.033905029296875,
-0.424560546875,
0.41796875,
0.640625,
-0.11895751953125,
-0.10430908203125,
0.92724609375,
0.83447265625,
0.35009765625,
0.62255859375,
0.364501953125,
0.25390625,
-0.5830078125,
0.003376007080078125,
0.266357421875,
0.0252532958984375,
-0.64892578125,
-0.48486328125,
-1.1220703125,
0.72412109375,
-0.428955078125,
-0.317626953125,
0.4619140625,
-0.38427734375,
0.07763671875,
-0.439208984375,
0.94287109375,
-0.5810546875,
0.08154296875,
0.459228515625,
-0.4931640625,
-0.53515625,
0.78076171875,
-0.27294921875,
0.20751953125,
0.06915283203125,
1.3359375,
-0.1492919921875,
1.779296875,
0.4501953125,
-0.308837890625,
0.169921875,
0.763671875,
-0.2236328125,
-0.67041015625,
-0.032989501953125,
-0.39794921875,
-0.19775390625,
-0.7900390625,
-0.5341796875,
-0.7109375,
0.7470703125,
-0.11456298828125,
-0.6669921875,
-0.1656494140625,
0.23388671875,
-0.609375,
0.73681640625,
0.1971435546875,
0.096435546875,
0.12017822265625,
0.030670166015625,
-0.462646484375,
-0.58837890625,
0.42626953125,
-0.33349609375,
0.0806884765625,
-0.67431640625,
-0.45068359375,
-0.5126953125,
-0.33935546875,
-0.3427734375,
-0.140625,
-0.47509765625,
-0.771484375,
0.7275390625,
0.6103515625,
0.59326171875,
0.15771484375,
-0.50390625,
0.1497802734375,
0.5869140625,
1.1025390625,
-0.0452880859375,
0.58642578125,
0.4951171875,
-0.1905517578125,
0.07568359375,
-0.5771484375,
0.45751953125,
0.4794921875,
0.1552734375,
-0.459716796875,
0.291259765625,
-0.80712890625,
-1.1767578125,
-0.2177734375,
0.7421875,
0.50634765625,
-0.76171875,
-1.189453125,
-0.29541015625,
-1.1064453125,
-0.1485595703125,
-0.505859375,
0.97119140625,
-0.2196044921875,
-0.017333984375,
-0.072509765625,
-1.2060546875,
4.22265625,
0.8486328125,
1.09765625,
0.31689453125,
0.324951171875,
1.0654296875,
0.245849609375,
-0.71923828125,
-0.275146484375,
-0.235595703125,
0.6337890625,
-0.47607421875,
-0.12030029296875,
1.203125,
0.217041015625,
0.98095703125,
-0.84375,
-0.0012826919555664062,
0.406982421875,
-1.025390625,
-0.67578125,
0.23388671875,
0.171142578125,
0.61376953125,
0.035736083984375,
0.31005859375,
0.8642578125,
-0.6396484375,
-0.54296875,
-0.4365234375,
-0.007061004638671875,
-0.28271484375,
0.73974609375,
0.32666015625,
-0.271240234375,
0.64306640625,
0.051910400390625,
-0.453857421875,
0.0631103515625,
0.3115234375,
0.1937255859375,
0.038665771484375,
0.297119140625,
-0.58447265625,
-0.214111328125,
0.38134765625,
-0.79443359375,
0.5029296875,
0.203857421875,
-0.72607421875,
0.8759765625,
0.26708984375,
0.349365234375,
-0.39208984375,
-0.88232421875,
0.1480712890625,
0.28173828125,
0.0055694580078125,
-0.3779296875,
0.53857421875,
0.397705078125,
0.36572265625,
-0.029571533203125,
0.90087890625,
-1.1162109375,
1.1611328125,
-0.246826171875,
0.4365234375,
-0.68505859375,
-0.0062713623046875,
-0.1011962890625,
-0.210205078125,
-0.34228515625,
-0.2626953125,
0.64306640625,
0.52978515625,
0.061004638671875,
0.388916015625,
0.255615234375,
-0.55322265625,
0.362060546875,
-0.275146484375,
-0.453857421875,
-0.11553955078125,
0.78125,
1.2041015625,
-0.69677734375,
-0.247314453125,
-0.12841796875,
0.64990234375,
0.75,
0.78173828125,
0.165771484375,
-0.76123046875,
-0.61572265625
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Returning back to problem solving, Gildong is now studying about palindromes. He learned that a palindrome is a string that is the same as its reverse. For example, strings "pop", "noon", "x", and "kkkkkk" are palindromes, while strings "moon", "tv", and "abab" are not. An empty string is also a palindrome.
Gildong loves this concept so much, so he wants to play with it. He has n distinct strings of equal length m. He wants to discard some of the strings (possibly none or all) and reorder the remaining strings so that the concatenation becomes a palindrome. He also wants the palindrome to be as long as possible. Please help him find one.
Input
The first line contains two integers n and m (1 ≤ n ≤ 100, 1 ≤ m ≤ 50) — the number of strings and the length of each string.
Next n lines contain a string of length m each, consisting of lowercase Latin letters only. All strings are distinct.
Output
In the first line, print the length of the longest palindrome string you made.
In the second line, print that palindrome. If there are multiple answers, print any one of them. If the palindrome is empty, print an empty line or don't print this line at all.
Examples
Input
3 3
tab
one
bat
Output
6
tabbat
Input
4 2
oo
ox
xo
xx
Output
6
oxxxxo
Input
3 5
hello
codef
orces
Output
0
Input
9 4
abab
baba
abcd
bcde
cdef
defg
wxyz
zyxw
ijji
Output
20
ababwxyzijjizyxwbaba
Note
In the first example, "battab" is also a valid answer.
In the second example, there can be 4 different valid answers including the sample output. We are not going to provide any hints for what the others are.
In the third example, the empty string is the only valid palindrome string.
Submitted Solution:
```
n,m=map(int,input().split())
a=[]
ans=[]
res=''
for i in range(n):
a.append(input())
b=a.copy()
for i in a:
#print(a)
x=i
y=i[::-1]
a.remove(i)
#print(x,y)
if y in a:
ans.append(x)
a.remove(y)
else:
if x==y:
res=x
for i in a:
if i==i[::-1]:
res=i
break
s=''
if len(ans)==0:
if res!='':
print(len(res))
print(res)
else:
print(0)
print()
else:
for i in ans:
s+=i
if res!='':
s+=res+s[::-1]
else:
s+=s[::-1]
print(len(s))
print(s)
"""4 2
oo
ox
xo
xx4
"""
```
No
| 10,906 | [
0.028289794921875,
-0.2344970703125,
-0.2225341796875,
0.362060546875,
-0.312255859375,
-0.412841796875,
-0.1075439453125,
0.053680419921875,
0.0889892578125,
0.85693359375,
0.77001953125,
0.2420654296875,
0.0321044921875,
-1.201171875,
-1.0380859375,
-0.316162109375,
-0.72802734375,
-0.81689453125,
-0.4052734375,
-0.160400390625,
-0.09161376953125,
-0.0016736984252929688,
-1.537109375,
-0.266357421875,
0.1661376953125,
0.92138671875,
0.214599609375,
0.46728515625,
0.90283203125,
1.4150390625,
-0.40087890625,
-0.204345703125,
0.65673828125,
-1.1318359375,
-0.2257080078125,
-0.484619140625,
0.447021484375,
-0.7607421875,
-0.228759765625,
-0.57666015625,
-0.07403564453125,
-0.356689453125,
0.60791015625,
-0.86376953125,
-1.189453125,
0.020355224609375,
-0.459716796875,
-0.452880859375,
-0.22607421875,
-0.90380859375,
0.123046875,
-0.39501953125,
0.326416015625,
0.08740234375,
-0.02069091796875,
-0.04852294921875,
-0.07275390625,
0.01023101806640625,
-0.625,
0.2919921875,
0.421875,
0.38818359375,
-0.48193359375,
-1.08203125,
-0.6953125,
0.486083984375,
-0.0794677734375,
0.043121337890625,
0.3173828125,
-0.56982421875,
-0.331298828125,
0.2025146484375,
-0.143310546875,
-0.3330078125,
-0.008087158203125,
0.2335205078125,
0.564453125,
0.468505859375,
-1.0263671875,
0.70556640625,
0.0838623046875,
1.0380859375,
-0.0230560302734375,
0.189453125,
-0.24169921875,
-0.78662109375,
0.2484130859375,
0.2998046875,
0.31396484375,
-0.0703125,
-0.402099609375,
0.6689453125,
-0.481201171875,
-0.036163330078125,
0.491943359375,
0.2783203125,
-0.2205810546875,
0.307861328125,
-0.198486328125,
0.349365234375,
1.138671875,
1.0341796875,
-0.427001953125,
1.0859375,
-0.288330078125,
-0.5048828125,
-0.053955078125,
0.09454345703125,
-0.304931640625,
-0.935546875,
-0.4345703125,
-0.218994140625,
0.724609375,
0.1763916015625,
0.311279296875,
0.8017578125,
-0.1875,
0.724609375,
-0.9716796875,
0.1380615234375,
0.4677734375,
0.143798828125,
0.4580078125,
0.011688232421875,
0.311767578125,
-0.11737060546875,
-0.7080078125,
1.056640625,
-0.798828125,
0.001056671142578125,
0.67138671875,
-0.0198516845703125,
-0.150146484375,
0.19873046875,
0.10687255859375,
0.429931640625,
-0.1553955078125,
0.8056640625,
0.7783203125,
-0.60498046875,
0.6875,
-0.1287841796875,
0.1669921875,
1.619140625,
0.411865234375,
-0.0750732421875,
0.81787109375,
0.262451171875,
-0.337646484375,
0.429931640625,
-0.8857421875,
0.78076171875,
-0.027069091796875,
-0.1103515625,
-0.03802490234375,
0.01435089111328125,
0.18359375,
0.396240234375,
0.408203125,
0.381103515625,
-0.236572265625,
0.2115478515625,
-0.2744140625,
0.6005859375,
-0.37646484375,
0.8974609375,
-0.5625,
-0.375,
0.0016603469848632812,
-0.264404296875,
-0.1988525390625,
-0.12744140625,
-0.050628662109375,
0.95751953125,
0.63671875,
1.2060546875,
0.798828125,
-0.453857421875,
0.5400390625,
0.32421875,
-0.210205078125,
0.36669921875,
0.50732421875,
0.6396484375,
0.423583984375,
0.26171875,
-0.17578125,
-0.200927734375,
-0.410400390625,
-0.90771484375,
0.004241943359375,
0.71240234375,
-0.332763671875,
0.1712646484375,
-0.28173828125,
-0.0303802490234375,
-0.6865234375,
-0.2275390625,
-0.1651611328125,
-1.0810546875,
-0.33837890625,
0.57470703125,
-0.417236328125,
0.59326171875,
-0.5673828125,
-0.357666015625,
0.64208984375,
1.2587890625,
-0.46728515625,
0.259521484375,
0.431396484375,
0.360107421875,
-0.47509765625,
0.1888427734375,
0.033966064453125,
-0.333251953125,
-0.7392578125,
0.5576171875,
-0.07843017578125,
0.0010004043579101562,
-0.15185546875,
0.81884765625,
0.150146484375,
0.3017578125,
-0.10723876953125,
-0.3466796875,
0.401123046875,
0.99462890625,
-0.260009765625,
0.65185546875,
0.326904296875,
0.85986328125,
0.279296875,
0.431884765625,
0.359130859375,
-0.159423828125,
0.3828125,
0.71240234375,
0.004558563232421875,
0.133056640625,
0.170654296875,
0.3349609375,
0.3544921875,
0.2841796875,
0.356689453125,
0.990234375,
0.1441650390625,
-0.1817626953125,
-0.49658203125,
0.375732421875,
-0.461669921875,
1.279296875,
0.60400390625,
0.273681640625,
-0.1209716796875,
-0.1571044921875,
0.5615234375,
0.8251953125,
-0.85595703125,
-0.91455078125,
0.35400390625,
-0.03179931640625,
-0.07073974609375,
-0.312744140625,
0.244384765625,
0.4404296875,
0.39208984375,
0.2132568359375,
-0.1744384765625,
-0.69921875,
-0.642578125,
-1.1171875,
-1.0234375,
-0.6572265625,
-0.76220703125,
-0.47509765625,
0.426025390625,
-0.65966796875,
-0.062286376953125,
-0.5859375,
-0.35546875,
-0.007965087890625,
-1.009765625,
0.43310546875,
0.052520751953125,
0.56298828125,
-0.92138671875,
0.481201171875,
0.42431640625,
1.1943359375,
-0.80859375,
0.047454833984375,
-0.278076171875,
-0.49560546875,
-0.11895751953125,
0.16015625,
0.348876953125,
0.1279296875,
-0.5595703125,
-0.806640625,
-0.27734375,
0.2139892578125,
-0.456787109375,
0.279296875,
-0.67431640625,
1.1826171875,
0.51025390625,
-0.28564453125,
0.56005859375,
0.666015625,
-0.57470703125,
0.486572265625,
0.342041015625,
0.501953125,
-0.6103515625,
1.421875,
0.363037109375,
0.49755859375,
-0.31298828125,
-0.236328125,
-0.74169921875,
0.2117919921875,
0.1800537109375,
-0.5390625,
-0.57666015625,
0.8515625,
-0.0849609375,
-1.14453125,
0.459228515625,
-1.1982421875,
-0.6689453125,
-0.07220458984375,
-0.6572265625,
0.56396484375,
1.2099609375,
0.328369140625,
-0.1231689453125,
-0.406982421875,
-0.33349609375,
0.25341796875,
0.294677734375,
-0.226806640625,
-0.732421875,
0.591796875,
-0.241943359375,
0.30517578125,
0.39111328125,
-0.47900390625,
0.038330078125,
0.0867919921875,
0.256103515625,
0.59521484375,
0.3818359375,
0.1922607421875,
-0.25048828125,
0.81103515625,
-1.3212890625,
-0.216552734375,
-0.244384765625,
0.57470703125,
0.07354736328125,
0.50390625,
0.50439453125,
-0.2069091796875,
-0.52587890625,
-1.2099609375,
0.6396484375,
0.2095947265625,
0.7490234375,
-0.67041015625,
0.89208984375,
0.13330078125,
-0.64453125,
0.61962890625,
-1.1044921875,
-0.29638671875,
1.234375,
-0.033233642578125,
0.5107421875,
-0.6044921875,
0.1171875,
-0.0284423828125,
-0.25048828125,
0.40234375,
0.2607421875,
0.74267578125,
-0.28759765625,
-0.74462890625,
-0.2861328125,
0.28759765625,
-0.202392578125,
-0.87255859375,
-0.016815185546875,
-0.89599609375,
-0.93994140625,
-0.5986328125,
0.59130859375,
0.48828125,
0.49951171875,
0.34033203125,
-0.08856201171875,
0.2303466796875,
0.49365234375,
0.282470703125,
-0.36181640625,
0.07781982421875,
-0.70947265625,
0.72802734375,
0.233642578125,
-0.457275390625,
-0.619140625,
-0.1724853515625,
-0.52685546875,
-0.016754150390625,
0.08050537109375,
-0.11834716796875,
-1.2353515625,
0.29638671875,
0.217041015625,
0.53955078125,
-0.38720703125,
-0.26513671875,
-0.38818359375,
0.72412109375,
0.0714111328125,
-0.94921875,
0.1810302734375,
-0.73681640625,
0.420166015625,
0.6396484375,
0.0070037841796875,
-0.5498046875,
-0.473388671875,
-0.93017578125,
-0.58154296875,
0.646484375,
0.85400390625,
-0.383544921875,
0.5419921875,
-1.4130859375,
0.72998046875,
0.253662109375,
-0.31298828125,
0.1270751953125,
-0.2359619140625,
0.144775390625,
0.06182861328125,
0.2388916015625,
-0.64453125,
-0.476318359375,
0.0670166015625,
-1.0478515625,
0.4677734375,
-0.438720703125,
-0.00774383544921875,
0.193359375,
-0.4189453125,
-0.354736328125,
0.58154296875,
-0.27294921875,
0.48095703125,
-0.35400390625,
0.78173828125,
-0.8193359375,
-0.64599609375,
0.431396484375,
-0.340087890625,
-0.3193359375,
1.0341796875,
-0.102783203125,
-0.470947265625,
0.150634765625,
0.54736328125,
-0.418701171875,
0.06475830078125,
-0.46435546875,
0.52294921875,
0.0180816650390625,
-0.282958984375,
0.1435546875,
-0.445068359375,
0.72021484375,
-0.180419921875,
-0.9951171875,
-0.227783203125,
-1.1728515625,
-0.421630859375,
-0.447021484375,
-0.222900390625,
-0.0283660888671875,
0.079345703125,
-0.1436767578125,
-0.1282958984375,
-0.39404296875,
-0.5966796875,
-0.6328125,
-0.366943359375,
-0.685546875,
0.56005859375,
0.038116455078125,
0.7216796875,
0.09930419921875,
-0.6201171875,
0.12335205078125,
-0.060516357421875,
0.10986328125,
-0.52099609375,
-0.15966796875,
-0.257568359375,
-0.13671875,
-0.060516357421875,
0.61376953125,
-0.01052093505859375,
0.465087890625,
0.90966796875,
0.311279296875,
0.36181640625,
0.2646484375,
-0.66015625,
1.1005859375,
0.11175537109375,
-1.1806640625,
-0.308349609375,
0.59814453125,
-0.2462158203125,
0.9150390625,
-0.0655517578125,
-0.6552734375,
-0.8232421875,
-0.8798828125,
0.43017578125,
-1.193359375,
-0.317138671875,
-1.2919921875,
-0.331298828125,
0.026214599609375,
0.37353515625,
-0.494873046875,
-0.7763671875,
0.30029296875,
-0.84130859375,
0.39306640625,
-0.82470703125,
-0.1329345703125,
-0.6806640625,
-0.346923828125,
-0.440673828125,
1.185546875,
0.062286376953125,
0.46484375,
0.2010498046875,
0.10345458984375,
0.328857421875,
-0.00949859619140625,
-0.79345703125,
-0.08038330078125,
-0.07708740234375,
0.0007252693176269531,
-0.01285552978515625,
0.0011415481567382812,
-0.4677734375,
0.7724609375,
-0.74169921875,
0.364990234375,
-0.1551513671875,
-0.309814453125,
-0.1905517578125,
-0.0267333984375,
0.673828125,
-0.355712890625,
0.12286376953125,
-0.0963134765625,
0.5556640625,
1.076171875,
-0.54150390625,
-0.420654296875,
-0.79150390625,
-0.3115234375,
-1.2861328125,
0.64501953125,
-0.83154296875,
0.358154296875,
-0.7822265625,
0.1390380859375,
1.212890625,
-0.59130859375,
0.54931640625,
1.537109375,
0.4970703125,
0.2342529296875,
-0.64990234375,
0.732421875,
0.98974609375,
-0.5556640625,
-0.1767578125,
-0.0394287109375,
-0.7998046875,
0.048858642578125,
-0.0272979736328125,
-1.330078125,
-0.8046875,
0.325927734375,
1.294921875,
-0.29833984375,
0.347412109375,
0.27001953125,
-1.0966796875,
-0.79052734375,
1.0087890625,
0.2196044921875,
0.2308349609375,
1.0791015625,
-0.25830078125,
-0.53076171875,
0.448486328125,
-0.174072265625,
-0.159912109375,
-0.1397705078125,
1.052734375,
-0.071044921875,
-0.498291015625,
1.3798828125,
0.77001953125,
-1.146484375,
-1.0791015625,
-0.5537109375,
-0.1947021484375,
-0.07000732421875,
-0.64697265625,
-0.009918212890625,
0.439208984375,
-0.87939453125,
0.030548095703125,
0.4736328125,
-0.38720703125,
0.1307373046875,
0.119140625,
-0.035858154296875,
-0.61572265625,
0.3876953125,
0.8046875,
-0.5234375,
-0.41015625,
-1.384765625,
-0.162109375,
-0.07080078125,
0.0638427734375,
0.38037109375,
-0.176513671875,
0.54296875,
0.09295654296875,
0.40966796875,
0.810546875,
-0.42431640625,
-0.443603515625,
0.476806640625,
-0.892578125,
-0.583984375,
-0.1488037109375,
0.4296875,
-0.06982421875,
0.65283203125,
-0.576171875,
-0.08642578125,
0.43798828125,
0.2440185546875,
-0.093994140625,
-0.73681640625,
-0.3486328125,
-1.1728515625,
-0.51904296875,
-0.32861328125,
-0.64111328125,
0.0207672119140625,
0.18505859375,
0.074951171875,
-0.406494140625,
0.210205078125,
0.64794921875,
-0.65185546875,
0.724609375,
-0.89453125,
0.374267578125,
-1.013671875,
-0.1075439453125,
-0.380126953125,
-0.2373046875,
-0.51171875,
-0.14404296875,
-0.322021484375,
0.16162109375,
0.0694580078125,
0.40478515625,
-0.368408203125,
0.58984375,
-0.1439208984375,
-0.328369140625,
0.382080078125,
0.2169189453125,
0.0447998046875,
0.8994140625,
0.6259765625,
-0.2359619140625,
0.33984375,
-0.353759765625,
-0.51953125,
0.1168212890625,
0.80712890625,
0.53466796875,
-0.076904296875,
-0.01091766357421875,
-0.27197265625,
0.223388671875,
-1.2490234375,
0.10760498046875,
-0.378173828125,
0.29052734375,
0.251708984375,
0.09625244140625,
0.0474853515625,
1.0986328125,
-0.47900390625,
0.371337890625,
-0.0391845703125,
0.357421875,
0.29638671875,
0.260498046875,
0.206298828125,
0.671875,
-0.080078125,
-0.271728515625,
0.0692138671875,
0.1458740234375,
0.1676025390625,
0.032958984375,
-0.2412109375,
-0.78515625,
-0.46484375,
-0.212646484375,
0.004302978515625,
0.260009765625,
0.379150390625,
-0.55078125,
0.292724609375,
-0.2705078125,
-0.640625,
-0.01276397705078125,
-1.2587890625,
-0.81982421875,
0.291748046875,
0.0869140625,
-0.38037109375,
-0.373046875,
-0.5361328125,
-0.1396484375,
0.2398681640625,
0.360595703125,
-0.36474609375,
0.156005859375,
-0.464111328125,
0.406494140625,
-0.310302734375,
0.173828125,
0.307373046875,
0.1895751953125,
-0.79931640625,
-0.7861328125,
0.001956939697265625,
1.083984375,
0.1197509765625,
0.0064697265625,
-0.218994140625,
0.1307373046875,
-0.18115234375,
0.271728515625,
-0.4853515625,
-0.0516357421875,
-0.12744140625,
0.1876220703125,
-0.87939453125,
-0.10906982421875,
-0.06781005859375,
0.59521484375,
0.101318359375,
-0.25341796875,
-0.82763671875,
0.77587890625,
0.70947265625,
-0.1611328125,
0.300537109375,
0.3603515625,
0.5791015625,
0.1707763671875,
-0.336669921875,
-0.54052734375,
0.8310546875,
0.9072265625,
0.57470703125,
-0.277099609375,
0.470458984375,
0.70556640625,
-0.256103515625,
-0.1868896484375,
0.43603515625,
0.1273193359375,
-0.13720703125,
0.2154541015625,
-0.1439208984375,
-0.1510009765625,
0.322021484375,
-0.1976318359375,
0.56494140625,
-0.20458984375,
0.0968017578125,
-0.0704345703125,
-0.85546875,
0.72119140625,
-0.313232421875,
-0.373779296875,
-0.048187255859375,
-0.3974609375,
0.427734375,
0.64794921875,
-0.1351318359375,
-0.1026611328125,
0.93115234375,
0.8154296875,
0.354736328125,
0.6220703125,
0.363037109375,
0.243896484375,
-0.5849609375,
-0.01617431640625,
0.2490234375,
0.006282806396484375,
-0.6552734375,
-0.466064453125,
-1.12109375,
0.75732421875,
-0.407470703125,
-0.322509765625,
0.50244140625,
-0.40283203125,
0.083251953125,
-0.441162109375,
0.96044921875,
-0.578125,
0.098876953125,
0.480224609375,
-0.50341796875,
-0.53076171875,
0.791015625,
-0.2822265625,
0.208740234375,
0.06329345703125,
1.3603515625,
-0.142578125,
1.7783203125,
0.476318359375,
-0.2880859375,
0.1544189453125,
0.775390625,
-0.24658203125,
-0.6748046875,
-0.03155517578125,
-0.3837890625,
-0.214111328125,
-0.76611328125,
-0.5400390625,
-0.7060546875,
0.75634765625,
-0.1302490234375,
-0.67236328125,
-0.1649169921875,
0.252685546875,
-0.61767578125,
0.7373046875,
0.2071533203125,
0.08612060546875,
0.1429443359375,
0.039306640625,
-0.482421875,
-0.5966796875,
0.42578125,
-0.349853515625,
0.08795166015625,
-0.6962890625,
-0.4453125,
-0.513671875,
-0.347900390625,
-0.376220703125,
-0.149169921875,
-0.462158203125,
-0.78662109375,
0.724609375,
0.583984375,
0.58837890625,
0.175537109375,
-0.498779296875,
0.15673828125,
0.615234375,
1.095703125,
-0.039825439453125,
0.58642578125,
0.469970703125,
-0.193359375,
0.0841064453125,
-0.5615234375,
0.461669921875,
0.4677734375,
0.1683349609375,
-0.4521484375,
0.27490234375,
-0.8095703125,
-1.18359375,
-0.2080078125,
0.7607421875,
0.50634765625,
-0.7802734375,
-1.189453125,
-0.29248046875,
-1.1162109375,
-0.1439208984375,
-0.48779296875,
0.97900390625,
-0.2381591796875,
-0.00498199462890625,
-0.07952880859375,
-1.1875,
4.1953125,
0.8603515625,
1.1015625,
0.294921875,
0.3193359375,
1.08203125,
0.263427734375,
-0.72314453125,
-0.268798828125,
-0.21435546875,
0.634765625,
-0.4677734375,
-0.121337890625,
1.2080078125,
0.2308349609375,
0.9833984375,
-0.85009765625,
0.0149993896484375,
0.408203125,
-1.0322265625,
-0.66796875,
0.2318115234375,
0.1651611328125,
0.6259765625,
0.04071044921875,
0.283935546875,
0.85107421875,
-0.64404296875,
-0.55908203125,
-0.44580078125,
-0.00958251953125,
-0.297119140625,
0.7314453125,
0.33154296875,
-0.250244140625,
0.59521484375,
0.052093505859375,
-0.4638671875,
0.04864501953125,
0.308349609375,
0.20556640625,
0.051483154296875,
0.29443359375,
-0.58935546875,
-0.203369140625,
0.389892578125,
-0.78662109375,
0.51953125,
0.220458984375,
-0.7421875,
0.87890625,
0.262451171875,
0.3388671875,
-0.40869140625,
-0.91357421875,
0.1566162109375,
0.265380859375,
0.032012939453125,
-0.40087890625,
0.544921875,
0.390625,
0.381591796875,
-0.03759765625,
0.90185546875,
-1.1318359375,
1.158203125,
-0.244140625,
0.42431640625,
-0.7001953125,
0.0007848739624023438,
-0.110107421875,
-0.192626953125,
-0.34765625,
-0.255859375,
0.64892578125,
0.546875,
0.046295166015625,
0.3994140625,
0.2529296875,
-0.5478515625,
0.352783203125,
-0.278564453125,
-0.4619140625,
-0.09326171875,
0.76806640625,
1.2373046875,
-0.71337890625,
-0.262451171875,
-0.138916015625,
0.673828125,
0.7158203125,
0.79150390625,
0.1280517578125,
-0.7421875,
-0.62353515625
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Returning back to problem solving, Gildong is now studying about palindromes. He learned that a palindrome is a string that is the same as its reverse. For example, strings "pop", "noon", "x", and "kkkkkk" are palindromes, while strings "moon", "tv", and "abab" are not. An empty string is also a palindrome.
Gildong loves this concept so much, so he wants to play with it. He has n distinct strings of equal length m. He wants to discard some of the strings (possibly none or all) and reorder the remaining strings so that the concatenation becomes a palindrome. He also wants the palindrome to be as long as possible. Please help him find one.
Input
The first line contains two integers n and m (1 ≤ n ≤ 100, 1 ≤ m ≤ 50) — the number of strings and the length of each string.
Next n lines contain a string of length m each, consisting of lowercase Latin letters only. All strings are distinct.
Output
In the first line, print the length of the longest palindrome string you made.
In the second line, print that palindrome. If there are multiple answers, print any one of them. If the palindrome is empty, print an empty line or don't print this line at all.
Examples
Input
3 3
tab
one
bat
Output
6
tabbat
Input
4 2
oo
ox
xo
xx
Output
6
oxxxxo
Input
3 5
hello
codef
orces
Output
0
Input
9 4
abab
baba
abcd
bcde
cdef
defg
wxyz
zyxw
ijji
Output
20
ababwxyzijjizyxwbaba
Note
In the first example, "battab" is also a valid answer.
In the second example, there can be 4 different valid answers including the sample output. We are not going to provide any hints for what the others are.
In the third example, the empty string is the only valid palindrome string.
Submitted Solution:
```
n, m = map(int, input().split())
s = []
c = ""
for i in range(n):
s.append(input())
while s:
try:
ind = s.index(a[::-1])
c = a + c + s[ind]
s.pop(ind)
except:
pass
s.pop(0)
print(len(c))
print(c)
```
No
| 10,907 | [
0.037322998046875,
-0.2257080078125,
-0.2073974609375,
0.340576171875,
-0.319091796875,
-0.404052734375,
-0.1275634765625,
0.0528564453125,
0.08428955078125,
0.84423828125,
0.75634765625,
0.23779296875,
0.03363037109375,
-1.1796875,
-1.0224609375,
-0.312744140625,
-0.7158203125,
-0.810546875,
-0.40771484375,
-0.167236328125,
-0.09674072265625,
-0.00667572021484375,
-1.5263671875,
-0.267578125,
0.1514892578125,
0.9130859375,
0.188232421875,
0.44921875,
0.9169921875,
1.3876953125,
-0.39794921875,
-0.211181640625,
0.65185546875,
-1.107421875,
-0.217041015625,
-0.469482421875,
0.447998046875,
-0.74560546875,
-0.2264404296875,
-0.5771484375,
-0.09417724609375,
-0.34765625,
0.60791015625,
-0.8603515625,
-1.19921875,
0.0176849365234375,
-0.464599609375,
-0.463134765625,
-0.21240234375,
-0.9052734375,
0.116455078125,
-0.398193359375,
0.3125,
0.0936279296875,
-0.0214385986328125,
-0.0298309326171875,
-0.0797119140625,
0.01119232177734375,
-0.623046875,
0.292724609375,
0.43017578125,
0.375,
-0.48095703125,
-1.0751953125,
-0.697265625,
0.48388671875,
-0.07061767578125,
0.041900634765625,
0.302001953125,
-0.55712890625,
-0.31591796875,
0.2005615234375,
-0.1226806640625,
-0.313232421875,
-0.0411376953125,
0.2340087890625,
0.5244140625,
0.46484375,
-1.0478515625,
0.70654296875,
0.07537841796875,
1.04296875,
-0.004608154296875,
0.1900634765625,
-0.2288818359375,
-0.77587890625,
0.2646484375,
0.3154296875,
0.349609375,
-0.0689697265625,
-0.394775390625,
0.65576171875,
-0.48193359375,
-0.03619384765625,
0.499267578125,
0.2705078125,
-0.2205810546875,
0.30517578125,
-0.1939697265625,
0.353515625,
1.1416015625,
1.013671875,
-0.41650390625,
1.087890625,
-0.2998046875,
-0.4990234375,
-0.059051513671875,
0.08978271484375,
-0.29931640625,
-0.92333984375,
-0.416748046875,
-0.2271728515625,
0.7314453125,
0.199951171875,
0.30810546875,
0.78759765625,
-0.1715087890625,
0.72412109375,
-0.98291015625,
0.10821533203125,
0.45947265625,
0.1173095703125,
0.435546875,
0.01413726806640625,
0.320068359375,
-0.11846923828125,
-0.70849609375,
1.0458984375,
-0.79052734375,
0.014495849609375,
0.67919921875,
-0.01544189453125,
-0.1356201171875,
0.190185546875,
0.10577392578125,
0.425537109375,
-0.1737060546875,
0.80908203125,
0.78125,
-0.611328125,
0.6904296875,
-0.1199951171875,
0.1641845703125,
1.6103515625,
0.41552734375,
-0.07684326171875,
0.80419921875,
0.25634765625,
-0.34326171875,
0.412841796875,
-0.8642578125,
0.78857421875,
-0.03167724609375,
-0.1044921875,
-0.04937744140625,
0.007625579833984375,
0.1826171875,
0.386962890625,
0.435302734375,
0.367919921875,
-0.23095703125,
0.2259521484375,
-0.292236328125,
0.60302734375,
-0.371826171875,
0.888671875,
-0.53564453125,
-0.375244140625,
0.0069122314453125,
-0.255859375,
-0.196533203125,
-0.1156005859375,
-0.051605224609375,
0.96044921875,
0.6298828125,
1.185546875,
0.80078125,
-0.45263671875,
0.5361328125,
0.349853515625,
-0.216796875,
0.368896484375,
0.509765625,
0.6435546875,
0.44873046875,
0.268798828125,
-0.1566162109375,
-0.2109375,
-0.396484375,
-0.90087890625,
0.006427764892578125,
0.7275390625,
-0.3505859375,
0.1832275390625,
-0.281005859375,
-0.0263671875,
-0.666015625,
-0.2548828125,
-0.163330078125,
-1.080078125,
-0.343017578125,
0.578125,
-0.42041015625,
0.6015625,
-0.5595703125,
-0.356201171875,
0.63916015625,
1.2470703125,
-0.471923828125,
0.267578125,
0.430908203125,
0.366943359375,
-0.4814453125,
0.173583984375,
0.034210205078125,
-0.33056640625,
-0.72705078125,
0.56005859375,
-0.07073974609375,
-0.00604248046875,
-0.165771484375,
0.80322265625,
0.172119140625,
0.306396484375,
-0.120849609375,
-0.35302734375,
0.3740234375,
0.984375,
-0.257568359375,
0.623046875,
0.33056640625,
0.8544921875,
0.29150390625,
0.428466796875,
0.362548828125,
-0.1551513671875,
0.384033203125,
0.7109375,
-0.0123138427734375,
0.1370849609375,
0.2027587890625,
0.325927734375,
0.373291015625,
0.302490234375,
0.347412109375,
0.99755859375,
0.1588134765625,
-0.1903076171875,
-0.49267578125,
0.375244140625,
-0.45849609375,
1.2529296875,
0.59619140625,
0.288330078125,
-0.1290283203125,
-0.163330078125,
0.56884765625,
0.818359375,
-0.85546875,
-0.89453125,
0.344970703125,
-0.02069091796875,
-0.07940673828125,
-0.285888671875,
0.2386474609375,
0.429443359375,
0.368408203125,
0.19970703125,
-0.16259765625,
-0.7119140625,
-0.6337890625,
-1.111328125,
-1.0263671875,
-0.65771484375,
-0.76318359375,
-0.474853515625,
0.412841796875,
-0.6611328125,
-0.064697265625,
-0.5712890625,
-0.347412109375,
-0.0251617431640625,
-0.99755859375,
0.451416015625,
0.07122802734375,
0.58935546875,
-0.88671875,
0.471923828125,
0.44287109375,
1.201171875,
-0.80859375,
0.035186767578125,
-0.2978515625,
-0.49462890625,
-0.1123046875,
0.1373291015625,
0.34765625,
0.1226806640625,
-0.55078125,
-0.8134765625,
-0.2939453125,
0.232666015625,
-0.44384765625,
0.285400390625,
-0.68603515625,
1.181640625,
0.48583984375,
-0.27880859375,
0.53955078125,
0.673828125,
-0.55859375,
0.501953125,
0.336181640625,
0.49462890625,
-0.599609375,
1.4287109375,
0.348876953125,
0.494873046875,
-0.326171875,
-0.2342529296875,
-0.73193359375,
0.213623046875,
0.18603515625,
-0.54443359375,
-0.58251953125,
0.83935546875,
-0.07928466796875,
-1.146484375,
0.447509765625,
-1.208984375,
-0.67236328125,
-0.059600830078125,
-0.67822265625,
0.5625,
1.208984375,
0.33837890625,
-0.11138916015625,
-0.419189453125,
-0.32763671875,
0.25048828125,
0.3046875,
-0.230712890625,
-0.72216796875,
0.58447265625,
-0.23583984375,
0.30322265625,
0.39306640625,
-0.487548828125,
0.040618896484375,
0.08782958984375,
0.2435302734375,
0.5966796875,
0.376220703125,
0.2000732421875,
-0.24658203125,
0.79638671875,
-1.3076171875,
-0.21728515625,
-0.2298583984375,
0.57958984375,
0.0667724609375,
0.490966796875,
0.51318359375,
-0.19287109375,
-0.537109375,
-1.1806640625,
0.6455078125,
0.199951171875,
0.73828125,
-0.658203125,
0.88671875,
0.11383056640625,
-0.638671875,
0.6240234375,
-1.08984375,
-0.28369140625,
1.2255859375,
-0.0186920166015625,
0.5078125,
-0.60400390625,
0.1302490234375,
-0.046051025390625,
-0.237548828125,
0.396240234375,
0.2423095703125,
0.75390625,
-0.2763671875,
-0.72412109375,
-0.277587890625,
0.273193359375,
-0.2103271484375,
-0.86328125,
-0.0196990966796875,
-0.892578125,
-0.9501953125,
-0.6005859375,
0.60791015625,
0.45263671875,
0.5185546875,
0.3369140625,
-0.06671142578125,
0.2242431640625,
0.5087890625,
0.275146484375,
-0.339111328125,
0.087890625,
-0.689453125,
0.69921875,
0.2257080078125,
-0.46044921875,
-0.611328125,
-0.1632080078125,
-0.54052734375,
-0.00897979736328125,
0.094482421875,
-0.10687255859375,
-1.2451171875,
0.302978515625,
0.228515625,
0.541015625,
-0.383544921875,
-0.2578125,
-0.398681640625,
0.7109375,
0.0662841796875,
-0.9443359375,
0.19091796875,
-0.75048828125,
0.400146484375,
0.65576171875,
-0.004650115966796875,
-0.560546875,
-0.460205078125,
-0.9208984375,
-0.60595703125,
0.62744140625,
0.85400390625,
-0.3642578125,
0.5341796875,
-1.4150390625,
0.7265625,
0.287841796875,
-0.2958984375,
0.1328125,
-0.256591796875,
0.1600341796875,
0.0689697265625,
0.2340087890625,
-0.65087890625,
-0.4453125,
0.057830810546875,
-1.025390625,
0.463623046875,
-0.429443359375,
-0.001354217529296875,
0.197998046875,
-0.41796875,
-0.360107421875,
0.583984375,
-0.283935546875,
0.468505859375,
-0.337158203125,
0.77880859375,
-0.82177734375,
-0.64453125,
0.42529296875,
-0.327880859375,
-0.31591796875,
1.01953125,
-0.098388671875,
-0.49169921875,
0.14794921875,
0.55908203125,
-0.432373046875,
0.055694580078125,
-0.45703125,
0.52685546875,
0.0399169921875,
-0.29150390625,
0.1376953125,
-0.428466796875,
0.716796875,
-0.1749267578125,
-0.9814453125,
-0.2298583984375,
-1.1650390625,
-0.409423828125,
-0.4423828125,
-0.239501953125,
-0.03228759765625,
0.095947265625,
-0.1370849609375,
-0.1385498046875,
-0.3740234375,
-0.5810546875,
-0.634765625,
-0.362548828125,
-0.666015625,
0.5380859375,
0.04986572265625,
0.71728515625,
0.0904541015625,
-0.62158203125,
0.1173095703125,
-0.05010986328125,
0.1085205078125,
-0.5166015625,
-0.160888671875,
-0.2132568359375,
-0.151123046875,
-0.06842041015625,
0.61181640625,
-0.017303466796875,
0.451416015625,
0.8955078125,
0.316162109375,
0.35888671875,
0.264892578125,
-0.66015625,
1.0986328125,
0.12176513671875,
-1.21484375,
-0.3330078125,
0.58251953125,
-0.23193359375,
0.91552734375,
-0.0628662109375,
-0.65478515625,
-0.83251953125,
-0.88916015625,
0.405029296875,
-1.177734375,
-0.310302734375,
-1.275390625,
-0.333251953125,
0.032745361328125,
0.368896484375,
-0.485107421875,
-0.7802734375,
0.300048828125,
-0.85888671875,
0.392822265625,
-0.82373046875,
-0.13916015625,
-0.7060546875,
-0.345947265625,
-0.4423828125,
1.177734375,
0.10919189453125,
0.46923828125,
0.185791015625,
0.09515380859375,
0.318359375,
-0.0198974609375,
-0.79736328125,
-0.076904296875,
-0.06732177734375,
-0.0160064697265625,
-0.022308349609375,
0.0203094482421875,
-0.48779296875,
0.7822265625,
-0.734375,
0.37548828125,
-0.1641845703125,
-0.306640625,
-0.1893310546875,
-0.04168701171875,
0.66357421875,
-0.343505859375,
0.1160888671875,
-0.1156005859375,
0.55810546875,
1.0634765625,
-0.55126953125,
-0.417724609375,
-0.7841796875,
-0.30126953125,
-1.2900390625,
0.654296875,
-0.84228515625,
0.348388671875,
-0.77490234375,
0.1531982421875,
1.2119140625,
-0.58447265625,
0.56103515625,
1.52734375,
0.485595703125,
0.223388671875,
-0.638671875,
0.734375,
0.98095703125,
-0.5517578125,
-0.2052001953125,
-0.03240966796875,
-0.79541015625,
0.05401611328125,
-0.03240966796875,
-1.310546875,
-0.802734375,
0.32177734375,
1.2958984375,
-0.285888671875,
0.3505859375,
0.273681640625,
-1.091796875,
-0.78857421875,
1.0048828125,
0.2174072265625,
0.2357177734375,
1.0546875,
-0.2425537109375,
-0.5244140625,
0.456787109375,
-0.16943359375,
-0.164306640625,
-0.142578125,
1.0419921875,
-0.060394287109375,
-0.513671875,
1.3486328125,
0.775390625,
-1.1357421875,
-1.0751953125,
-0.54833984375,
-0.201171875,
-0.0545654296875,
-0.6240234375,
0.0015478134155273438,
0.457763671875,
-0.888671875,
0.028961181640625,
0.470947265625,
-0.392822265625,
0.1522216796875,
0.110595703125,
-0.033355712890625,
-0.634765625,
0.379150390625,
0.80712890625,
-0.5283203125,
-0.400146484375,
-1.359375,
-0.149169921875,
-0.05584716796875,
0.05303955078125,
0.37548828125,
-0.1695556640625,
0.55810546875,
0.1072998046875,
0.40185546875,
0.81396484375,
-0.43896484375,
-0.460205078125,
0.439697265625,
-0.89599609375,
-0.58203125,
-0.1583251953125,
0.41796875,
-0.050262451171875,
0.64013671875,
-0.5615234375,
-0.10418701171875,
0.449951171875,
0.2265625,
-0.0970458984375,
-0.7119140625,
-0.364013671875,
-1.16796875,
-0.51513671875,
-0.32861328125,
-0.64013671875,
0.0210113525390625,
0.1878662109375,
0.059478759765625,
-0.417724609375,
0.2225341796875,
0.654296875,
-0.642578125,
0.72607421875,
-0.87841796875,
0.3740234375,
-1.0185546875,
-0.12457275390625,
-0.36279296875,
-0.243408203125,
-0.505859375,
-0.1533203125,
-0.3173828125,
0.1568603515625,
0.07598876953125,
0.406005859375,
-0.357177734375,
0.5830078125,
-0.124755859375,
-0.34814453125,
0.370849609375,
0.2237548828125,
0.0197601318359375,
0.8896484375,
0.6064453125,
-0.2288818359375,
0.344970703125,
-0.3603515625,
-0.51708984375,
0.1173095703125,
0.8076171875,
0.52099609375,
-0.06390380859375,
-0.01480865478515625,
-0.256103515625,
0.2232666015625,
-1.2216796875,
0.10675048828125,
-0.39501953125,
0.29638671875,
0.25048828125,
0.084228515625,
0.03369140625,
1.076171875,
-0.477783203125,
0.378173828125,
-0.0433349609375,
0.362548828125,
0.299560546875,
0.256591796875,
0.194091796875,
0.671875,
-0.0733642578125,
-0.245361328125,
0.059539794921875,
0.17041015625,
0.1864013671875,
0.047760009765625,
-0.2408447265625,
-0.7666015625,
-0.468505859375,
-0.20263671875,
0.0016679763793945312,
0.244384765625,
0.37158203125,
-0.5537109375,
0.284912109375,
-0.26123046875,
-0.6513671875,
-0.01153564453125,
-1.2587890625,
-0.81787109375,
0.286865234375,
0.0660400390625,
-0.3759765625,
-0.342529296875,
-0.54345703125,
-0.1409912109375,
0.248291015625,
0.362060546875,
-0.364990234375,
0.140380859375,
-0.45263671875,
0.4189453125,
-0.330810546875,
0.1749267578125,
0.281494140625,
0.173095703125,
-0.796875,
-0.78662109375,
0.01467132568359375,
1.0791015625,
0.131591796875,
-0.01513671875,
-0.215087890625,
0.1376953125,
-0.1805419921875,
0.2415771484375,
-0.477294921875,
-0.042266845703125,
-0.1239013671875,
0.1868896484375,
-0.8525390625,
-0.09832763671875,
-0.07183837890625,
0.5703125,
0.09088134765625,
-0.249267578125,
-0.83349609375,
0.767578125,
0.69970703125,
-0.1702880859375,
0.28369140625,
0.34912109375,
0.58154296875,
0.1622314453125,
-0.3525390625,
-0.54541015625,
0.82666015625,
0.8720703125,
0.5693359375,
-0.296142578125,
0.4580078125,
0.67822265625,
-0.248779296875,
-0.17822265625,
0.43798828125,
0.1353759765625,
-0.113525390625,
0.2154541015625,
-0.1572265625,
-0.1427001953125,
0.339111328125,
-0.2108154296875,
0.5703125,
-0.1944580078125,
0.07037353515625,
-0.07763671875,
-0.841796875,
0.703125,
-0.322021484375,
-0.364990234375,
-0.038116455078125,
-0.41455078125,
0.423583984375,
0.62890625,
-0.11822509765625,
-0.08367919921875,
0.9169921875,
0.833984375,
0.359130859375,
0.62841796875,
0.357177734375,
0.238525390625,
-0.58935546875,
-0.025787353515625,
0.265380859375,
0.005889892578125,
-0.63818359375,
-0.47900390625,
-1.1044921875,
0.74658203125,
-0.40673828125,
-0.31005859375,
0.492919921875,
-0.404052734375,
0.06597900390625,
-0.450439453125,
0.95068359375,
-0.5849609375,
0.10162353515625,
0.4638671875,
-0.50439453125,
-0.54052734375,
0.77001953125,
-0.28564453125,
0.233154296875,
0.06695556640625,
1.357421875,
-0.148681640625,
1.76953125,
0.459716796875,
-0.302001953125,
0.1641845703125,
0.7626953125,
-0.2318115234375,
-0.658203125,
-0.01374053955078125,
-0.3837890625,
-0.219482421875,
-0.78759765625,
-0.5390625,
-0.71337890625,
0.734375,
-0.1168212890625,
-0.66748046875,
-0.144287109375,
0.241943359375,
-0.60986328125,
0.73193359375,
0.197021484375,
0.10089111328125,
0.127685546875,
0.049652099609375,
-0.469482421875,
-0.5771484375,
0.425048828125,
-0.345703125,
0.08599853515625,
-0.6689453125,
-0.43212890625,
-0.5029296875,
-0.336181640625,
-0.34716796875,
-0.1416015625,
-0.474609375,
-0.771484375,
0.72412109375,
0.5966796875,
0.58447265625,
0.16845703125,
-0.50244140625,
0.1575927734375,
0.61279296875,
1.0947265625,
-0.03729248046875,
0.57666015625,
0.485107421875,
-0.20458984375,
0.08795166015625,
-0.5703125,
0.464111328125,
0.458251953125,
0.158447265625,
-0.4462890625,
0.264404296875,
-0.8046875,
-1.1630859375,
-0.2391357421875,
0.748046875,
0.491455078125,
-0.75341796875,
-1.1787109375,
-0.296630859375,
-1.1025390625,
-0.1470947265625,
-0.505859375,
0.9697265625,
-0.230224609375,
-0.0223541259765625,
-0.0697021484375,
-1.181640625,
4.23046875,
0.8505859375,
1.095703125,
0.30517578125,
0.326904296875,
1.052734375,
0.263916015625,
-0.716796875,
-0.2744140625,
-0.224853515625,
0.61767578125,
-0.4580078125,
-0.1168212890625,
1.20703125,
0.2178955078125,
0.97265625,
-0.85791015625,
-0.0013456344604492188,
0.41552734375,
-1.01953125,
-0.6826171875,
0.230712890625,
0.16650390625,
0.6240234375,
0.028656005859375,
0.28564453125,
0.859375,
-0.630859375,
-0.57421875,
-0.448974609375,
-0.0118255615234375,
-0.286865234375,
0.74169921875,
0.329345703125,
-0.2408447265625,
0.595703125,
0.047943115234375,
-0.461669921875,
0.04937744140625,
0.303955078125,
0.19970703125,
0.05535888671875,
0.3046875,
-0.58251953125,
-0.208984375,
0.392822265625,
-0.78857421875,
0.51611328125,
0.198974609375,
-0.7373046875,
0.8828125,
0.2607421875,
0.35791015625,
-0.398193359375,
-0.90673828125,
0.1400146484375,
0.27294921875,
0.017059326171875,
-0.37890625,
0.5341796875,
0.38232421875,
0.365478515625,
-0.040374755859375,
0.8984375,
-1.1357421875,
1.134765625,
-0.2335205078125,
0.41796875,
-0.70166015625,
-0.00852203369140625,
-0.112060546875,
-0.20361328125,
-0.33349609375,
-0.265869140625,
0.64697265625,
0.53564453125,
0.0494384765625,
0.38818359375,
0.2491455078125,
-0.55419921875,
0.358154296875,
-0.277587890625,
-0.449462890625,
-0.10882568359375,
0.77587890625,
1.2314453125,
-0.70166015625,
-0.2587890625,
-0.1240234375,
0.6650390625,
0.7353515625,
0.787109375,
0.1243896484375,
-0.7607421875,
-0.62744140625
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Returning back to problem solving, Gildong is now studying about palindromes. He learned that a palindrome is a string that is the same as its reverse. For example, strings "pop", "noon", "x", and "kkkkkk" are palindromes, while strings "moon", "tv", and "abab" are not. An empty string is also a palindrome.
Gildong loves this concept so much, so he wants to play with it. He has n distinct strings of equal length m. He wants to discard some of the strings (possibly none or all) and reorder the remaining strings so that the concatenation becomes a palindrome. He also wants the palindrome to be as long as possible. Please help him find one.
Input
The first line contains two integers n and m (1 ≤ n ≤ 100, 1 ≤ m ≤ 50) — the number of strings and the length of each string.
Next n lines contain a string of length m each, consisting of lowercase Latin letters only. All strings are distinct.
Output
In the first line, print the length of the longest palindrome string you made.
In the second line, print that palindrome. If there are multiple answers, print any one of them. If the palindrome is empty, print an empty line or don't print this line at all.
Examples
Input
3 3
tab
one
bat
Output
6
tabbat
Input
4 2
oo
ox
xo
xx
Output
6
oxxxxo
Input
3 5
hello
codef
orces
Output
0
Input
9 4
abab
baba
abcd
bcde
cdef
defg
wxyz
zyxw
ijji
Output
20
ababwxyzijjizyxwbaba
Note
In the first example, "battab" is also a valid answer.
In the second example, there can be 4 different valid answers including the sample output. We are not going to provide any hints for what the others are.
In the third example, the empty string is the only valid palindrome string.
Submitted Solution:
```
n, m = map(int, input().split())
arr = []
pal = ''
rev = ''
for i in range(n):
temp = input()
arr.append(temp)
if temp == temp[::-1]:
rev = temp
for j in range(i):
if arr[i] == arr[j][::-1]:
pal = arr[i] + pal + arr[j]
if pal != '':
l = int((len(pal) + 1) / 2)
pal = pal[0:l] + rev + pal[l:]
if pal == '':
print(0)
else:
print(len(pal))
print(pal)
```
No
| 10,908 | [
0.03125,
-0.2344970703125,
-0.225341796875,
0.3662109375,
-0.3095703125,
-0.4287109375,
-0.0970458984375,
0.039398193359375,
0.09246826171875,
0.8544921875,
0.787109375,
0.233642578125,
0.029937744140625,
-1.2177734375,
-1.0478515625,
-0.322021484375,
-0.72216796875,
-0.80859375,
-0.41015625,
-0.16259765625,
-0.10302734375,
-0.004779815673828125,
-1.5341796875,
-0.270263671875,
0.160888671875,
0.93359375,
0.209228515625,
0.4794921875,
0.9169921875,
1.427734375,
-0.390869140625,
-0.2120361328125,
0.64697265625,
-1.130859375,
-0.2244873046875,
-0.4912109375,
0.457763671875,
-0.76416015625,
-0.240966796875,
-0.5615234375,
-0.080322265625,
-0.359130859375,
0.60498046875,
-0.86962890625,
-1.2001953125,
0.029296875,
-0.46728515625,
-0.45166015625,
-0.21728515625,
-0.896484375,
0.12060546875,
-0.3759765625,
0.333251953125,
0.0780029296875,
-0.036407470703125,
-0.0703125,
-0.07769775390625,
0.01007080078125,
-0.630859375,
0.298828125,
0.417236328125,
0.38525390625,
-0.479736328125,
-1.076171875,
-0.70361328125,
0.486328125,
-0.06976318359375,
0.03765869140625,
0.31640625,
-0.57568359375,
-0.33544921875,
0.1954345703125,
-0.1529541015625,
-0.341552734375,
0.0089569091796875,
0.2144775390625,
0.57861328125,
0.473876953125,
-1.0234375,
0.70263671875,
0.09478759765625,
1.044921875,
-0.0128173828125,
0.2010498046875,
-0.254150390625,
-0.77880859375,
0.237060546875,
0.294189453125,
0.28955078125,
-0.0804443359375,
-0.419189453125,
0.6787109375,
-0.472900390625,
-0.041015625,
0.492431640625,
0.278564453125,
-0.2005615234375,
0.309814453125,
-0.20263671875,
0.34619140625,
1.15234375,
1.017578125,
-0.418212890625,
1.0810546875,
-0.283447265625,
-0.50439453125,
-0.040008544921875,
0.1044921875,
-0.3115234375,
-0.93701171875,
-0.431640625,
-0.220458984375,
0.72216796875,
0.180419921875,
0.318359375,
0.80224609375,
-0.2034912109375,
0.72265625,
-0.9697265625,
0.1561279296875,
0.45703125,
0.148193359375,
0.464111328125,
0.0247955322265625,
0.322509765625,
-0.13037109375,
-0.71630859375,
1.0556640625,
-0.7890625,
0.0037441253662109375,
0.66650390625,
-0.01556396484375,
-0.16015625,
0.19580078125,
0.11285400390625,
0.429443359375,
-0.1519775390625,
0.802734375,
0.77880859375,
-0.60205078125,
0.67041015625,
-0.120361328125,
0.150390625,
1.6318359375,
0.405517578125,
-0.076416015625,
0.8212890625,
0.2568359375,
-0.33056640625,
0.427734375,
-0.88427734375,
0.779296875,
-0.034820556640625,
-0.11370849609375,
-0.032257080078125,
0.02557373046875,
0.1947021484375,
0.4013671875,
0.39990234375,
0.388671875,
-0.2374267578125,
0.19287109375,
-0.25537109375,
0.60498046875,
-0.361572265625,
0.89453125,
-0.544921875,
-0.387939453125,
0.0012226104736328125,
-0.26904296875,
-0.1973876953125,
-0.11968994140625,
-0.056610107421875,
0.95068359375,
0.6396484375,
1.2080078125,
0.81298828125,
-0.445068359375,
0.544921875,
0.313232421875,
-0.2059326171875,
0.374755859375,
0.50146484375,
0.6357421875,
0.42333984375,
0.270751953125,
-0.1776123046875,
-0.19921875,
-0.41357421875,
-0.9189453125,
0.00839996337890625,
0.69580078125,
-0.332763671875,
0.161865234375,
-0.279052734375,
-0.040313720703125,
-0.6767578125,
-0.2288818359375,
-0.1622314453125,
-1.0888671875,
-0.34375,
0.578125,
-0.415771484375,
0.5927734375,
-0.5615234375,
-0.344970703125,
0.634765625,
1.248046875,
-0.48193359375,
0.25634765625,
0.4228515625,
0.36767578125,
-0.478515625,
0.193359375,
0.027740478515625,
-0.328125,
-0.748046875,
0.548828125,
-0.06591796875,
0.00115203857421875,
-0.1536865234375,
0.81591796875,
0.1409912109375,
0.3037109375,
-0.1058349609375,
-0.354248046875,
0.413818359375,
0.9892578125,
-0.25537109375,
0.640625,
0.3251953125,
0.86669921875,
0.265869140625,
0.42578125,
0.367431640625,
-0.16748046875,
0.38427734375,
0.71533203125,
0.0290985107421875,
0.136962890625,
0.1793212890625,
0.333251953125,
0.367919921875,
0.25830078125,
0.3515625,
1.0009765625,
0.1500244140625,
-0.20263671875,
-0.50146484375,
0.391357421875,
-0.470947265625,
1.2822265625,
0.59814453125,
0.27783203125,
-0.1138916015625,
-0.1748046875,
0.56640625,
0.830078125,
-0.86328125,
-0.9033203125,
0.35546875,
-0.0352783203125,
-0.0667724609375,
-0.320556640625,
0.2578125,
0.43896484375,
0.40966796875,
0.20458984375,
-0.1707763671875,
-0.708984375,
-0.63232421875,
-1.12109375,
-1.0029296875,
-0.6474609375,
-0.779296875,
-0.48095703125,
0.41259765625,
-0.673828125,
-0.06646728515625,
-0.57666015625,
-0.36376953125,
-0.0295867919921875,
-1.01171875,
0.427001953125,
0.0445556640625,
0.544921875,
-0.91796875,
0.475830078125,
0.424072265625,
1.1826171875,
-0.80126953125,
0.051239013671875,
-0.277587890625,
-0.48193359375,
-0.124755859375,
0.15234375,
0.3486328125,
0.1373291015625,
-0.5634765625,
-0.80615234375,
-0.282958984375,
0.223388671875,
-0.463623046875,
0.273193359375,
-0.671875,
1.1796875,
0.5068359375,
-0.294189453125,
0.5498046875,
0.66650390625,
-0.5771484375,
0.49365234375,
0.34619140625,
0.48828125,
-0.61181640625,
1.416015625,
0.374267578125,
0.50048828125,
-0.309814453125,
-0.2587890625,
-0.744140625,
0.2088623046875,
0.1845703125,
-0.5263671875,
-0.58056640625,
0.853515625,
-0.087158203125,
-1.1484375,
0.451904296875,
-1.1806640625,
-0.64111328125,
-0.06768798828125,
-0.6494140625,
0.55908203125,
1.2138671875,
0.32861328125,
-0.1177978515625,
-0.40625,
-0.335205078125,
0.25439453125,
0.2958984375,
-0.22509765625,
-0.75048828125,
0.59228515625,
-0.2384033203125,
0.321533203125,
0.3984375,
-0.465087890625,
0.031646728515625,
0.07989501953125,
0.253173828125,
0.58935546875,
0.386474609375,
0.18994140625,
-0.2418212890625,
0.8037109375,
-1.3095703125,
-0.210693359375,
-0.246826171875,
0.5888671875,
0.06378173828125,
0.50244140625,
0.5068359375,
-0.1927490234375,
-0.52197265625,
-1.1982421875,
0.63037109375,
0.218994140625,
0.73583984375,
-0.67333984375,
0.8876953125,
0.134033203125,
-0.65771484375,
0.61572265625,
-1.1142578125,
-0.298095703125,
1.2373046875,
-0.026763916015625,
0.52099609375,
-0.59619140625,
0.132080078125,
-0.0234527587890625,
-0.27001953125,
0.40478515625,
0.2401123046875,
0.72802734375,
-0.29296875,
-0.7529296875,
-0.296142578125,
0.283203125,
-0.2022705078125,
-0.875,
-0.01605224609375,
-0.892578125,
-0.9296875,
-0.58984375,
0.6123046875,
0.47705078125,
0.4912109375,
0.3427734375,
-0.0787353515625,
0.242919921875,
0.477783203125,
0.278076171875,
-0.3623046875,
0.07232666015625,
-0.70458984375,
0.7412109375,
0.2364501953125,
-0.460205078125,
-0.630859375,
-0.17431640625,
-0.517578125,
-0.0175933837890625,
0.09368896484375,
-0.11737060546875,
-1.251953125,
0.2939453125,
0.2264404296875,
0.53515625,
-0.389404296875,
-0.277587890625,
-0.39208984375,
0.72314453125,
0.07568359375,
-0.94921875,
0.178955078125,
-0.73583984375,
0.43017578125,
0.6298828125,
-0.0018682479858398438,
-0.55517578125,
-0.4677734375,
-0.94580078125,
-0.56103515625,
0.66357421875,
0.859375,
-0.399658203125,
0.56201171875,
-1.4140625,
0.73974609375,
0.2568359375,
-0.298583984375,
0.1339111328125,
-0.2318115234375,
0.1407470703125,
0.0660400390625,
0.257568359375,
-0.6494140625,
-0.474365234375,
0.07867431640625,
-1.044921875,
0.46044921875,
-0.43310546875,
-0.0064849853515625,
0.175537109375,
-0.412109375,
-0.352783203125,
0.5810546875,
-0.2705078125,
0.48876953125,
-0.350341796875,
0.76611328125,
-0.84326171875,
-0.65185546875,
0.42626953125,
-0.354736328125,
-0.3154296875,
1.041015625,
-0.09747314453125,
-0.46533203125,
0.1480712890625,
0.54345703125,
-0.435302734375,
0.06573486328125,
-0.46826171875,
0.5322265625,
0.021087646484375,
-0.281005859375,
0.132080078125,
-0.456298828125,
0.71533203125,
-0.1875,
-1.0078125,
-0.2364501953125,
-1.1796875,
-0.434326171875,
-0.442138671875,
-0.2205810546875,
-0.03521728515625,
0.0853271484375,
-0.144775390625,
-0.1334228515625,
-0.382080078125,
-0.58447265625,
-0.630859375,
-0.351806640625,
-0.67333984375,
0.5654296875,
0.026641845703125,
0.724609375,
0.11114501953125,
-0.62841796875,
0.140380859375,
-0.0675048828125,
0.09869384765625,
-0.51513671875,
-0.1595458984375,
-0.243896484375,
-0.145751953125,
-0.0628662109375,
0.62060546875,
-0.0103302001953125,
0.474853515625,
0.9072265625,
0.298095703125,
0.370849609375,
0.279296875,
-0.65234375,
1.1005859375,
0.098388671875,
-1.18359375,
-0.287841796875,
0.59716796875,
-0.240478515625,
0.919921875,
-0.059814453125,
-0.6533203125,
-0.8173828125,
-0.87451171875,
0.445068359375,
-1.1904296875,
-0.316650390625,
-1.2900390625,
-0.331787109375,
0.0416259765625,
0.386962890625,
-0.494873046875,
-0.77685546875,
0.29052734375,
-0.83935546875,
0.41357421875,
-0.8095703125,
-0.13818359375,
-0.68408203125,
-0.33544921875,
-0.428466796875,
1.189453125,
0.061553955078125,
0.47314453125,
0.21142578125,
0.09832763671875,
0.33642578125,
-0.002956390380859375,
-0.796875,
-0.06585693359375,
-0.091064453125,
0.01500701904296875,
-0.0014867782592773438,
-0.005664825439453125,
-0.458740234375,
0.76513671875,
-0.74169921875,
0.385498046875,
-0.1806640625,
-0.316162109375,
-0.2059326171875,
-0.036773681640625,
0.68505859375,
-0.35791015625,
0.10943603515625,
-0.10504150390625,
0.58203125,
1.0712890625,
-0.52197265625,
-0.397705078125,
-0.791015625,
-0.3076171875,
-1.2734375,
0.6474609375,
-0.8330078125,
0.3544921875,
-0.79541015625,
0.1614990234375,
1.212890625,
-0.58837890625,
0.560546875,
1.5322265625,
0.484375,
0.22998046875,
-0.6767578125,
0.744140625,
1.0126953125,
-0.541015625,
-0.1678466796875,
-0.032470703125,
-0.8076171875,
0.048492431640625,
-0.0255584716796875,
-1.34375,
-0.79931640625,
0.326904296875,
1.291015625,
-0.287109375,
0.34521484375,
0.291015625,
-1.0986328125,
-0.798828125,
1.0087890625,
0.21875,
0.2237548828125,
1.0908203125,
-0.243408203125,
-0.53515625,
0.4462890625,
-0.1766357421875,
-0.1563720703125,
-0.1500244140625,
1.0634765625,
-0.07904052734375,
-0.51708984375,
1.375,
0.75830078125,
-1.1494140625,
-1.080078125,
-0.564453125,
-0.186279296875,
-0.06292724609375,
-0.64306640625,
-0.01274871826171875,
0.450927734375,
-0.880859375,
0.0165252685546875,
0.4658203125,
-0.396484375,
0.146728515625,
0.11474609375,
-0.04669189453125,
-0.60107421875,
0.38916015625,
0.78369140625,
-0.5224609375,
-0.388427734375,
-1.3828125,
-0.1707763671875,
-0.06463623046875,
0.06292724609375,
0.37939453125,
-0.1884765625,
0.54541015625,
0.08056640625,
0.411376953125,
0.787109375,
-0.431396484375,
-0.449951171875,
0.490966796875,
-0.89794921875,
-0.60009765625,
-0.15283203125,
0.429443359375,
-0.0662841796875,
0.662109375,
-0.57421875,
-0.08477783203125,
0.4326171875,
0.2462158203125,
-0.0704345703125,
-0.73046875,
-0.35693359375,
-1.1845703125,
-0.54150390625,
-0.32568359375,
-0.6435546875,
0.0308990478515625,
0.17626953125,
0.055389404296875,
-0.3974609375,
0.2159423828125,
0.64453125,
-0.67041015625,
0.7265625,
-0.91015625,
0.371826171875,
-1.01171875,
-0.101318359375,
-0.374755859375,
-0.243408203125,
-0.5048828125,
-0.142578125,
-0.308837890625,
0.1644287109375,
0.058319091796875,
0.38525390625,
-0.37109375,
0.58544921875,
-0.1441650390625,
-0.318115234375,
0.385498046875,
0.20849609375,
0.0208282470703125,
0.90869140625,
0.6259765625,
-0.246826171875,
0.3359375,
-0.345458984375,
-0.5166015625,
0.112548828125,
0.8017578125,
0.54248046875,
-0.07275390625,
-0.0270538330078125,
-0.287109375,
0.242919921875,
-1.25390625,
0.1026611328125,
-0.391845703125,
0.29248046875,
0.254638671875,
0.09100341796875,
0.039031982421875,
1.1064453125,
-0.4658203125,
0.36669921875,
-0.031280517578125,
0.34326171875,
0.29736328125,
0.250732421875,
0.2159423828125,
0.6787109375,
-0.07122802734375,
-0.27880859375,
0.06976318359375,
0.1463623046875,
0.1702880859375,
0.03277587890625,
-0.2357177734375,
-0.78271484375,
-0.460205078125,
-0.20751953125,
0.00335693359375,
0.243408203125,
0.384521484375,
-0.5634765625,
0.3095703125,
-0.277587890625,
-0.62451171875,
-0.01047515869140625,
-1.279296875,
-0.8134765625,
0.2880859375,
0.0916748046875,
-0.3798828125,
-0.375244140625,
-0.5458984375,
-0.14990234375,
0.2325439453125,
0.339111328125,
-0.3564453125,
0.1556396484375,
-0.46630859375,
0.406005859375,
-0.295654296875,
0.17724609375,
0.302978515625,
0.194091796875,
-0.80859375,
-0.767578125,
0.0010175704956054688,
1.0703125,
0.126708984375,
0.0035839080810546875,
-0.208251953125,
0.1314697265625,
-0.169921875,
0.268798828125,
-0.51513671875,
-0.048614501953125,
-0.1402587890625,
0.18359375,
-0.88037109375,
-0.117431640625,
-0.060333251953125,
0.60888671875,
0.10638427734375,
-0.2509765625,
-0.81884765625,
0.78955078125,
0.705078125,
-0.1715087890625,
0.29833984375,
0.36572265625,
0.57470703125,
0.1629638671875,
-0.328857421875,
-0.53857421875,
0.82470703125,
0.90478515625,
0.5771484375,
-0.287353515625,
0.47021484375,
0.69775390625,
-0.2587890625,
-0.188232421875,
0.425048828125,
0.1336669921875,
-0.1287841796875,
0.219970703125,
-0.1439208984375,
-0.1605224609375,
0.311279296875,
-0.216064453125,
0.55859375,
-0.2003173828125,
0.09832763671875,
-0.08636474609375,
-0.84619140625,
0.73095703125,
-0.2958984375,
-0.38427734375,
-0.040618896484375,
-0.4052734375,
0.424560546875,
0.65673828125,
-0.129150390625,
-0.09625244140625,
0.935546875,
0.82177734375,
0.342529296875,
0.6298828125,
0.37548828125,
0.252197265625,
-0.59619140625,
-0.016387939453125,
0.2236328125,
0.0014982223510742188,
-0.65234375,
-0.46435546875,
-1.111328125,
0.75390625,
-0.378173828125,
-0.3359375,
0.485595703125,
-0.406005859375,
0.0931396484375,
-0.439453125,
0.966796875,
-0.56787109375,
0.0953369140625,
0.479736328125,
-0.499267578125,
-0.5224609375,
0.79443359375,
-0.2890625,
0.19921875,
0.08428955078125,
1.3623046875,
-0.1407470703125,
1.779296875,
0.48486328125,
-0.2958984375,
0.1591796875,
0.78369140625,
-0.2442626953125,
-0.6796875,
-0.028533935546875,
-0.386962890625,
-0.2154541015625,
-0.779296875,
-0.54638671875,
-0.71923828125,
0.76025390625,
-0.11761474609375,
-0.6611328125,
-0.1806640625,
0.235107421875,
-0.625,
0.7392578125,
0.2071533203125,
0.08062744140625,
0.1461181640625,
0.034332275390625,
-0.490966796875,
-0.59912109375,
0.425537109375,
-0.338623046875,
0.07208251953125,
-0.70654296875,
-0.461669921875,
-0.501953125,
-0.367431640625,
-0.369873046875,
-0.125,
-0.4619140625,
-0.7744140625,
0.71923828125,
0.5888671875,
0.5849609375,
0.1678466796875,
-0.475830078125,
0.1651611328125,
0.61083984375,
1.10546875,
-0.04510498046875,
0.55859375,
0.475341796875,
-0.187255859375,
0.07568359375,
-0.5625,
0.476806640625,
0.463623046875,
0.15087890625,
-0.46826171875,
0.30224609375,
-0.81640625,
-1.1806640625,
-0.21337890625,
0.76708984375,
0.5107421875,
-0.78857421875,
-1.1875,
-0.3046875,
-1.126953125,
-0.1427001953125,
-0.48828125,
0.96240234375,
-0.243896484375,
-0.0018873214721679688,
-0.0855712890625,
-1.19140625,
4.19140625,
0.87255859375,
1.10546875,
0.302734375,
0.31005859375,
1.0888671875,
0.269775390625,
-0.7314453125,
-0.2763671875,
-0.218505859375,
0.6337890625,
-0.4716796875,
-0.1268310546875,
1.2060546875,
0.233642578125,
1.0107421875,
-0.85693359375,
0.021392822265625,
0.4130859375,
-1.0302734375,
-0.66845703125,
0.2275390625,
0.1573486328125,
0.6357421875,
0.03338623046875,
0.29296875,
0.8486328125,
-0.6630859375,
-0.54541015625,
-0.422607421875,
-0.0226287841796875,
-0.30859375,
0.7421875,
0.32470703125,
-0.2587890625,
0.6025390625,
0.0406494140625,
-0.457763671875,
0.046600341796875,
0.307861328125,
0.220458984375,
0.049835205078125,
0.2890625,
-0.5927734375,
-0.1964111328125,
0.387939453125,
-0.7861328125,
0.5166015625,
0.2252197265625,
-0.7314453125,
0.8857421875,
0.256591796875,
0.34619140625,
-0.4130859375,
-0.91357421875,
0.1708984375,
0.274169921875,
0.0207366943359375,
-0.404296875,
0.56591796875,
0.38134765625,
0.39013671875,
-0.0259552001953125,
0.9052734375,
-1.1259765625,
1.1708984375,
-0.2509765625,
0.42236328125,
-0.70849609375,
0.005664825439453125,
-0.10626220703125,
-0.1715087890625,
-0.335205078125,
-0.26708984375,
0.64404296875,
0.54052734375,
0.04815673828125,
0.406005859375,
0.253662109375,
-0.55517578125,
0.35693359375,
-0.255859375,
-0.470947265625,
-0.0975341796875,
0.775390625,
1.248046875,
-0.716796875,
-0.251708984375,
-0.14306640625,
0.6767578125,
0.73291015625,
0.78125,
0.1160888671875,
-0.751953125,
-0.6376953125
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Phoenix has a string s consisting of lowercase Latin letters. He wants to distribute all the letters of his string into k non-empty strings a_1, a_2, ..., a_k such that every letter of s goes to exactly one of the strings a_i. The strings a_i do not need to be substrings of s. Phoenix can distribute letters of s and rearrange the letters within each string a_i however he wants.
For example, if s = baba and k=2, Phoenix may distribute the letters of his string in many ways, such as:
* ba and ba
* a and abb
* ab and ab
* aa and bb
But these ways are invalid:
* baa and ba
* b and ba
* baba and empty string (a_i should be non-empty)
Phoenix wants to distribute the letters of his string s into k strings a_1, a_2, ..., a_k to minimize the lexicographically maximum string among them, i. e. minimize max(a_1, a_2, ..., a_k). Help him find the optimal distribution and print the minimal possible value of max(a_1, a_2, ..., a_k).
String x is lexicographically less than string y if either x is a prefix of y and x ≠ y, or there exists an index i (1 ≤ i ≤ min(|x|, |y|)) such that x_i < y_i and for every j (1 ≤ j < i) x_j = y_j. Here |x| denotes the length of the string x.
Input
The input consists of multiple test cases. The first line contains an integer t (1 ≤ t ≤ 1000) — the number of test cases. Each test case consists of two lines.
The first line of each test case consists of two integers n and k (1 ≤ k ≤ n ≤ 10^5) — the length of string s and the number of non-empty strings, into which Phoenix wants to distribute letters of s, respectively.
The second line of each test case contains a string s of length n consisting only of lowercase Latin letters.
It is guaranteed that the sum of n over all test cases is ≤ 10^5.
Output
Print t answers — one per test case. The i-th answer should be the minimal possible value of max(a_1, a_2, ..., a_k) in the i-th test case.
Example
Input
6
4 2
baba
5 2
baacb
5 3
baacb
5 3
aaaaa
6 4
aaxxzz
7 1
phoenix
Output
ab
abbc
b
aa
x
ehinopx
Note
In the first test case, one optimal solution is to distribute baba into ab and ab.
In the second test case, one optimal solution is to distribute baacb into abbc and a.
In the third test case, one optimal solution is to distribute baacb into ac, ab, and b.
In the fourth test case, one optimal solution is to distribute aaaaa into aa, aa, and a.
In the fifth test case, one optimal solution is to distribute aaxxzz into az, az, x, and x.
In the sixth test case, one optimal solution is to distribute phoenix into ehinopx.
Tags: constructive algorithms, greedy, sortings, strings
Correct Solution:
```
import math
cases = int(input())
for t in range(cases):
n,k = list(map(int,input().split()))
s = ''.join(sorted(input()))
if k==1:
print(''.join(s))
elif s[0]!=s[k-1]:
print(s[k-1])
else:
if s[0]==s[-1]:
print(s[0]*(math.ceil(n/k)))
elif s[k]==s[-1]:
print(s[0]+s[k]*math.ceil((n-k)/k))
else:
print(s[0]+s[k:])
```
| 10,925 | [
0.2105712890625,
0.3369140625,
0.422607421875,
0.4091796875,
-0.60986328125,
-0.57666015625,
-0.06549072265625,
0.10791015625,
-0.046966552734375,
0.88818359375,
1.0712890625,
0.11895751953125,
0.0626220703125,
-0.85302734375,
-0.83837890625,
0.361328125,
-0.65673828125,
-0.55322265625,
-0.351318359375,
-0.1859130859375,
0.171875,
0.1126708984375,
-1.6328125,
-0.3173828125,
-0.2313232421875,
0.90869140625,
0.2230224609375,
0.020263671875,
1.14453125,
0.87744140625,
0.0523681640625,
-0.41552734375,
0.71630859375,
-1.197265625,
-0.360107421875,
-0.5517578125,
0.82421875,
-0.366455078125,
-0.380615234375,
-0.8212890625,
0.5849609375,
-0.88720703125,
0.458251953125,
-0.5791015625,
-0.849609375,
-0.10546875,
-0.03204345703125,
-0.537109375,
-0.55859375,
-0.3837890625,
0.07647705078125,
-0.349853515625,
0.64794921875,
-0.51171875,
0.1121826171875,
0.08734130859375,
0.08648681640625,
-0.043487548828125,
-0.779296875,
0.2255859375,
0.01116180419921875,
0.233642578125,
-0.44189453125,
-0.75927734375,
-0.1171875,
0.28857421875,
-0.08758544921875,
-0.009033203125,
0.1715087890625,
-1.1220703125,
-0.4677734375,
0.29736328125,
-0.444580078125,
-0.72802734375,
-0.390380859375,
0.019317626953125,
0.1116943359375,
-0.13134765625,
-0.5615234375,
0.7802734375,
0.1644287109375,
0.64208984375,
0.22265625,
0.00731658935546875,
-0.6845703125,
-0.53076171875,
0.10784912109375,
0.397705078125,
0.053375244140625,
0.1976318359375,
0.016387939453125,
0.47265625,
-0.6474609375,
0.16845703125,
0.376220703125,
0.896484375,
-0.036773681640625,
0.4501953125,
0.15185546875,
0.40283203125,
1.1484375,
0.80859375,
-0.578125,
1.1240234375,
-0.6015625,
0.194091796875,
-0.1317138671875,
-0.19384765625,
-0.282958984375,
-0.435791015625,
-0.263427734375,
0.0269622802734375,
0.345947265625,
0.380126953125,
-0.22998046875,
0.73779296875,
-0.16064453125,
0.7626953125,
-0.86572265625,
-0.032379150390625,
0.52587890625,
0.0657958984375,
0.65087890625,
-0.263916015625,
-0.045654296875,
-0.2027587890625,
-0.56982421875,
0.8173828125,
-0.78076171875,
-0.061248779296875,
0.5263671875,
0.09735107421875,
-0.5263671875,
0.471923828125,
0.033233642578125,
0.47705078125,
0.032379150390625,
0.5458984375,
0.91455078125,
-0.2235107421875,
0.6904296875,
-0.21875,
0.0430908203125,
1.5068359375,
0.122802734375,
-0.165771484375,
0.66357421875,
0.02069091796875,
-0.595703125,
0.9033203125,
-0.80224609375,
0.470703125,
0.12841796875,
0.400634765625,
-0.232421875,
0.087890625,
-0.01099395751953125,
0.814453125,
0.27001953125,
0.302734375,
-0.7021484375,
-0.173583984375,
-0.28515625,
0.822265625,
-0.377685546875,
0.9365234375,
-0.865234375,
-0.4228515625,
-0.12255859375,
-0.426025390625,
-0.1258544921875,
-0.3642578125,
-0.007709503173828125,
0.8779296875,
0.293701171875,
0.79833984375,
0.72509765625,
-0.66015625,
0.487548828125,
0.278076171875,
-0.1226806640625,
0.419189453125,
0.265380859375,
0.61669921875,
0.331298828125,
0.157958984375,
-0.053619384765625,
-0.36865234375,
-0.69287109375,
-0.63671875,
0.2298583984375,
0.6142578125,
-0.2374267578125,
0.290771484375,
-0.057830810546875,
0.1666259765625,
-0.732421875,
-0.263916015625,
-0.090576171875,
-1.0029296875,
-0.3369140625,
0.409423828125,
-0.01435089111328125,
0.2626953125,
-0.70556640625,
-0.49560546875,
0.30322265625,
1.0771484375,
-0.2054443359375,
0.07952880859375,
0.459716796875,
0.25830078125,
-0.2176513671875,
0.34033203125,
0.04656982421875,
-0.11737060546875,
-0.58154296875,
0.6845703125,
-0.61376953125,
0.029754638671875,
-0.08563232421875,
0.904296875,
0.2724609375,
0.23388671875,
-0.5478515625,
-0.0943603515625,
0.5625,
1.2509765625,
-0.1165771484375,
0.50048828125,
0.52685546875,
0.826171875,
0.437744140625,
0.767578125,
0.478515625,
0.5361328125,
0.6748046875,
0.736328125,
0.0204315185546875,
0.217041015625,
0.141845703125,
0.466064453125,
0.417236328125,
0.444091796875,
0.0927734375,
0.57568359375,
-0.412109375,
0.373046875,
-0.93701171875,
0.1787109375,
-0.14892578125,
1.095703125,
0.37353515625,
0.4150390625,
-0.400634765625,
-0.363037109375,
0.292236328125,
0.79052734375,
-1.0751953125,
-0.68994140625,
-0.11236572265625,
0.020904541015625,
0.20849609375,
-0.08203125,
0.345703125,
0.361083984375,
0.75732421875,
-0.06243896484375,
-0.28369140625,
-0.2958984375,
-1.22265625,
-0.9765625,
-0.5849609375,
-0.462890625,
-0.486328125,
0.14990234375,
0.6044921875,
-1.06640625,
0.169677734375,
-0.56298828125,
0.103515625,
-0.00547027587890625,
-0.89404296875,
0.315185546875,
0.060699462890625,
0.8564453125,
-0.8095703125,
0.6669921875,
-0.09283447265625,
1.029296875,
-0.84716796875,
-0.35400390625,
-0.2734375,
-0.4599609375,
0.486572265625,
0.1534423828125,
0.1402587890625,
-0.0239410400390625,
-0.56591796875,
-0.99755859375,
-0.291748046875,
-0.055938720703125,
-0.486328125,
0.298828125,
-0.79931640625,
0.99853515625,
0.546875,
-0.73779296875,
0.418212890625,
1.0712890625,
-0.755859375,
0.419677734375,
0.30126953125,
-0.0215911865234375,
-0.70263671875,
1.2109375,
0.44482421875,
0.333251953125,
-0.58056640625,
-0.74755859375,
-0.2178955078125,
0.34814453125,
0.082275390625,
-0.64599609375,
0.0263824462890625,
0.9462890625,
-0.2076416015625,
-1.373046875,
0.59521484375,
-0.86474609375,
-0.74658203125,
-0.292724609375,
-0.53173828125,
0.6337890625,
0.5673828125,
0.258544921875,
-0.47607421875,
-0.220458984375,
0.01131439208984375,
0.634765625,
0.120361328125,
-0.7333984375,
-0.01515960693359375,
0.55615234375,
-0.1871337890625,
-0.057464599609375,
0.3115234375,
-0.487060546875,
-0.234130859375,
-0.04412841796875,
-0.037506103515625,
0.7783203125,
0.179931640625,
0.443115234375,
0.2978515625,
0.5986328125,
-0.892578125,
-0.17919921875,
-0.14697265625,
0.57177734375,
0.270263671875,
0.359375,
0.443115234375,
-0.19775390625,
-0.77197265625,
-1.4169921875,
0.289306640625,
0.340087890625,
0.64013671875,
-0.857421875,
0.88525390625,
0.256103515625,
-0.63427734375,
0.51708984375,
-0.8076171875,
0.1676025390625,
1.0986328125,
-0.48681640625,
0.84521484375,
-0.81689453125,
-0.046722412109375,
0.1475830078125,
0.11431884765625,
0.41259765625,
0.476318359375,
0.60546875,
-0.185546875,
-0.1368408203125,
-0.45947265625,
-0.21484375,
0.0950927734375,
-0.318603515625,
0.33935546875,
-0.31787109375,
-0.343994140625,
-1.107421875,
0.52392578125,
0.68212890625,
0.5087890625,
0.48583984375,
0.54541015625,
0.23974609375,
0.357177734375,
0.52197265625,
-0.25634765625,
0.1971435546875,
-0.476806640625,
0.806640625,
0.09576416015625,
-0.08697509765625,
-0.3271484375,
-0.3515625,
0.00846099853515625,
0.408203125,
-0.04669189453125,
-0.07366943359375,
-0.904296875,
0.1820068359375,
-0.020538330078125,
0.828125,
-0.454345703125,
-0.20068359375,
-0.06011962890625,
0.32666015625,
0.4716796875,
-0.728515625,
-0.20703125,
-0.7880859375,
0.53759765625,
0.26220703125,
-0.004955291748046875,
-0.29052734375,
-0.3154296875,
-0.58349609375,
-0.7958984375,
0.7060546875,
0.896484375,
-0.078369140625,
-0.110595703125,
-1.125,
0.7548828125,
0.16748046875,
-0.20166015625,
0.1624755859375,
0.03253173828125,
0.400390625,
-0.268310546875,
0.658203125,
-0.0079345703125,
-0.74365234375,
0.251953125,
-1.0380859375,
0.408935546875,
-0.255126953125,
0.28955078125,
-0.52001953125,
0.1143798828125,
-0.0462646484375,
0.30712890625,
-0.3232421875,
0.2734375,
-0.28955078125,
0.343505859375,
-1.1494140625,
-0.49755859375,
0.33642578125,
-0.352783203125,
-0.005237579345703125,
1.080078125,
-0.26123046875,
-0.53076171875,
0.1947021484375,
0.603515625,
-0.316650390625,
0.227783203125,
-0.381103515625,
0.261962890625,
-0.47998046875,
-0.20849609375,
-0.1922607421875,
-0.38037109375,
0.76611328125,
-0.2467041015625,
-0.46337890625,
-0.2198486328125,
-0.8896484375,
-0.0180816650390625,
-0.0110931396484375,
-0.9365234375,
0.479736328125,
0.005588531494140625,
-0.384521484375,
-0.052978515625,
-0.2078857421875,
-0.345703125,
-0.37451171875,
-0.25146484375,
-0.521484375,
0.2529296875,
0.76611328125,
1.2822265625,
0.1513671875,
-0.4091796875,
-0.038726806640625,
0.157958984375,
-0.0994873046875,
-0.5263671875,
0.0301513671875,
-0.307861328125,
-0.08135986328125,
-0.263916015625,
0.24169921875,
0.27587890625,
0.2216796875,
0.441650390625,
0.337890625,
0.38232421875,
0.41015625,
-0.3193359375,
1.2744140625,
0.107421875,
-0.94384765625,
-0.67333984375,
0.5,
-0.0201568603515625,
0.316162109375,
0.16845703125,
-0.72021484375,
-0.74853515625,
-0.90283203125,
0.2109375,
-0.68212890625,
-0.334716796875,
-0.83984375,
-0.404296875,
-0.7099609375,
0.2491455078125,
-0.434326171875,
-0.465576171875,
-0.0574951171875,
-1.2236328125,
0.06927490234375,
-0.716796875,
-0.483154296875,
-0.609375,
-0.25537109375,
-0.1873779296875,
1.1953125,
0.06341552734375,
0.295654296875,
-0.055023193359375,
-0.0435791015625,
0.259033203125,
-0.04718017578125,
-0.65185546875,
-0.64111328125,
-0.210693359375,
0.03387451171875,
0.1162109375,
0.00836181640625,
-0.5712890625,
0.74169921875,
-0.8095703125,
-0.06317138671875,
-0.3701171875,
-0.0672607421875,
-0.2052001953125,
-0.72998046875,
0.9384765625,
-0.498291015625,
0.2587890625,
-0.2010498046875,
0.546875,
0.8642578125,
-0.1456298828125,
-0.330078125,
-0.5390625,
-0.484130859375,
-1.26171875,
0.2763671875,
-0.445556640625,
0.262451171875,
-0.7421875,
-0.84033203125,
1.1025390625,
-0.677734375,
0.51171875,
1.1787109375,
0.06890869140625,
0.7060546875,
-0.53662109375,
0.89404296875,
0.7021484375,
-0.55126953125,
-0.03643798828125,
0.132080078125,
-0.611328125,
-0.093994140625,
-0.272705078125,
-1.1826171875,
-0.78466796875,
0.52978515625,
1.28515625,
-0.453857421875,
0.71728515625,
0.09112548828125,
-1.0771484375,
-0.56591796875,
1.021484375,
0.0516357421875,
0.337158203125,
0.82421875,
-0.321533203125,
-0.33251953125,
0.404296875,
-0.364501953125,
-0.40234375,
-0.5244140625,
1.10546875,
-0.26953125,
-0.51806640625,
0.62109375,
0.77783203125,
-1.1953125,
-0.62548828125,
-0.285888671875,
0.27880859375,
-0.3486328125,
-0.98779296875,
-0.211181640625,
0.56787109375,
-0.9912109375,
0.159912109375,
0.38525390625,
-0.296142578125,
0.59228515625,
0.1524658203125,
0.48291015625,
-0.50048828125,
0.494873046875,
0.5859375,
-0.375732421875,
-0.329833984375,
-0.73681640625,
-0.10308837890625,
0.0684814453125,
0.12091064453125,
0.822265625,
-0.416259765625,
0.168701171875,
0.2135009765625,
0.0538330078125,
0.80712890625,
-0.173828125,
-0.306640625,
0.3310546875,
-1.1103515625,
-0.7939453125,
-0.2239990234375,
0.2158203125,
-0.26708984375,
0.58154296875,
-0.68212890625,
0.00266265869140625,
-0.0865478515625,
0.328125,
-0.348876953125,
-0.884765625,
-0.001590728759765625,
-1.099609375,
-0.4443359375,
-0.69873046875,
-0.71728515625,
0.26220703125,
0.3330078125,
0.140625,
-0.76806640625,
0.244140625,
0.6806640625,
-0.52978515625,
0.767578125,
-0.623046875,
0.396728515625,
-0.26416015625,
-0.1217041015625,
-0.91455078125,
0.09063720703125,
-0.401123046875,
0.036376953125,
-0.5244140625,
0.497314453125,
-0.04730224609375,
0.529296875,
0.004871368408203125,
0.25830078125,
-0.3984375,
-0.358154296875,
-0.1947021484375,
0.2255859375,
-0.3984375,
0.642578125,
0.7529296875,
0.08697509765625,
-0.01666259765625,
-0.41650390625,
-0.424560546875,
-0.251708984375,
0.6240234375,
0.454345703125,
-0.29345703125,
0.26904296875,
-0.501953125,
0.1199951171875,
-1.1923828125,
0.324462890625,
-0.417724609375,
0.0689697265625,
-0.006687164306640625,
-0.205322265625,
0.6494140625,
1.466796875,
-0.354736328125,
0.361328125,
0.2034912109375,
0.1966552734375,
0.5654296875,
0.21435546875,
-0.0019855499267578125,
0.68896484375,
0.03143310546875,
-0.369140625,
-0.1878662109375,
0.1812744140625,
0.55029296875,
0.0650634765625,
-0.26953125,
-0.98095703125,
-1.01171875,
-0.58935546875,
0.07562255859375,
0.62890625,
0.316162109375,
-0.75732421875,
-0.2176513671875,
-0.192626953125,
-0.376708984375,
0.358154296875,
-1.3603515625,
-0.82568359375,
0.146484375,
0.2252197265625,
-0.3447265625,
0.2880859375,
-0.490478515625,
-0.2890625,
-0.049224853515625,
0.46484375,
-0.426513671875,
0.4052734375,
-0.009307861328125,
0.64453125,
0.01139068603515625,
-0.045989990234375,
0.2281494140625,
0.7724609375,
-0.70263671875,
-0.53271484375,
0.181640625,
1.169921875,
-0.019775390625,
0.0404052734375,
-0.72216796875,
0.2159423828125,
0.00836181640625,
0.09423828125,
-0.51416015625,
0.1851806640625,
-0.27734375,
0.623046875,
-1.373046875,
-0.27197265625,
0.06591796875,
0.268310546875,
0.173095703125,
-0.441650390625,
-0.54052734375,
1.0068359375,
1.2197265625,
-0.129638671875,
0.202392578125,
-0.12841796875,
0.61328125,
0.089599609375,
-0.0416259765625,
-0.46875,
0.389892578125,
0.349853515625,
0.69189453125,
-0.1435546875,
0.375244140625,
0.865234375,
0.271240234375,
-0.3232421875,
0.44287109375,
0.52197265625,
0.021087646484375,
-0.12457275390625,
-0.264404296875,
0.04638671875,
0.287109375,
-0.6640625,
0.347412109375,
-0.4814453125,
0.09765625,
-0.0799560546875,
-0.8046875,
0.90625,
-0.57763671875,
-0.2347412109375,
0.287841796875,
-0.455078125,
0.27587890625,
0.54736328125,
0.354248046875,
-0.10211181640625,
0.81103515625,
0.69482421875,
0.68408203125,
0.6298828125,
0.578125,
0.369140625,
-0.64501953125,
0.1849365234375,
0.2340087890625,
-0.28662109375,
-0.2154541015625,
-0.290283203125,
-1.0576171875,
0.65576171875,
-0.33740234375,
-0.469970703125,
0.348388671875,
-0.95751953125,
0.0187835693359375,
-0.280029296875,
0.8720703125,
-0.333984375,
0.47216796875,
0.422119140625,
-0.2183837890625,
-0.406494140625,
1.1591796875,
0.0181732177734375,
0.342041015625,
0.06243896484375,
0.50830078125,
0.30517578125,
1.2958984375,
0.71142578125,
0.0204315185546875,
0.36279296875,
0.7197265625,
-0.66015625,
-0.60302734375,
-0.1890869140625,
-0.208740234375,
0.09112548828125,
-0.576171875,
-0.06884765625,
-0.634765625,
0.5263671875,
0.262939453125,
-0.77587890625,
-0.405517578125,
0.10430908203125,
-0.9951171875,
0.21923828125,
0.67919921875,
0.361328125,
0.21826171875,
0.003017425537109375,
-0.269775390625,
-0.47509765625,
0.1387939453125,
-0.61767578125,
0.3310546875,
-0.7919921875,
-0.2225341796875,
-0.71240234375,
-0.62060546875,
-0.42236328125,
-0.266845703125,
-0.27099609375,
-1.14453125,
0.78271484375,
0.689453125,
0.51416015625,
0.48486328125,
-0.39111328125,
0.0618896484375,
0.74560546875,
0.7578125,
-0.07293701171875,
0.89013671875,
0.431396484375,
-0.0177001953125,
0.1217041015625,
-0.257568359375,
0.220703125,
-0.02642822265625,
0.2493896484375,
-0.383544921875,
0.4013671875,
-0.6171875,
-1.55078125,
0.07110595703125,
0.350830078125,
0.43701171875,
-0.4404296875,
-1.0263671875,
-0.459716796875,
-0.978515625,
-0.02227783203125,
-0.556640625,
0.7646484375,
-0.087890625,
0.1597900390625,
-0.273193359375,
-1.1552734375,
4.3046875,
1.1083984375,
1.1728515625,
0.142578125,
0.412109375,
1.3359375,
0.1282958984375,
-0.66943359375,
-0.328369140625,
-0.5927734375,
0.716796875,
-0.300537109375,
0.2210693359375,
0.53125,
0.0648193359375,
0.880859375,
-0.421630859375,
-0.0859375,
0.0006775856018066406,
-0.8876953125,
-0.8408203125,
0.14599609375,
-0.04510498046875,
0.3955078125,
-0.0660400390625,
0.21630859375,
0.75732421875,
-0.97216796875,
-0.1871337890625,
-0.30517578125,
0.23779296875,
-0.880859375,
1.044921875,
-0.30029296875,
-0.14013671875,
0.701171875,
0.133544921875,
-0.517578125,
-0.61669921875,
0.20361328125,
-0.08868408203125,
0.496337890625,
0.66552734375,
-1.0556640625,
-0.1649169921875,
0.40185546875,
-0.51806640625,
0.307861328125,
-0.126220703125,
-0.6494140625,
0.6884765625,
-0.392822265625,
0.333251953125,
-0.407470703125,
-1.1142578125,
0.52490234375,
0.286376953125,
0.231689453125,
-0.42138671875,
0.28076171875,
0.2225341796875,
0.40966796875,
0.038482666015625,
0.54736328125,
-0.859375,
0.479248046875,
-0.1441650390625,
0.301025390625,
-0.38671875,
-0.031890869140625,
-0.90771484375,
-0.51123046875,
-0.3291015625,
-0.29248046875,
0.379150390625,
0.2763671875,
-0.1787109375,
0.623046875,
0.6748046875,
-0.496337890625,
0.25,
-0.295166015625,
-0.068603515625,
-0.38916015625,
0.343994140625,
0.8115234375,
-0.44775390625,
-0.56103515625,
-0.1644287109375,
0.6357421875,
0.58447265625,
0.71435546875,
0.358642578125,
-0.56982421875,
-0.1846923828125
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Phoenix has a string s consisting of lowercase Latin letters. He wants to distribute all the letters of his string into k non-empty strings a_1, a_2, ..., a_k such that every letter of s goes to exactly one of the strings a_i. The strings a_i do not need to be substrings of s. Phoenix can distribute letters of s and rearrange the letters within each string a_i however he wants.
For example, if s = baba and k=2, Phoenix may distribute the letters of his string in many ways, such as:
* ba and ba
* a and abb
* ab and ab
* aa and bb
But these ways are invalid:
* baa and ba
* b and ba
* baba and empty string (a_i should be non-empty)
Phoenix wants to distribute the letters of his string s into k strings a_1, a_2, ..., a_k to minimize the lexicographically maximum string among them, i. e. minimize max(a_1, a_2, ..., a_k). Help him find the optimal distribution and print the minimal possible value of max(a_1, a_2, ..., a_k).
String x is lexicographically less than string y if either x is a prefix of y and x ≠ y, or there exists an index i (1 ≤ i ≤ min(|x|, |y|)) such that x_i < y_i and for every j (1 ≤ j < i) x_j = y_j. Here |x| denotes the length of the string x.
Input
The input consists of multiple test cases. The first line contains an integer t (1 ≤ t ≤ 1000) — the number of test cases. Each test case consists of two lines.
The first line of each test case consists of two integers n and k (1 ≤ k ≤ n ≤ 10^5) — the length of string s and the number of non-empty strings, into which Phoenix wants to distribute letters of s, respectively.
The second line of each test case contains a string s of length n consisting only of lowercase Latin letters.
It is guaranteed that the sum of n over all test cases is ≤ 10^5.
Output
Print t answers — one per test case. The i-th answer should be the minimal possible value of max(a_1, a_2, ..., a_k) in the i-th test case.
Example
Input
6
4 2
baba
5 2
baacb
5 3
baacb
5 3
aaaaa
6 4
aaxxzz
7 1
phoenix
Output
ab
abbc
b
aa
x
ehinopx
Note
In the first test case, one optimal solution is to distribute baba into ab and ab.
In the second test case, one optimal solution is to distribute baacb into abbc and a.
In the third test case, one optimal solution is to distribute baacb into ac, ab, and b.
In the fourth test case, one optimal solution is to distribute aaaaa into aa, aa, and a.
In the fifth test case, one optimal solution is to distribute aaxxzz into az, az, x, and x.
In the sixth test case, one optimal solution is to distribute phoenix into ehinopx.
Tags: constructive algorithms, greedy, sortings, strings
Correct Solution:
```
for _ in range(int(input())):
n,k = map(int,input().split())
given = sorted(input())
if len(set(given[:k]))!=1:
ans = given[k-1]
else:
ans = ''
if len(set(given[k:]))==1:
for i in range(0,n,k):
ans+=given[i]
else:
ans = ''.join(given[k-1:])
print(ans)
```
| 10,926 | [
0.2105712890625,
0.3369140625,
0.422607421875,
0.4091796875,
-0.60986328125,
-0.57666015625,
-0.06549072265625,
0.10791015625,
-0.046966552734375,
0.88818359375,
1.0712890625,
0.11895751953125,
0.0626220703125,
-0.85302734375,
-0.83837890625,
0.361328125,
-0.65673828125,
-0.55322265625,
-0.351318359375,
-0.1859130859375,
0.171875,
0.1126708984375,
-1.6328125,
-0.3173828125,
-0.2313232421875,
0.90869140625,
0.2230224609375,
0.020263671875,
1.14453125,
0.87744140625,
0.0523681640625,
-0.41552734375,
0.71630859375,
-1.197265625,
-0.360107421875,
-0.5517578125,
0.82421875,
-0.366455078125,
-0.380615234375,
-0.8212890625,
0.5849609375,
-0.88720703125,
0.458251953125,
-0.5791015625,
-0.849609375,
-0.10546875,
-0.03204345703125,
-0.537109375,
-0.55859375,
-0.3837890625,
0.07647705078125,
-0.349853515625,
0.64794921875,
-0.51171875,
0.1121826171875,
0.08734130859375,
0.08648681640625,
-0.043487548828125,
-0.779296875,
0.2255859375,
0.01116180419921875,
0.233642578125,
-0.44189453125,
-0.75927734375,
-0.1171875,
0.28857421875,
-0.08758544921875,
-0.009033203125,
0.1715087890625,
-1.1220703125,
-0.4677734375,
0.29736328125,
-0.444580078125,
-0.72802734375,
-0.390380859375,
0.019317626953125,
0.1116943359375,
-0.13134765625,
-0.5615234375,
0.7802734375,
0.1644287109375,
0.64208984375,
0.22265625,
0.00731658935546875,
-0.6845703125,
-0.53076171875,
0.10784912109375,
0.397705078125,
0.053375244140625,
0.1976318359375,
0.016387939453125,
0.47265625,
-0.6474609375,
0.16845703125,
0.376220703125,
0.896484375,
-0.036773681640625,
0.4501953125,
0.15185546875,
0.40283203125,
1.1484375,
0.80859375,
-0.578125,
1.1240234375,
-0.6015625,
0.194091796875,
-0.1317138671875,
-0.19384765625,
-0.282958984375,
-0.435791015625,
-0.263427734375,
0.0269622802734375,
0.345947265625,
0.380126953125,
-0.22998046875,
0.73779296875,
-0.16064453125,
0.7626953125,
-0.86572265625,
-0.032379150390625,
0.52587890625,
0.0657958984375,
0.65087890625,
-0.263916015625,
-0.045654296875,
-0.2027587890625,
-0.56982421875,
0.8173828125,
-0.78076171875,
-0.061248779296875,
0.5263671875,
0.09735107421875,
-0.5263671875,
0.471923828125,
0.033233642578125,
0.47705078125,
0.032379150390625,
0.5458984375,
0.91455078125,
-0.2235107421875,
0.6904296875,
-0.21875,
0.0430908203125,
1.5068359375,
0.122802734375,
-0.165771484375,
0.66357421875,
0.02069091796875,
-0.595703125,
0.9033203125,
-0.80224609375,
0.470703125,
0.12841796875,
0.400634765625,
-0.232421875,
0.087890625,
-0.01099395751953125,
0.814453125,
0.27001953125,
0.302734375,
-0.7021484375,
-0.173583984375,
-0.28515625,
0.822265625,
-0.377685546875,
0.9365234375,
-0.865234375,
-0.4228515625,
-0.12255859375,
-0.426025390625,
-0.1258544921875,
-0.3642578125,
-0.007709503173828125,
0.8779296875,
0.293701171875,
0.79833984375,
0.72509765625,
-0.66015625,
0.487548828125,
0.278076171875,
-0.1226806640625,
0.419189453125,
0.265380859375,
0.61669921875,
0.331298828125,
0.157958984375,
-0.053619384765625,
-0.36865234375,
-0.69287109375,
-0.63671875,
0.2298583984375,
0.6142578125,
-0.2374267578125,
0.290771484375,
-0.057830810546875,
0.1666259765625,
-0.732421875,
-0.263916015625,
-0.090576171875,
-1.0029296875,
-0.3369140625,
0.409423828125,
-0.01435089111328125,
0.2626953125,
-0.70556640625,
-0.49560546875,
0.30322265625,
1.0771484375,
-0.2054443359375,
0.07952880859375,
0.459716796875,
0.25830078125,
-0.2176513671875,
0.34033203125,
0.04656982421875,
-0.11737060546875,
-0.58154296875,
0.6845703125,
-0.61376953125,
0.029754638671875,
-0.08563232421875,
0.904296875,
0.2724609375,
0.23388671875,
-0.5478515625,
-0.0943603515625,
0.5625,
1.2509765625,
-0.1165771484375,
0.50048828125,
0.52685546875,
0.826171875,
0.437744140625,
0.767578125,
0.478515625,
0.5361328125,
0.6748046875,
0.736328125,
0.0204315185546875,
0.217041015625,
0.141845703125,
0.466064453125,
0.417236328125,
0.444091796875,
0.0927734375,
0.57568359375,
-0.412109375,
0.373046875,
-0.93701171875,
0.1787109375,
-0.14892578125,
1.095703125,
0.37353515625,
0.4150390625,
-0.400634765625,
-0.363037109375,
0.292236328125,
0.79052734375,
-1.0751953125,
-0.68994140625,
-0.11236572265625,
0.020904541015625,
0.20849609375,
-0.08203125,
0.345703125,
0.361083984375,
0.75732421875,
-0.06243896484375,
-0.28369140625,
-0.2958984375,
-1.22265625,
-0.9765625,
-0.5849609375,
-0.462890625,
-0.486328125,
0.14990234375,
0.6044921875,
-1.06640625,
0.169677734375,
-0.56298828125,
0.103515625,
-0.00547027587890625,
-0.89404296875,
0.315185546875,
0.060699462890625,
0.8564453125,
-0.8095703125,
0.6669921875,
-0.09283447265625,
1.029296875,
-0.84716796875,
-0.35400390625,
-0.2734375,
-0.4599609375,
0.486572265625,
0.1534423828125,
0.1402587890625,
-0.0239410400390625,
-0.56591796875,
-0.99755859375,
-0.291748046875,
-0.055938720703125,
-0.486328125,
0.298828125,
-0.79931640625,
0.99853515625,
0.546875,
-0.73779296875,
0.418212890625,
1.0712890625,
-0.755859375,
0.419677734375,
0.30126953125,
-0.0215911865234375,
-0.70263671875,
1.2109375,
0.44482421875,
0.333251953125,
-0.58056640625,
-0.74755859375,
-0.2178955078125,
0.34814453125,
0.082275390625,
-0.64599609375,
0.0263824462890625,
0.9462890625,
-0.2076416015625,
-1.373046875,
0.59521484375,
-0.86474609375,
-0.74658203125,
-0.292724609375,
-0.53173828125,
0.6337890625,
0.5673828125,
0.258544921875,
-0.47607421875,
-0.220458984375,
0.01131439208984375,
0.634765625,
0.120361328125,
-0.7333984375,
-0.01515960693359375,
0.55615234375,
-0.1871337890625,
-0.057464599609375,
0.3115234375,
-0.487060546875,
-0.234130859375,
-0.04412841796875,
-0.037506103515625,
0.7783203125,
0.179931640625,
0.443115234375,
0.2978515625,
0.5986328125,
-0.892578125,
-0.17919921875,
-0.14697265625,
0.57177734375,
0.270263671875,
0.359375,
0.443115234375,
-0.19775390625,
-0.77197265625,
-1.4169921875,
0.289306640625,
0.340087890625,
0.64013671875,
-0.857421875,
0.88525390625,
0.256103515625,
-0.63427734375,
0.51708984375,
-0.8076171875,
0.1676025390625,
1.0986328125,
-0.48681640625,
0.84521484375,
-0.81689453125,
-0.046722412109375,
0.1475830078125,
0.11431884765625,
0.41259765625,
0.476318359375,
0.60546875,
-0.185546875,
-0.1368408203125,
-0.45947265625,
-0.21484375,
0.0950927734375,
-0.318603515625,
0.33935546875,
-0.31787109375,
-0.343994140625,
-1.107421875,
0.52392578125,
0.68212890625,
0.5087890625,
0.48583984375,
0.54541015625,
0.23974609375,
0.357177734375,
0.52197265625,
-0.25634765625,
0.1971435546875,
-0.476806640625,
0.806640625,
0.09576416015625,
-0.08697509765625,
-0.3271484375,
-0.3515625,
0.00846099853515625,
0.408203125,
-0.04669189453125,
-0.07366943359375,
-0.904296875,
0.1820068359375,
-0.020538330078125,
0.828125,
-0.454345703125,
-0.20068359375,
-0.06011962890625,
0.32666015625,
0.4716796875,
-0.728515625,
-0.20703125,
-0.7880859375,
0.53759765625,
0.26220703125,
-0.004955291748046875,
-0.29052734375,
-0.3154296875,
-0.58349609375,
-0.7958984375,
0.7060546875,
0.896484375,
-0.078369140625,
-0.110595703125,
-1.125,
0.7548828125,
0.16748046875,
-0.20166015625,
0.1624755859375,
0.03253173828125,
0.400390625,
-0.268310546875,
0.658203125,
-0.0079345703125,
-0.74365234375,
0.251953125,
-1.0380859375,
0.408935546875,
-0.255126953125,
0.28955078125,
-0.52001953125,
0.1143798828125,
-0.0462646484375,
0.30712890625,
-0.3232421875,
0.2734375,
-0.28955078125,
0.343505859375,
-1.1494140625,
-0.49755859375,
0.33642578125,
-0.352783203125,
-0.005237579345703125,
1.080078125,
-0.26123046875,
-0.53076171875,
0.1947021484375,
0.603515625,
-0.316650390625,
0.227783203125,
-0.381103515625,
0.261962890625,
-0.47998046875,
-0.20849609375,
-0.1922607421875,
-0.38037109375,
0.76611328125,
-0.2467041015625,
-0.46337890625,
-0.2198486328125,
-0.8896484375,
-0.0180816650390625,
-0.0110931396484375,
-0.9365234375,
0.479736328125,
0.005588531494140625,
-0.384521484375,
-0.052978515625,
-0.2078857421875,
-0.345703125,
-0.37451171875,
-0.25146484375,
-0.521484375,
0.2529296875,
0.76611328125,
1.2822265625,
0.1513671875,
-0.4091796875,
-0.038726806640625,
0.157958984375,
-0.0994873046875,
-0.5263671875,
0.0301513671875,
-0.307861328125,
-0.08135986328125,
-0.263916015625,
0.24169921875,
0.27587890625,
0.2216796875,
0.441650390625,
0.337890625,
0.38232421875,
0.41015625,
-0.3193359375,
1.2744140625,
0.107421875,
-0.94384765625,
-0.67333984375,
0.5,
-0.0201568603515625,
0.316162109375,
0.16845703125,
-0.72021484375,
-0.74853515625,
-0.90283203125,
0.2109375,
-0.68212890625,
-0.334716796875,
-0.83984375,
-0.404296875,
-0.7099609375,
0.2491455078125,
-0.434326171875,
-0.465576171875,
-0.0574951171875,
-1.2236328125,
0.06927490234375,
-0.716796875,
-0.483154296875,
-0.609375,
-0.25537109375,
-0.1873779296875,
1.1953125,
0.06341552734375,
0.295654296875,
-0.055023193359375,
-0.0435791015625,
0.259033203125,
-0.04718017578125,
-0.65185546875,
-0.64111328125,
-0.210693359375,
0.03387451171875,
0.1162109375,
0.00836181640625,
-0.5712890625,
0.74169921875,
-0.8095703125,
-0.06317138671875,
-0.3701171875,
-0.0672607421875,
-0.2052001953125,
-0.72998046875,
0.9384765625,
-0.498291015625,
0.2587890625,
-0.2010498046875,
0.546875,
0.8642578125,
-0.1456298828125,
-0.330078125,
-0.5390625,
-0.484130859375,
-1.26171875,
0.2763671875,
-0.445556640625,
0.262451171875,
-0.7421875,
-0.84033203125,
1.1025390625,
-0.677734375,
0.51171875,
1.1787109375,
0.06890869140625,
0.7060546875,
-0.53662109375,
0.89404296875,
0.7021484375,
-0.55126953125,
-0.03643798828125,
0.132080078125,
-0.611328125,
-0.093994140625,
-0.272705078125,
-1.1826171875,
-0.78466796875,
0.52978515625,
1.28515625,
-0.453857421875,
0.71728515625,
0.09112548828125,
-1.0771484375,
-0.56591796875,
1.021484375,
0.0516357421875,
0.337158203125,
0.82421875,
-0.321533203125,
-0.33251953125,
0.404296875,
-0.364501953125,
-0.40234375,
-0.5244140625,
1.10546875,
-0.26953125,
-0.51806640625,
0.62109375,
0.77783203125,
-1.1953125,
-0.62548828125,
-0.285888671875,
0.27880859375,
-0.3486328125,
-0.98779296875,
-0.211181640625,
0.56787109375,
-0.9912109375,
0.159912109375,
0.38525390625,
-0.296142578125,
0.59228515625,
0.1524658203125,
0.48291015625,
-0.50048828125,
0.494873046875,
0.5859375,
-0.375732421875,
-0.329833984375,
-0.73681640625,
-0.10308837890625,
0.0684814453125,
0.12091064453125,
0.822265625,
-0.416259765625,
0.168701171875,
0.2135009765625,
0.0538330078125,
0.80712890625,
-0.173828125,
-0.306640625,
0.3310546875,
-1.1103515625,
-0.7939453125,
-0.2239990234375,
0.2158203125,
-0.26708984375,
0.58154296875,
-0.68212890625,
0.00266265869140625,
-0.0865478515625,
0.328125,
-0.348876953125,
-0.884765625,
-0.001590728759765625,
-1.099609375,
-0.4443359375,
-0.69873046875,
-0.71728515625,
0.26220703125,
0.3330078125,
0.140625,
-0.76806640625,
0.244140625,
0.6806640625,
-0.52978515625,
0.767578125,
-0.623046875,
0.396728515625,
-0.26416015625,
-0.1217041015625,
-0.91455078125,
0.09063720703125,
-0.401123046875,
0.036376953125,
-0.5244140625,
0.497314453125,
-0.04730224609375,
0.529296875,
0.004871368408203125,
0.25830078125,
-0.3984375,
-0.358154296875,
-0.1947021484375,
0.2255859375,
-0.3984375,
0.642578125,
0.7529296875,
0.08697509765625,
-0.01666259765625,
-0.41650390625,
-0.424560546875,
-0.251708984375,
0.6240234375,
0.454345703125,
-0.29345703125,
0.26904296875,
-0.501953125,
0.1199951171875,
-1.1923828125,
0.324462890625,
-0.417724609375,
0.0689697265625,
-0.006687164306640625,
-0.205322265625,
0.6494140625,
1.466796875,
-0.354736328125,
0.361328125,
0.2034912109375,
0.1966552734375,
0.5654296875,
0.21435546875,
-0.0019855499267578125,
0.68896484375,
0.03143310546875,
-0.369140625,
-0.1878662109375,
0.1812744140625,
0.55029296875,
0.0650634765625,
-0.26953125,
-0.98095703125,
-1.01171875,
-0.58935546875,
0.07562255859375,
0.62890625,
0.316162109375,
-0.75732421875,
-0.2176513671875,
-0.192626953125,
-0.376708984375,
0.358154296875,
-1.3603515625,
-0.82568359375,
0.146484375,
0.2252197265625,
-0.3447265625,
0.2880859375,
-0.490478515625,
-0.2890625,
-0.049224853515625,
0.46484375,
-0.426513671875,
0.4052734375,
-0.009307861328125,
0.64453125,
0.01139068603515625,
-0.045989990234375,
0.2281494140625,
0.7724609375,
-0.70263671875,
-0.53271484375,
0.181640625,
1.169921875,
-0.019775390625,
0.0404052734375,
-0.72216796875,
0.2159423828125,
0.00836181640625,
0.09423828125,
-0.51416015625,
0.1851806640625,
-0.27734375,
0.623046875,
-1.373046875,
-0.27197265625,
0.06591796875,
0.268310546875,
0.173095703125,
-0.441650390625,
-0.54052734375,
1.0068359375,
1.2197265625,
-0.129638671875,
0.202392578125,
-0.12841796875,
0.61328125,
0.089599609375,
-0.0416259765625,
-0.46875,
0.389892578125,
0.349853515625,
0.69189453125,
-0.1435546875,
0.375244140625,
0.865234375,
0.271240234375,
-0.3232421875,
0.44287109375,
0.52197265625,
0.021087646484375,
-0.12457275390625,
-0.264404296875,
0.04638671875,
0.287109375,
-0.6640625,
0.347412109375,
-0.4814453125,
0.09765625,
-0.0799560546875,
-0.8046875,
0.90625,
-0.57763671875,
-0.2347412109375,
0.287841796875,
-0.455078125,
0.27587890625,
0.54736328125,
0.354248046875,
-0.10211181640625,
0.81103515625,
0.69482421875,
0.68408203125,
0.6298828125,
0.578125,
0.369140625,
-0.64501953125,
0.1849365234375,
0.2340087890625,
-0.28662109375,
-0.2154541015625,
-0.290283203125,
-1.0576171875,
0.65576171875,
-0.33740234375,
-0.469970703125,
0.348388671875,
-0.95751953125,
0.0187835693359375,
-0.280029296875,
0.8720703125,
-0.333984375,
0.47216796875,
0.422119140625,
-0.2183837890625,
-0.406494140625,
1.1591796875,
0.0181732177734375,
0.342041015625,
0.06243896484375,
0.50830078125,
0.30517578125,
1.2958984375,
0.71142578125,
0.0204315185546875,
0.36279296875,
0.7197265625,
-0.66015625,
-0.60302734375,
-0.1890869140625,
-0.208740234375,
0.09112548828125,
-0.576171875,
-0.06884765625,
-0.634765625,
0.5263671875,
0.262939453125,
-0.77587890625,
-0.405517578125,
0.10430908203125,
-0.9951171875,
0.21923828125,
0.67919921875,
0.361328125,
0.21826171875,
0.003017425537109375,
-0.269775390625,
-0.47509765625,
0.1387939453125,
-0.61767578125,
0.3310546875,
-0.7919921875,
-0.2225341796875,
-0.71240234375,
-0.62060546875,
-0.42236328125,
-0.266845703125,
-0.27099609375,
-1.14453125,
0.78271484375,
0.689453125,
0.51416015625,
0.48486328125,
-0.39111328125,
0.0618896484375,
0.74560546875,
0.7578125,
-0.07293701171875,
0.89013671875,
0.431396484375,
-0.0177001953125,
0.1217041015625,
-0.257568359375,
0.220703125,
-0.02642822265625,
0.2493896484375,
-0.383544921875,
0.4013671875,
-0.6171875,
-1.55078125,
0.07110595703125,
0.350830078125,
0.43701171875,
-0.4404296875,
-1.0263671875,
-0.459716796875,
-0.978515625,
-0.02227783203125,
-0.556640625,
0.7646484375,
-0.087890625,
0.1597900390625,
-0.273193359375,
-1.1552734375,
4.3046875,
1.1083984375,
1.1728515625,
0.142578125,
0.412109375,
1.3359375,
0.1282958984375,
-0.66943359375,
-0.328369140625,
-0.5927734375,
0.716796875,
-0.300537109375,
0.2210693359375,
0.53125,
0.0648193359375,
0.880859375,
-0.421630859375,
-0.0859375,
0.0006775856018066406,
-0.8876953125,
-0.8408203125,
0.14599609375,
-0.04510498046875,
0.3955078125,
-0.0660400390625,
0.21630859375,
0.75732421875,
-0.97216796875,
-0.1871337890625,
-0.30517578125,
0.23779296875,
-0.880859375,
1.044921875,
-0.30029296875,
-0.14013671875,
0.701171875,
0.133544921875,
-0.517578125,
-0.61669921875,
0.20361328125,
-0.08868408203125,
0.496337890625,
0.66552734375,
-1.0556640625,
-0.1649169921875,
0.40185546875,
-0.51806640625,
0.307861328125,
-0.126220703125,
-0.6494140625,
0.6884765625,
-0.392822265625,
0.333251953125,
-0.407470703125,
-1.1142578125,
0.52490234375,
0.286376953125,
0.231689453125,
-0.42138671875,
0.28076171875,
0.2225341796875,
0.40966796875,
0.038482666015625,
0.54736328125,
-0.859375,
0.479248046875,
-0.1441650390625,
0.301025390625,
-0.38671875,
-0.031890869140625,
-0.90771484375,
-0.51123046875,
-0.3291015625,
-0.29248046875,
0.379150390625,
0.2763671875,
-0.1787109375,
0.623046875,
0.6748046875,
-0.496337890625,
0.25,
-0.295166015625,
-0.068603515625,
-0.38916015625,
0.343994140625,
0.8115234375,
-0.44775390625,
-0.56103515625,
-0.1644287109375,
0.6357421875,
0.58447265625,
0.71435546875,
0.358642578125,
-0.56982421875,
-0.1846923828125
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Phoenix has a string s consisting of lowercase Latin letters. He wants to distribute all the letters of his string into k non-empty strings a_1, a_2, ..., a_k such that every letter of s goes to exactly one of the strings a_i. The strings a_i do not need to be substrings of s. Phoenix can distribute letters of s and rearrange the letters within each string a_i however he wants.
For example, if s = baba and k=2, Phoenix may distribute the letters of his string in many ways, such as:
* ba and ba
* a and abb
* ab and ab
* aa and bb
But these ways are invalid:
* baa and ba
* b and ba
* baba and empty string (a_i should be non-empty)
Phoenix wants to distribute the letters of his string s into k strings a_1, a_2, ..., a_k to minimize the lexicographically maximum string among them, i. e. minimize max(a_1, a_2, ..., a_k). Help him find the optimal distribution and print the minimal possible value of max(a_1, a_2, ..., a_k).
String x is lexicographically less than string y if either x is a prefix of y and x ≠ y, or there exists an index i (1 ≤ i ≤ min(|x|, |y|)) such that x_i < y_i and for every j (1 ≤ j < i) x_j = y_j. Here |x| denotes the length of the string x.
Input
The input consists of multiple test cases. The first line contains an integer t (1 ≤ t ≤ 1000) — the number of test cases. Each test case consists of two lines.
The first line of each test case consists of two integers n and k (1 ≤ k ≤ n ≤ 10^5) — the length of string s and the number of non-empty strings, into which Phoenix wants to distribute letters of s, respectively.
The second line of each test case contains a string s of length n consisting only of lowercase Latin letters.
It is guaranteed that the sum of n over all test cases is ≤ 10^5.
Output
Print t answers — one per test case. The i-th answer should be the minimal possible value of max(a_1, a_2, ..., a_k) in the i-th test case.
Example
Input
6
4 2
baba
5 2
baacb
5 3
baacb
5 3
aaaaa
6 4
aaxxzz
7 1
phoenix
Output
ab
abbc
b
aa
x
ehinopx
Note
In the first test case, one optimal solution is to distribute baba into ab and ab.
In the second test case, one optimal solution is to distribute baacb into abbc and a.
In the third test case, one optimal solution is to distribute baacb into ac, ab, and b.
In the fourth test case, one optimal solution is to distribute aaaaa into aa, aa, and a.
In the fifth test case, one optimal solution is to distribute aaxxzz into az, az, x, and x.
In the sixth test case, one optimal solution is to distribute phoenix into ehinopx.
Tags: constructive algorithms, greedy, sortings, strings
Correct Solution:
```
# cook your dish here
t=int(input())
for _ in range(t):
n,k=map(int,input().split())
s=list(input())
s.sort()
c=s[0]
if s[k-1]!=c:
print(s[k-1])
else:
x=set(s[k:])
if len(x)==0 or len(x)==1:
ans=['']*k
j=0
for i in range(n):
ans[j]=ans[j]+s[i]
j=(j+1)%k
ans.sort()
m=ans[-1]
else:
m=''
for i in range(k-1,n):
m=m+s[i]
print(m)
```
| 10,927 | [
0.2105712890625,
0.3369140625,
0.422607421875,
0.4091796875,
-0.60986328125,
-0.57666015625,
-0.06549072265625,
0.10791015625,
-0.046966552734375,
0.88818359375,
1.0712890625,
0.11895751953125,
0.0626220703125,
-0.85302734375,
-0.83837890625,
0.361328125,
-0.65673828125,
-0.55322265625,
-0.351318359375,
-0.1859130859375,
0.171875,
0.1126708984375,
-1.6328125,
-0.3173828125,
-0.2313232421875,
0.90869140625,
0.2230224609375,
0.020263671875,
1.14453125,
0.87744140625,
0.0523681640625,
-0.41552734375,
0.71630859375,
-1.197265625,
-0.360107421875,
-0.5517578125,
0.82421875,
-0.366455078125,
-0.380615234375,
-0.8212890625,
0.5849609375,
-0.88720703125,
0.458251953125,
-0.5791015625,
-0.849609375,
-0.10546875,
-0.03204345703125,
-0.537109375,
-0.55859375,
-0.3837890625,
0.07647705078125,
-0.349853515625,
0.64794921875,
-0.51171875,
0.1121826171875,
0.08734130859375,
0.08648681640625,
-0.043487548828125,
-0.779296875,
0.2255859375,
0.01116180419921875,
0.233642578125,
-0.44189453125,
-0.75927734375,
-0.1171875,
0.28857421875,
-0.08758544921875,
-0.009033203125,
0.1715087890625,
-1.1220703125,
-0.4677734375,
0.29736328125,
-0.444580078125,
-0.72802734375,
-0.390380859375,
0.019317626953125,
0.1116943359375,
-0.13134765625,
-0.5615234375,
0.7802734375,
0.1644287109375,
0.64208984375,
0.22265625,
0.00731658935546875,
-0.6845703125,
-0.53076171875,
0.10784912109375,
0.397705078125,
0.053375244140625,
0.1976318359375,
0.016387939453125,
0.47265625,
-0.6474609375,
0.16845703125,
0.376220703125,
0.896484375,
-0.036773681640625,
0.4501953125,
0.15185546875,
0.40283203125,
1.1484375,
0.80859375,
-0.578125,
1.1240234375,
-0.6015625,
0.194091796875,
-0.1317138671875,
-0.19384765625,
-0.282958984375,
-0.435791015625,
-0.263427734375,
0.0269622802734375,
0.345947265625,
0.380126953125,
-0.22998046875,
0.73779296875,
-0.16064453125,
0.7626953125,
-0.86572265625,
-0.032379150390625,
0.52587890625,
0.0657958984375,
0.65087890625,
-0.263916015625,
-0.045654296875,
-0.2027587890625,
-0.56982421875,
0.8173828125,
-0.78076171875,
-0.061248779296875,
0.5263671875,
0.09735107421875,
-0.5263671875,
0.471923828125,
0.033233642578125,
0.47705078125,
0.032379150390625,
0.5458984375,
0.91455078125,
-0.2235107421875,
0.6904296875,
-0.21875,
0.0430908203125,
1.5068359375,
0.122802734375,
-0.165771484375,
0.66357421875,
0.02069091796875,
-0.595703125,
0.9033203125,
-0.80224609375,
0.470703125,
0.12841796875,
0.400634765625,
-0.232421875,
0.087890625,
-0.01099395751953125,
0.814453125,
0.27001953125,
0.302734375,
-0.7021484375,
-0.173583984375,
-0.28515625,
0.822265625,
-0.377685546875,
0.9365234375,
-0.865234375,
-0.4228515625,
-0.12255859375,
-0.426025390625,
-0.1258544921875,
-0.3642578125,
-0.007709503173828125,
0.8779296875,
0.293701171875,
0.79833984375,
0.72509765625,
-0.66015625,
0.487548828125,
0.278076171875,
-0.1226806640625,
0.419189453125,
0.265380859375,
0.61669921875,
0.331298828125,
0.157958984375,
-0.053619384765625,
-0.36865234375,
-0.69287109375,
-0.63671875,
0.2298583984375,
0.6142578125,
-0.2374267578125,
0.290771484375,
-0.057830810546875,
0.1666259765625,
-0.732421875,
-0.263916015625,
-0.090576171875,
-1.0029296875,
-0.3369140625,
0.409423828125,
-0.01435089111328125,
0.2626953125,
-0.70556640625,
-0.49560546875,
0.30322265625,
1.0771484375,
-0.2054443359375,
0.07952880859375,
0.459716796875,
0.25830078125,
-0.2176513671875,
0.34033203125,
0.04656982421875,
-0.11737060546875,
-0.58154296875,
0.6845703125,
-0.61376953125,
0.029754638671875,
-0.08563232421875,
0.904296875,
0.2724609375,
0.23388671875,
-0.5478515625,
-0.0943603515625,
0.5625,
1.2509765625,
-0.1165771484375,
0.50048828125,
0.52685546875,
0.826171875,
0.437744140625,
0.767578125,
0.478515625,
0.5361328125,
0.6748046875,
0.736328125,
0.0204315185546875,
0.217041015625,
0.141845703125,
0.466064453125,
0.417236328125,
0.444091796875,
0.0927734375,
0.57568359375,
-0.412109375,
0.373046875,
-0.93701171875,
0.1787109375,
-0.14892578125,
1.095703125,
0.37353515625,
0.4150390625,
-0.400634765625,
-0.363037109375,
0.292236328125,
0.79052734375,
-1.0751953125,
-0.68994140625,
-0.11236572265625,
0.020904541015625,
0.20849609375,
-0.08203125,
0.345703125,
0.361083984375,
0.75732421875,
-0.06243896484375,
-0.28369140625,
-0.2958984375,
-1.22265625,
-0.9765625,
-0.5849609375,
-0.462890625,
-0.486328125,
0.14990234375,
0.6044921875,
-1.06640625,
0.169677734375,
-0.56298828125,
0.103515625,
-0.00547027587890625,
-0.89404296875,
0.315185546875,
0.060699462890625,
0.8564453125,
-0.8095703125,
0.6669921875,
-0.09283447265625,
1.029296875,
-0.84716796875,
-0.35400390625,
-0.2734375,
-0.4599609375,
0.486572265625,
0.1534423828125,
0.1402587890625,
-0.0239410400390625,
-0.56591796875,
-0.99755859375,
-0.291748046875,
-0.055938720703125,
-0.486328125,
0.298828125,
-0.79931640625,
0.99853515625,
0.546875,
-0.73779296875,
0.418212890625,
1.0712890625,
-0.755859375,
0.419677734375,
0.30126953125,
-0.0215911865234375,
-0.70263671875,
1.2109375,
0.44482421875,
0.333251953125,
-0.58056640625,
-0.74755859375,
-0.2178955078125,
0.34814453125,
0.082275390625,
-0.64599609375,
0.0263824462890625,
0.9462890625,
-0.2076416015625,
-1.373046875,
0.59521484375,
-0.86474609375,
-0.74658203125,
-0.292724609375,
-0.53173828125,
0.6337890625,
0.5673828125,
0.258544921875,
-0.47607421875,
-0.220458984375,
0.01131439208984375,
0.634765625,
0.120361328125,
-0.7333984375,
-0.01515960693359375,
0.55615234375,
-0.1871337890625,
-0.057464599609375,
0.3115234375,
-0.487060546875,
-0.234130859375,
-0.04412841796875,
-0.037506103515625,
0.7783203125,
0.179931640625,
0.443115234375,
0.2978515625,
0.5986328125,
-0.892578125,
-0.17919921875,
-0.14697265625,
0.57177734375,
0.270263671875,
0.359375,
0.443115234375,
-0.19775390625,
-0.77197265625,
-1.4169921875,
0.289306640625,
0.340087890625,
0.64013671875,
-0.857421875,
0.88525390625,
0.256103515625,
-0.63427734375,
0.51708984375,
-0.8076171875,
0.1676025390625,
1.0986328125,
-0.48681640625,
0.84521484375,
-0.81689453125,
-0.046722412109375,
0.1475830078125,
0.11431884765625,
0.41259765625,
0.476318359375,
0.60546875,
-0.185546875,
-0.1368408203125,
-0.45947265625,
-0.21484375,
0.0950927734375,
-0.318603515625,
0.33935546875,
-0.31787109375,
-0.343994140625,
-1.107421875,
0.52392578125,
0.68212890625,
0.5087890625,
0.48583984375,
0.54541015625,
0.23974609375,
0.357177734375,
0.52197265625,
-0.25634765625,
0.1971435546875,
-0.476806640625,
0.806640625,
0.09576416015625,
-0.08697509765625,
-0.3271484375,
-0.3515625,
0.00846099853515625,
0.408203125,
-0.04669189453125,
-0.07366943359375,
-0.904296875,
0.1820068359375,
-0.020538330078125,
0.828125,
-0.454345703125,
-0.20068359375,
-0.06011962890625,
0.32666015625,
0.4716796875,
-0.728515625,
-0.20703125,
-0.7880859375,
0.53759765625,
0.26220703125,
-0.004955291748046875,
-0.29052734375,
-0.3154296875,
-0.58349609375,
-0.7958984375,
0.7060546875,
0.896484375,
-0.078369140625,
-0.110595703125,
-1.125,
0.7548828125,
0.16748046875,
-0.20166015625,
0.1624755859375,
0.03253173828125,
0.400390625,
-0.268310546875,
0.658203125,
-0.0079345703125,
-0.74365234375,
0.251953125,
-1.0380859375,
0.408935546875,
-0.255126953125,
0.28955078125,
-0.52001953125,
0.1143798828125,
-0.0462646484375,
0.30712890625,
-0.3232421875,
0.2734375,
-0.28955078125,
0.343505859375,
-1.1494140625,
-0.49755859375,
0.33642578125,
-0.352783203125,
-0.005237579345703125,
1.080078125,
-0.26123046875,
-0.53076171875,
0.1947021484375,
0.603515625,
-0.316650390625,
0.227783203125,
-0.381103515625,
0.261962890625,
-0.47998046875,
-0.20849609375,
-0.1922607421875,
-0.38037109375,
0.76611328125,
-0.2467041015625,
-0.46337890625,
-0.2198486328125,
-0.8896484375,
-0.0180816650390625,
-0.0110931396484375,
-0.9365234375,
0.479736328125,
0.005588531494140625,
-0.384521484375,
-0.052978515625,
-0.2078857421875,
-0.345703125,
-0.37451171875,
-0.25146484375,
-0.521484375,
0.2529296875,
0.76611328125,
1.2822265625,
0.1513671875,
-0.4091796875,
-0.038726806640625,
0.157958984375,
-0.0994873046875,
-0.5263671875,
0.0301513671875,
-0.307861328125,
-0.08135986328125,
-0.263916015625,
0.24169921875,
0.27587890625,
0.2216796875,
0.441650390625,
0.337890625,
0.38232421875,
0.41015625,
-0.3193359375,
1.2744140625,
0.107421875,
-0.94384765625,
-0.67333984375,
0.5,
-0.0201568603515625,
0.316162109375,
0.16845703125,
-0.72021484375,
-0.74853515625,
-0.90283203125,
0.2109375,
-0.68212890625,
-0.334716796875,
-0.83984375,
-0.404296875,
-0.7099609375,
0.2491455078125,
-0.434326171875,
-0.465576171875,
-0.0574951171875,
-1.2236328125,
0.06927490234375,
-0.716796875,
-0.483154296875,
-0.609375,
-0.25537109375,
-0.1873779296875,
1.1953125,
0.06341552734375,
0.295654296875,
-0.055023193359375,
-0.0435791015625,
0.259033203125,
-0.04718017578125,
-0.65185546875,
-0.64111328125,
-0.210693359375,
0.03387451171875,
0.1162109375,
0.00836181640625,
-0.5712890625,
0.74169921875,
-0.8095703125,
-0.06317138671875,
-0.3701171875,
-0.0672607421875,
-0.2052001953125,
-0.72998046875,
0.9384765625,
-0.498291015625,
0.2587890625,
-0.2010498046875,
0.546875,
0.8642578125,
-0.1456298828125,
-0.330078125,
-0.5390625,
-0.484130859375,
-1.26171875,
0.2763671875,
-0.445556640625,
0.262451171875,
-0.7421875,
-0.84033203125,
1.1025390625,
-0.677734375,
0.51171875,
1.1787109375,
0.06890869140625,
0.7060546875,
-0.53662109375,
0.89404296875,
0.7021484375,
-0.55126953125,
-0.03643798828125,
0.132080078125,
-0.611328125,
-0.093994140625,
-0.272705078125,
-1.1826171875,
-0.78466796875,
0.52978515625,
1.28515625,
-0.453857421875,
0.71728515625,
0.09112548828125,
-1.0771484375,
-0.56591796875,
1.021484375,
0.0516357421875,
0.337158203125,
0.82421875,
-0.321533203125,
-0.33251953125,
0.404296875,
-0.364501953125,
-0.40234375,
-0.5244140625,
1.10546875,
-0.26953125,
-0.51806640625,
0.62109375,
0.77783203125,
-1.1953125,
-0.62548828125,
-0.285888671875,
0.27880859375,
-0.3486328125,
-0.98779296875,
-0.211181640625,
0.56787109375,
-0.9912109375,
0.159912109375,
0.38525390625,
-0.296142578125,
0.59228515625,
0.1524658203125,
0.48291015625,
-0.50048828125,
0.494873046875,
0.5859375,
-0.375732421875,
-0.329833984375,
-0.73681640625,
-0.10308837890625,
0.0684814453125,
0.12091064453125,
0.822265625,
-0.416259765625,
0.168701171875,
0.2135009765625,
0.0538330078125,
0.80712890625,
-0.173828125,
-0.306640625,
0.3310546875,
-1.1103515625,
-0.7939453125,
-0.2239990234375,
0.2158203125,
-0.26708984375,
0.58154296875,
-0.68212890625,
0.00266265869140625,
-0.0865478515625,
0.328125,
-0.348876953125,
-0.884765625,
-0.001590728759765625,
-1.099609375,
-0.4443359375,
-0.69873046875,
-0.71728515625,
0.26220703125,
0.3330078125,
0.140625,
-0.76806640625,
0.244140625,
0.6806640625,
-0.52978515625,
0.767578125,
-0.623046875,
0.396728515625,
-0.26416015625,
-0.1217041015625,
-0.91455078125,
0.09063720703125,
-0.401123046875,
0.036376953125,
-0.5244140625,
0.497314453125,
-0.04730224609375,
0.529296875,
0.004871368408203125,
0.25830078125,
-0.3984375,
-0.358154296875,
-0.1947021484375,
0.2255859375,
-0.3984375,
0.642578125,
0.7529296875,
0.08697509765625,
-0.01666259765625,
-0.41650390625,
-0.424560546875,
-0.251708984375,
0.6240234375,
0.454345703125,
-0.29345703125,
0.26904296875,
-0.501953125,
0.1199951171875,
-1.1923828125,
0.324462890625,
-0.417724609375,
0.0689697265625,
-0.006687164306640625,
-0.205322265625,
0.6494140625,
1.466796875,
-0.354736328125,
0.361328125,
0.2034912109375,
0.1966552734375,
0.5654296875,
0.21435546875,
-0.0019855499267578125,
0.68896484375,
0.03143310546875,
-0.369140625,
-0.1878662109375,
0.1812744140625,
0.55029296875,
0.0650634765625,
-0.26953125,
-0.98095703125,
-1.01171875,
-0.58935546875,
0.07562255859375,
0.62890625,
0.316162109375,
-0.75732421875,
-0.2176513671875,
-0.192626953125,
-0.376708984375,
0.358154296875,
-1.3603515625,
-0.82568359375,
0.146484375,
0.2252197265625,
-0.3447265625,
0.2880859375,
-0.490478515625,
-0.2890625,
-0.049224853515625,
0.46484375,
-0.426513671875,
0.4052734375,
-0.009307861328125,
0.64453125,
0.01139068603515625,
-0.045989990234375,
0.2281494140625,
0.7724609375,
-0.70263671875,
-0.53271484375,
0.181640625,
1.169921875,
-0.019775390625,
0.0404052734375,
-0.72216796875,
0.2159423828125,
0.00836181640625,
0.09423828125,
-0.51416015625,
0.1851806640625,
-0.27734375,
0.623046875,
-1.373046875,
-0.27197265625,
0.06591796875,
0.268310546875,
0.173095703125,
-0.441650390625,
-0.54052734375,
1.0068359375,
1.2197265625,
-0.129638671875,
0.202392578125,
-0.12841796875,
0.61328125,
0.089599609375,
-0.0416259765625,
-0.46875,
0.389892578125,
0.349853515625,
0.69189453125,
-0.1435546875,
0.375244140625,
0.865234375,
0.271240234375,
-0.3232421875,
0.44287109375,
0.52197265625,
0.021087646484375,
-0.12457275390625,
-0.264404296875,
0.04638671875,
0.287109375,
-0.6640625,
0.347412109375,
-0.4814453125,
0.09765625,
-0.0799560546875,
-0.8046875,
0.90625,
-0.57763671875,
-0.2347412109375,
0.287841796875,
-0.455078125,
0.27587890625,
0.54736328125,
0.354248046875,
-0.10211181640625,
0.81103515625,
0.69482421875,
0.68408203125,
0.6298828125,
0.578125,
0.369140625,
-0.64501953125,
0.1849365234375,
0.2340087890625,
-0.28662109375,
-0.2154541015625,
-0.290283203125,
-1.0576171875,
0.65576171875,
-0.33740234375,
-0.469970703125,
0.348388671875,
-0.95751953125,
0.0187835693359375,
-0.280029296875,
0.8720703125,
-0.333984375,
0.47216796875,
0.422119140625,
-0.2183837890625,
-0.406494140625,
1.1591796875,
0.0181732177734375,
0.342041015625,
0.06243896484375,
0.50830078125,
0.30517578125,
1.2958984375,
0.71142578125,
0.0204315185546875,
0.36279296875,
0.7197265625,
-0.66015625,
-0.60302734375,
-0.1890869140625,
-0.208740234375,
0.09112548828125,
-0.576171875,
-0.06884765625,
-0.634765625,
0.5263671875,
0.262939453125,
-0.77587890625,
-0.405517578125,
0.10430908203125,
-0.9951171875,
0.21923828125,
0.67919921875,
0.361328125,
0.21826171875,
0.003017425537109375,
-0.269775390625,
-0.47509765625,
0.1387939453125,
-0.61767578125,
0.3310546875,
-0.7919921875,
-0.2225341796875,
-0.71240234375,
-0.62060546875,
-0.42236328125,
-0.266845703125,
-0.27099609375,
-1.14453125,
0.78271484375,
0.689453125,
0.51416015625,
0.48486328125,
-0.39111328125,
0.0618896484375,
0.74560546875,
0.7578125,
-0.07293701171875,
0.89013671875,
0.431396484375,
-0.0177001953125,
0.1217041015625,
-0.257568359375,
0.220703125,
-0.02642822265625,
0.2493896484375,
-0.383544921875,
0.4013671875,
-0.6171875,
-1.55078125,
0.07110595703125,
0.350830078125,
0.43701171875,
-0.4404296875,
-1.0263671875,
-0.459716796875,
-0.978515625,
-0.02227783203125,
-0.556640625,
0.7646484375,
-0.087890625,
0.1597900390625,
-0.273193359375,
-1.1552734375,
4.3046875,
1.1083984375,
1.1728515625,
0.142578125,
0.412109375,
1.3359375,
0.1282958984375,
-0.66943359375,
-0.328369140625,
-0.5927734375,
0.716796875,
-0.300537109375,
0.2210693359375,
0.53125,
0.0648193359375,
0.880859375,
-0.421630859375,
-0.0859375,
0.0006775856018066406,
-0.8876953125,
-0.8408203125,
0.14599609375,
-0.04510498046875,
0.3955078125,
-0.0660400390625,
0.21630859375,
0.75732421875,
-0.97216796875,
-0.1871337890625,
-0.30517578125,
0.23779296875,
-0.880859375,
1.044921875,
-0.30029296875,
-0.14013671875,
0.701171875,
0.133544921875,
-0.517578125,
-0.61669921875,
0.20361328125,
-0.08868408203125,
0.496337890625,
0.66552734375,
-1.0556640625,
-0.1649169921875,
0.40185546875,
-0.51806640625,
0.307861328125,
-0.126220703125,
-0.6494140625,
0.6884765625,
-0.392822265625,
0.333251953125,
-0.407470703125,
-1.1142578125,
0.52490234375,
0.286376953125,
0.231689453125,
-0.42138671875,
0.28076171875,
0.2225341796875,
0.40966796875,
0.038482666015625,
0.54736328125,
-0.859375,
0.479248046875,
-0.1441650390625,
0.301025390625,
-0.38671875,
-0.031890869140625,
-0.90771484375,
-0.51123046875,
-0.3291015625,
-0.29248046875,
0.379150390625,
0.2763671875,
-0.1787109375,
0.623046875,
0.6748046875,
-0.496337890625,
0.25,
-0.295166015625,
-0.068603515625,
-0.38916015625,
0.343994140625,
0.8115234375,
-0.44775390625,
-0.56103515625,
-0.1644287109375,
0.6357421875,
0.58447265625,
0.71435546875,
0.358642578125,
-0.56982421875,
-0.1846923828125
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Phoenix has a string s consisting of lowercase Latin letters. He wants to distribute all the letters of his string into k non-empty strings a_1, a_2, ..., a_k such that every letter of s goes to exactly one of the strings a_i. The strings a_i do not need to be substrings of s. Phoenix can distribute letters of s and rearrange the letters within each string a_i however he wants.
For example, if s = baba and k=2, Phoenix may distribute the letters of his string in many ways, such as:
* ba and ba
* a and abb
* ab and ab
* aa and bb
But these ways are invalid:
* baa and ba
* b and ba
* baba and empty string (a_i should be non-empty)
Phoenix wants to distribute the letters of his string s into k strings a_1, a_2, ..., a_k to minimize the lexicographically maximum string among them, i. e. minimize max(a_1, a_2, ..., a_k). Help him find the optimal distribution and print the minimal possible value of max(a_1, a_2, ..., a_k).
String x is lexicographically less than string y if either x is a prefix of y and x ≠ y, or there exists an index i (1 ≤ i ≤ min(|x|, |y|)) such that x_i < y_i and for every j (1 ≤ j < i) x_j = y_j. Here |x| denotes the length of the string x.
Input
The input consists of multiple test cases. The first line contains an integer t (1 ≤ t ≤ 1000) — the number of test cases. Each test case consists of two lines.
The first line of each test case consists of two integers n and k (1 ≤ k ≤ n ≤ 10^5) — the length of string s and the number of non-empty strings, into which Phoenix wants to distribute letters of s, respectively.
The second line of each test case contains a string s of length n consisting only of lowercase Latin letters.
It is guaranteed that the sum of n over all test cases is ≤ 10^5.
Output
Print t answers — one per test case. The i-th answer should be the minimal possible value of max(a_1, a_2, ..., a_k) in the i-th test case.
Example
Input
6
4 2
baba
5 2
baacb
5 3
baacb
5 3
aaaaa
6 4
aaxxzz
7 1
phoenix
Output
ab
abbc
b
aa
x
ehinopx
Note
In the first test case, one optimal solution is to distribute baba into ab and ab.
In the second test case, one optimal solution is to distribute baacb into abbc and a.
In the third test case, one optimal solution is to distribute baacb into ac, ab, and b.
In the fourth test case, one optimal solution is to distribute aaaaa into aa, aa, and a.
In the fifth test case, one optimal solution is to distribute aaxxzz into az, az, x, and x.
In the sixth test case, one optimal solution is to distribute phoenix into ehinopx.
Tags: constructive algorithms, greedy, sortings, strings
Correct Solution:
```
for lo in range(int(input())):
#n = int(input())
n,k = map(int,input().split())
st = input()
ls = [0 for i in range(26)]
c = 0
mn = 30
for i in st:
x = ord(i)-97
if ls[x]==0:
c+=1
ls[x]+=1
mn = min(x,mn)
if c==1:
z = 0
if ls[mn]%k!=0:
z+=1
z+=(ls[mn]//k)
ans = ""
for i in range(z):
ans+=chr(97+mn)
print(ans)
continue
if ls[mn]<k:
z = 0
for i in range(26):
z+=ls[i]
if mn!=i and z>=k:
ans = chr(97+i)
break
print(ans)
continue
if ls[mn]==k and c==2:
x = 0
mn2 = 0
for i in range(26):
if mn!=i and ls[i]>0:
mn2 = i
x = ls[i]
break
z = 0
if ls[mn2]%k!=0:
z+=1
z+=(ls[mn2]//k)
ans = chr(97+mn)
for i in range(z):
ans+=chr(97+mn2)
print(ans)
continue
z = 0
ans = ""
for i in range(26):
if mn==i:
for j in range(ls[mn]-k+1):
ans+=chr(mn+97)
else:
for j in range(ls[i]):
ans+=chr(i+97)
print(ans)
```
| 10,928 | [
0.2105712890625,
0.3369140625,
0.422607421875,
0.4091796875,
-0.60986328125,
-0.57666015625,
-0.06549072265625,
0.10791015625,
-0.046966552734375,
0.88818359375,
1.0712890625,
0.11895751953125,
0.0626220703125,
-0.85302734375,
-0.83837890625,
0.361328125,
-0.65673828125,
-0.55322265625,
-0.351318359375,
-0.1859130859375,
0.171875,
0.1126708984375,
-1.6328125,
-0.3173828125,
-0.2313232421875,
0.90869140625,
0.2230224609375,
0.020263671875,
1.14453125,
0.87744140625,
0.0523681640625,
-0.41552734375,
0.71630859375,
-1.197265625,
-0.360107421875,
-0.5517578125,
0.82421875,
-0.366455078125,
-0.380615234375,
-0.8212890625,
0.5849609375,
-0.88720703125,
0.458251953125,
-0.5791015625,
-0.849609375,
-0.10546875,
-0.03204345703125,
-0.537109375,
-0.55859375,
-0.3837890625,
0.07647705078125,
-0.349853515625,
0.64794921875,
-0.51171875,
0.1121826171875,
0.08734130859375,
0.08648681640625,
-0.043487548828125,
-0.779296875,
0.2255859375,
0.01116180419921875,
0.233642578125,
-0.44189453125,
-0.75927734375,
-0.1171875,
0.28857421875,
-0.08758544921875,
-0.009033203125,
0.1715087890625,
-1.1220703125,
-0.4677734375,
0.29736328125,
-0.444580078125,
-0.72802734375,
-0.390380859375,
0.019317626953125,
0.1116943359375,
-0.13134765625,
-0.5615234375,
0.7802734375,
0.1644287109375,
0.64208984375,
0.22265625,
0.00731658935546875,
-0.6845703125,
-0.53076171875,
0.10784912109375,
0.397705078125,
0.053375244140625,
0.1976318359375,
0.016387939453125,
0.47265625,
-0.6474609375,
0.16845703125,
0.376220703125,
0.896484375,
-0.036773681640625,
0.4501953125,
0.15185546875,
0.40283203125,
1.1484375,
0.80859375,
-0.578125,
1.1240234375,
-0.6015625,
0.194091796875,
-0.1317138671875,
-0.19384765625,
-0.282958984375,
-0.435791015625,
-0.263427734375,
0.0269622802734375,
0.345947265625,
0.380126953125,
-0.22998046875,
0.73779296875,
-0.16064453125,
0.7626953125,
-0.86572265625,
-0.032379150390625,
0.52587890625,
0.0657958984375,
0.65087890625,
-0.263916015625,
-0.045654296875,
-0.2027587890625,
-0.56982421875,
0.8173828125,
-0.78076171875,
-0.061248779296875,
0.5263671875,
0.09735107421875,
-0.5263671875,
0.471923828125,
0.033233642578125,
0.47705078125,
0.032379150390625,
0.5458984375,
0.91455078125,
-0.2235107421875,
0.6904296875,
-0.21875,
0.0430908203125,
1.5068359375,
0.122802734375,
-0.165771484375,
0.66357421875,
0.02069091796875,
-0.595703125,
0.9033203125,
-0.80224609375,
0.470703125,
0.12841796875,
0.400634765625,
-0.232421875,
0.087890625,
-0.01099395751953125,
0.814453125,
0.27001953125,
0.302734375,
-0.7021484375,
-0.173583984375,
-0.28515625,
0.822265625,
-0.377685546875,
0.9365234375,
-0.865234375,
-0.4228515625,
-0.12255859375,
-0.426025390625,
-0.1258544921875,
-0.3642578125,
-0.007709503173828125,
0.8779296875,
0.293701171875,
0.79833984375,
0.72509765625,
-0.66015625,
0.487548828125,
0.278076171875,
-0.1226806640625,
0.419189453125,
0.265380859375,
0.61669921875,
0.331298828125,
0.157958984375,
-0.053619384765625,
-0.36865234375,
-0.69287109375,
-0.63671875,
0.2298583984375,
0.6142578125,
-0.2374267578125,
0.290771484375,
-0.057830810546875,
0.1666259765625,
-0.732421875,
-0.263916015625,
-0.090576171875,
-1.0029296875,
-0.3369140625,
0.409423828125,
-0.01435089111328125,
0.2626953125,
-0.70556640625,
-0.49560546875,
0.30322265625,
1.0771484375,
-0.2054443359375,
0.07952880859375,
0.459716796875,
0.25830078125,
-0.2176513671875,
0.34033203125,
0.04656982421875,
-0.11737060546875,
-0.58154296875,
0.6845703125,
-0.61376953125,
0.029754638671875,
-0.08563232421875,
0.904296875,
0.2724609375,
0.23388671875,
-0.5478515625,
-0.0943603515625,
0.5625,
1.2509765625,
-0.1165771484375,
0.50048828125,
0.52685546875,
0.826171875,
0.437744140625,
0.767578125,
0.478515625,
0.5361328125,
0.6748046875,
0.736328125,
0.0204315185546875,
0.217041015625,
0.141845703125,
0.466064453125,
0.417236328125,
0.444091796875,
0.0927734375,
0.57568359375,
-0.412109375,
0.373046875,
-0.93701171875,
0.1787109375,
-0.14892578125,
1.095703125,
0.37353515625,
0.4150390625,
-0.400634765625,
-0.363037109375,
0.292236328125,
0.79052734375,
-1.0751953125,
-0.68994140625,
-0.11236572265625,
0.020904541015625,
0.20849609375,
-0.08203125,
0.345703125,
0.361083984375,
0.75732421875,
-0.06243896484375,
-0.28369140625,
-0.2958984375,
-1.22265625,
-0.9765625,
-0.5849609375,
-0.462890625,
-0.486328125,
0.14990234375,
0.6044921875,
-1.06640625,
0.169677734375,
-0.56298828125,
0.103515625,
-0.00547027587890625,
-0.89404296875,
0.315185546875,
0.060699462890625,
0.8564453125,
-0.8095703125,
0.6669921875,
-0.09283447265625,
1.029296875,
-0.84716796875,
-0.35400390625,
-0.2734375,
-0.4599609375,
0.486572265625,
0.1534423828125,
0.1402587890625,
-0.0239410400390625,
-0.56591796875,
-0.99755859375,
-0.291748046875,
-0.055938720703125,
-0.486328125,
0.298828125,
-0.79931640625,
0.99853515625,
0.546875,
-0.73779296875,
0.418212890625,
1.0712890625,
-0.755859375,
0.419677734375,
0.30126953125,
-0.0215911865234375,
-0.70263671875,
1.2109375,
0.44482421875,
0.333251953125,
-0.58056640625,
-0.74755859375,
-0.2178955078125,
0.34814453125,
0.082275390625,
-0.64599609375,
0.0263824462890625,
0.9462890625,
-0.2076416015625,
-1.373046875,
0.59521484375,
-0.86474609375,
-0.74658203125,
-0.292724609375,
-0.53173828125,
0.6337890625,
0.5673828125,
0.258544921875,
-0.47607421875,
-0.220458984375,
0.01131439208984375,
0.634765625,
0.120361328125,
-0.7333984375,
-0.01515960693359375,
0.55615234375,
-0.1871337890625,
-0.057464599609375,
0.3115234375,
-0.487060546875,
-0.234130859375,
-0.04412841796875,
-0.037506103515625,
0.7783203125,
0.179931640625,
0.443115234375,
0.2978515625,
0.5986328125,
-0.892578125,
-0.17919921875,
-0.14697265625,
0.57177734375,
0.270263671875,
0.359375,
0.443115234375,
-0.19775390625,
-0.77197265625,
-1.4169921875,
0.289306640625,
0.340087890625,
0.64013671875,
-0.857421875,
0.88525390625,
0.256103515625,
-0.63427734375,
0.51708984375,
-0.8076171875,
0.1676025390625,
1.0986328125,
-0.48681640625,
0.84521484375,
-0.81689453125,
-0.046722412109375,
0.1475830078125,
0.11431884765625,
0.41259765625,
0.476318359375,
0.60546875,
-0.185546875,
-0.1368408203125,
-0.45947265625,
-0.21484375,
0.0950927734375,
-0.318603515625,
0.33935546875,
-0.31787109375,
-0.343994140625,
-1.107421875,
0.52392578125,
0.68212890625,
0.5087890625,
0.48583984375,
0.54541015625,
0.23974609375,
0.357177734375,
0.52197265625,
-0.25634765625,
0.1971435546875,
-0.476806640625,
0.806640625,
0.09576416015625,
-0.08697509765625,
-0.3271484375,
-0.3515625,
0.00846099853515625,
0.408203125,
-0.04669189453125,
-0.07366943359375,
-0.904296875,
0.1820068359375,
-0.020538330078125,
0.828125,
-0.454345703125,
-0.20068359375,
-0.06011962890625,
0.32666015625,
0.4716796875,
-0.728515625,
-0.20703125,
-0.7880859375,
0.53759765625,
0.26220703125,
-0.004955291748046875,
-0.29052734375,
-0.3154296875,
-0.58349609375,
-0.7958984375,
0.7060546875,
0.896484375,
-0.078369140625,
-0.110595703125,
-1.125,
0.7548828125,
0.16748046875,
-0.20166015625,
0.1624755859375,
0.03253173828125,
0.400390625,
-0.268310546875,
0.658203125,
-0.0079345703125,
-0.74365234375,
0.251953125,
-1.0380859375,
0.408935546875,
-0.255126953125,
0.28955078125,
-0.52001953125,
0.1143798828125,
-0.0462646484375,
0.30712890625,
-0.3232421875,
0.2734375,
-0.28955078125,
0.343505859375,
-1.1494140625,
-0.49755859375,
0.33642578125,
-0.352783203125,
-0.005237579345703125,
1.080078125,
-0.26123046875,
-0.53076171875,
0.1947021484375,
0.603515625,
-0.316650390625,
0.227783203125,
-0.381103515625,
0.261962890625,
-0.47998046875,
-0.20849609375,
-0.1922607421875,
-0.38037109375,
0.76611328125,
-0.2467041015625,
-0.46337890625,
-0.2198486328125,
-0.8896484375,
-0.0180816650390625,
-0.0110931396484375,
-0.9365234375,
0.479736328125,
0.005588531494140625,
-0.384521484375,
-0.052978515625,
-0.2078857421875,
-0.345703125,
-0.37451171875,
-0.25146484375,
-0.521484375,
0.2529296875,
0.76611328125,
1.2822265625,
0.1513671875,
-0.4091796875,
-0.038726806640625,
0.157958984375,
-0.0994873046875,
-0.5263671875,
0.0301513671875,
-0.307861328125,
-0.08135986328125,
-0.263916015625,
0.24169921875,
0.27587890625,
0.2216796875,
0.441650390625,
0.337890625,
0.38232421875,
0.41015625,
-0.3193359375,
1.2744140625,
0.107421875,
-0.94384765625,
-0.67333984375,
0.5,
-0.0201568603515625,
0.316162109375,
0.16845703125,
-0.72021484375,
-0.74853515625,
-0.90283203125,
0.2109375,
-0.68212890625,
-0.334716796875,
-0.83984375,
-0.404296875,
-0.7099609375,
0.2491455078125,
-0.434326171875,
-0.465576171875,
-0.0574951171875,
-1.2236328125,
0.06927490234375,
-0.716796875,
-0.483154296875,
-0.609375,
-0.25537109375,
-0.1873779296875,
1.1953125,
0.06341552734375,
0.295654296875,
-0.055023193359375,
-0.0435791015625,
0.259033203125,
-0.04718017578125,
-0.65185546875,
-0.64111328125,
-0.210693359375,
0.03387451171875,
0.1162109375,
0.00836181640625,
-0.5712890625,
0.74169921875,
-0.8095703125,
-0.06317138671875,
-0.3701171875,
-0.0672607421875,
-0.2052001953125,
-0.72998046875,
0.9384765625,
-0.498291015625,
0.2587890625,
-0.2010498046875,
0.546875,
0.8642578125,
-0.1456298828125,
-0.330078125,
-0.5390625,
-0.484130859375,
-1.26171875,
0.2763671875,
-0.445556640625,
0.262451171875,
-0.7421875,
-0.84033203125,
1.1025390625,
-0.677734375,
0.51171875,
1.1787109375,
0.06890869140625,
0.7060546875,
-0.53662109375,
0.89404296875,
0.7021484375,
-0.55126953125,
-0.03643798828125,
0.132080078125,
-0.611328125,
-0.093994140625,
-0.272705078125,
-1.1826171875,
-0.78466796875,
0.52978515625,
1.28515625,
-0.453857421875,
0.71728515625,
0.09112548828125,
-1.0771484375,
-0.56591796875,
1.021484375,
0.0516357421875,
0.337158203125,
0.82421875,
-0.321533203125,
-0.33251953125,
0.404296875,
-0.364501953125,
-0.40234375,
-0.5244140625,
1.10546875,
-0.26953125,
-0.51806640625,
0.62109375,
0.77783203125,
-1.1953125,
-0.62548828125,
-0.285888671875,
0.27880859375,
-0.3486328125,
-0.98779296875,
-0.211181640625,
0.56787109375,
-0.9912109375,
0.159912109375,
0.38525390625,
-0.296142578125,
0.59228515625,
0.1524658203125,
0.48291015625,
-0.50048828125,
0.494873046875,
0.5859375,
-0.375732421875,
-0.329833984375,
-0.73681640625,
-0.10308837890625,
0.0684814453125,
0.12091064453125,
0.822265625,
-0.416259765625,
0.168701171875,
0.2135009765625,
0.0538330078125,
0.80712890625,
-0.173828125,
-0.306640625,
0.3310546875,
-1.1103515625,
-0.7939453125,
-0.2239990234375,
0.2158203125,
-0.26708984375,
0.58154296875,
-0.68212890625,
0.00266265869140625,
-0.0865478515625,
0.328125,
-0.348876953125,
-0.884765625,
-0.001590728759765625,
-1.099609375,
-0.4443359375,
-0.69873046875,
-0.71728515625,
0.26220703125,
0.3330078125,
0.140625,
-0.76806640625,
0.244140625,
0.6806640625,
-0.52978515625,
0.767578125,
-0.623046875,
0.396728515625,
-0.26416015625,
-0.1217041015625,
-0.91455078125,
0.09063720703125,
-0.401123046875,
0.036376953125,
-0.5244140625,
0.497314453125,
-0.04730224609375,
0.529296875,
0.004871368408203125,
0.25830078125,
-0.3984375,
-0.358154296875,
-0.1947021484375,
0.2255859375,
-0.3984375,
0.642578125,
0.7529296875,
0.08697509765625,
-0.01666259765625,
-0.41650390625,
-0.424560546875,
-0.251708984375,
0.6240234375,
0.454345703125,
-0.29345703125,
0.26904296875,
-0.501953125,
0.1199951171875,
-1.1923828125,
0.324462890625,
-0.417724609375,
0.0689697265625,
-0.006687164306640625,
-0.205322265625,
0.6494140625,
1.466796875,
-0.354736328125,
0.361328125,
0.2034912109375,
0.1966552734375,
0.5654296875,
0.21435546875,
-0.0019855499267578125,
0.68896484375,
0.03143310546875,
-0.369140625,
-0.1878662109375,
0.1812744140625,
0.55029296875,
0.0650634765625,
-0.26953125,
-0.98095703125,
-1.01171875,
-0.58935546875,
0.07562255859375,
0.62890625,
0.316162109375,
-0.75732421875,
-0.2176513671875,
-0.192626953125,
-0.376708984375,
0.358154296875,
-1.3603515625,
-0.82568359375,
0.146484375,
0.2252197265625,
-0.3447265625,
0.2880859375,
-0.490478515625,
-0.2890625,
-0.049224853515625,
0.46484375,
-0.426513671875,
0.4052734375,
-0.009307861328125,
0.64453125,
0.01139068603515625,
-0.045989990234375,
0.2281494140625,
0.7724609375,
-0.70263671875,
-0.53271484375,
0.181640625,
1.169921875,
-0.019775390625,
0.0404052734375,
-0.72216796875,
0.2159423828125,
0.00836181640625,
0.09423828125,
-0.51416015625,
0.1851806640625,
-0.27734375,
0.623046875,
-1.373046875,
-0.27197265625,
0.06591796875,
0.268310546875,
0.173095703125,
-0.441650390625,
-0.54052734375,
1.0068359375,
1.2197265625,
-0.129638671875,
0.202392578125,
-0.12841796875,
0.61328125,
0.089599609375,
-0.0416259765625,
-0.46875,
0.389892578125,
0.349853515625,
0.69189453125,
-0.1435546875,
0.375244140625,
0.865234375,
0.271240234375,
-0.3232421875,
0.44287109375,
0.52197265625,
0.021087646484375,
-0.12457275390625,
-0.264404296875,
0.04638671875,
0.287109375,
-0.6640625,
0.347412109375,
-0.4814453125,
0.09765625,
-0.0799560546875,
-0.8046875,
0.90625,
-0.57763671875,
-0.2347412109375,
0.287841796875,
-0.455078125,
0.27587890625,
0.54736328125,
0.354248046875,
-0.10211181640625,
0.81103515625,
0.69482421875,
0.68408203125,
0.6298828125,
0.578125,
0.369140625,
-0.64501953125,
0.1849365234375,
0.2340087890625,
-0.28662109375,
-0.2154541015625,
-0.290283203125,
-1.0576171875,
0.65576171875,
-0.33740234375,
-0.469970703125,
0.348388671875,
-0.95751953125,
0.0187835693359375,
-0.280029296875,
0.8720703125,
-0.333984375,
0.47216796875,
0.422119140625,
-0.2183837890625,
-0.406494140625,
1.1591796875,
0.0181732177734375,
0.342041015625,
0.06243896484375,
0.50830078125,
0.30517578125,
1.2958984375,
0.71142578125,
0.0204315185546875,
0.36279296875,
0.7197265625,
-0.66015625,
-0.60302734375,
-0.1890869140625,
-0.208740234375,
0.09112548828125,
-0.576171875,
-0.06884765625,
-0.634765625,
0.5263671875,
0.262939453125,
-0.77587890625,
-0.405517578125,
0.10430908203125,
-0.9951171875,
0.21923828125,
0.67919921875,
0.361328125,
0.21826171875,
0.003017425537109375,
-0.269775390625,
-0.47509765625,
0.1387939453125,
-0.61767578125,
0.3310546875,
-0.7919921875,
-0.2225341796875,
-0.71240234375,
-0.62060546875,
-0.42236328125,
-0.266845703125,
-0.27099609375,
-1.14453125,
0.78271484375,
0.689453125,
0.51416015625,
0.48486328125,
-0.39111328125,
0.0618896484375,
0.74560546875,
0.7578125,
-0.07293701171875,
0.89013671875,
0.431396484375,
-0.0177001953125,
0.1217041015625,
-0.257568359375,
0.220703125,
-0.02642822265625,
0.2493896484375,
-0.383544921875,
0.4013671875,
-0.6171875,
-1.55078125,
0.07110595703125,
0.350830078125,
0.43701171875,
-0.4404296875,
-1.0263671875,
-0.459716796875,
-0.978515625,
-0.02227783203125,
-0.556640625,
0.7646484375,
-0.087890625,
0.1597900390625,
-0.273193359375,
-1.1552734375,
4.3046875,
1.1083984375,
1.1728515625,
0.142578125,
0.412109375,
1.3359375,
0.1282958984375,
-0.66943359375,
-0.328369140625,
-0.5927734375,
0.716796875,
-0.300537109375,
0.2210693359375,
0.53125,
0.0648193359375,
0.880859375,
-0.421630859375,
-0.0859375,
0.0006775856018066406,
-0.8876953125,
-0.8408203125,
0.14599609375,
-0.04510498046875,
0.3955078125,
-0.0660400390625,
0.21630859375,
0.75732421875,
-0.97216796875,
-0.1871337890625,
-0.30517578125,
0.23779296875,
-0.880859375,
1.044921875,
-0.30029296875,
-0.14013671875,
0.701171875,
0.133544921875,
-0.517578125,
-0.61669921875,
0.20361328125,
-0.08868408203125,
0.496337890625,
0.66552734375,
-1.0556640625,
-0.1649169921875,
0.40185546875,
-0.51806640625,
0.307861328125,
-0.126220703125,
-0.6494140625,
0.6884765625,
-0.392822265625,
0.333251953125,
-0.407470703125,
-1.1142578125,
0.52490234375,
0.286376953125,
0.231689453125,
-0.42138671875,
0.28076171875,
0.2225341796875,
0.40966796875,
0.038482666015625,
0.54736328125,
-0.859375,
0.479248046875,
-0.1441650390625,
0.301025390625,
-0.38671875,
-0.031890869140625,
-0.90771484375,
-0.51123046875,
-0.3291015625,
-0.29248046875,
0.379150390625,
0.2763671875,
-0.1787109375,
0.623046875,
0.6748046875,
-0.496337890625,
0.25,
-0.295166015625,
-0.068603515625,
-0.38916015625,
0.343994140625,
0.8115234375,
-0.44775390625,
-0.56103515625,
-0.1644287109375,
0.6357421875,
0.58447265625,
0.71435546875,
0.358642578125,
-0.56982421875,
-0.1846923828125
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Phoenix has a string s consisting of lowercase Latin letters. He wants to distribute all the letters of his string into k non-empty strings a_1, a_2, ..., a_k such that every letter of s goes to exactly one of the strings a_i. The strings a_i do not need to be substrings of s. Phoenix can distribute letters of s and rearrange the letters within each string a_i however he wants.
For example, if s = baba and k=2, Phoenix may distribute the letters of his string in many ways, such as:
* ba and ba
* a and abb
* ab and ab
* aa and bb
But these ways are invalid:
* baa and ba
* b and ba
* baba and empty string (a_i should be non-empty)
Phoenix wants to distribute the letters of his string s into k strings a_1, a_2, ..., a_k to minimize the lexicographically maximum string among them, i. e. minimize max(a_1, a_2, ..., a_k). Help him find the optimal distribution and print the minimal possible value of max(a_1, a_2, ..., a_k).
String x is lexicographically less than string y if either x is a prefix of y and x ≠ y, or there exists an index i (1 ≤ i ≤ min(|x|, |y|)) such that x_i < y_i and for every j (1 ≤ j < i) x_j = y_j. Here |x| denotes the length of the string x.
Input
The input consists of multiple test cases. The first line contains an integer t (1 ≤ t ≤ 1000) — the number of test cases. Each test case consists of two lines.
The first line of each test case consists of two integers n and k (1 ≤ k ≤ n ≤ 10^5) — the length of string s and the number of non-empty strings, into which Phoenix wants to distribute letters of s, respectively.
The second line of each test case contains a string s of length n consisting only of lowercase Latin letters.
It is guaranteed that the sum of n over all test cases is ≤ 10^5.
Output
Print t answers — one per test case. The i-th answer should be the minimal possible value of max(a_1, a_2, ..., a_k) in the i-th test case.
Example
Input
6
4 2
baba
5 2
baacb
5 3
baacb
5 3
aaaaa
6 4
aaxxzz
7 1
phoenix
Output
ab
abbc
b
aa
x
ehinopx
Note
In the first test case, one optimal solution is to distribute baba into ab and ab.
In the second test case, one optimal solution is to distribute baacb into abbc and a.
In the third test case, one optimal solution is to distribute baacb into ac, ab, and b.
In the fourth test case, one optimal solution is to distribute aaaaa into aa, aa, and a.
In the fifth test case, one optimal solution is to distribute aaxxzz into az, az, x, and x.
In the sixth test case, one optimal solution is to distribute phoenix into ehinopx.
Tags: constructive algorithms, greedy, sortings, strings
Correct Solution:
```
for _ in range(int(input())):
n,k = map(int, input().split())
s = ''.join(sorted(input()))
if(s[0] != s[k-1] or k == n):
print(s[k-1])
continue
if(s[k] != s[n-1]):
print(s[0]+s[k:])
else:
print(s[0]+s[n-1]*((n-1)//k))
```
| 10,929 | [
0.2105712890625,
0.3369140625,
0.422607421875,
0.4091796875,
-0.60986328125,
-0.57666015625,
-0.06549072265625,
0.10791015625,
-0.046966552734375,
0.88818359375,
1.0712890625,
0.11895751953125,
0.0626220703125,
-0.85302734375,
-0.83837890625,
0.361328125,
-0.65673828125,
-0.55322265625,
-0.351318359375,
-0.1859130859375,
0.171875,
0.1126708984375,
-1.6328125,
-0.3173828125,
-0.2313232421875,
0.90869140625,
0.2230224609375,
0.020263671875,
1.14453125,
0.87744140625,
0.0523681640625,
-0.41552734375,
0.71630859375,
-1.197265625,
-0.360107421875,
-0.5517578125,
0.82421875,
-0.366455078125,
-0.380615234375,
-0.8212890625,
0.5849609375,
-0.88720703125,
0.458251953125,
-0.5791015625,
-0.849609375,
-0.10546875,
-0.03204345703125,
-0.537109375,
-0.55859375,
-0.3837890625,
0.07647705078125,
-0.349853515625,
0.64794921875,
-0.51171875,
0.1121826171875,
0.08734130859375,
0.08648681640625,
-0.043487548828125,
-0.779296875,
0.2255859375,
0.01116180419921875,
0.233642578125,
-0.44189453125,
-0.75927734375,
-0.1171875,
0.28857421875,
-0.08758544921875,
-0.009033203125,
0.1715087890625,
-1.1220703125,
-0.4677734375,
0.29736328125,
-0.444580078125,
-0.72802734375,
-0.390380859375,
0.019317626953125,
0.1116943359375,
-0.13134765625,
-0.5615234375,
0.7802734375,
0.1644287109375,
0.64208984375,
0.22265625,
0.00731658935546875,
-0.6845703125,
-0.53076171875,
0.10784912109375,
0.397705078125,
0.053375244140625,
0.1976318359375,
0.016387939453125,
0.47265625,
-0.6474609375,
0.16845703125,
0.376220703125,
0.896484375,
-0.036773681640625,
0.4501953125,
0.15185546875,
0.40283203125,
1.1484375,
0.80859375,
-0.578125,
1.1240234375,
-0.6015625,
0.194091796875,
-0.1317138671875,
-0.19384765625,
-0.282958984375,
-0.435791015625,
-0.263427734375,
0.0269622802734375,
0.345947265625,
0.380126953125,
-0.22998046875,
0.73779296875,
-0.16064453125,
0.7626953125,
-0.86572265625,
-0.032379150390625,
0.52587890625,
0.0657958984375,
0.65087890625,
-0.263916015625,
-0.045654296875,
-0.2027587890625,
-0.56982421875,
0.8173828125,
-0.78076171875,
-0.061248779296875,
0.5263671875,
0.09735107421875,
-0.5263671875,
0.471923828125,
0.033233642578125,
0.47705078125,
0.032379150390625,
0.5458984375,
0.91455078125,
-0.2235107421875,
0.6904296875,
-0.21875,
0.0430908203125,
1.5068359375,
0.122802734375,
-0.165771484375,
0.66357421875,
0.02069091796875,
-0.595703125,
0.9033203125,
-0.80224609375,
0.470703125,
0.12841796875,
0.400634765625,
-0.232421875,
0.087890625,
-0.01099395751953125,
0.814453125,
0.27001953125,
0.302734375,
-0.7021484375,
-0.173583984375,
-0.28515625,
0.822265625,
-0.377685546875,
0.9365234375,
-0.865234375,
-0.4228515625,
-0.12255859375,
-0.426025390625,
-0.1258544921875,
-0.3642578125,
-0.007709503173828125,
0.8779296875,
0.293701171875,
0.79833984375,
0.72509765625,
-0.66015625,
0.487548828125,
0.278076171875,
-0.1226806640625,
0.419189453125,
0.265380859375,
0.61669921875,
0.331298828125,
0.157958984375,
-0.053619384765625,
-0.36865234375,
-0.69287109375,
-0.63671875,
0.2298583984375,
0.6142578125,
-0.2374267578125,
0.290771484375,
-0.057830810546875,
0.1666259765625,
-0.732421875,
-0.263916015625,
-0.090576171875,
-1.0029296875,
-0.3369140625,
0.409423828125,
-0.01435089111328125,
0.2626953125,
-0.70556640625,
-0.49560546875,
0.30322265625,
1.0771484375,
-0.2054443359375,
0.07952880859375,
0.459716796875,
0.25830078125,
-0.2176513671875,
0.34033203125,
0.04656982421875,
-0.11737060546875,
-0.58154296875,
0.6845703125,
-0.61376953125,
0.029754638671875,
-0.08563232421875,
0.904296875,
0.2724609375,
0.23388671875,
-0.5478515625,
-0.0943603515625,
0.5625,
1.2509765625,
-0.1165771484375,
0.50048828125,
0.52685546875,
0.826171875,
0.437744140625,
0.767578125,
0.478515625,
0.5361328125,
0.6748046875,
0.736328125,
0.0204315185546875,
0.217041015625,
0.141845703125,
0.466064453125,
0.417236328125,
0.444091796875,
0.0927734375,
0.57568359375,
-0.412109375,
0.373046875,
-0.93701171875,
0.1787109375,
-0.14892578125,
1.095703125,
0.37353515625,
0.4150390625,
-0.400634765625,
-0.363037109375,
0.292236328125,
0.79052734375,
-1.0751953125,
-0.68994140625,
-0.11236572265625,
0.020904541015625,
0.20849609375,
-0.08203125,
0.345703125,
0.361083984375,
0.75732421875,
-0.06243896484375,
-0.28369140625,
-0.2958984375,
-1.22265625,
-0.9765625,
-0.5849609375,
-0.462890625,
-0.486328125,
0.14990234375,
0.6044921875,
-1.06640625,
0.169677734375,
-0.56298828125,
0.103515625,
-0.00547027587890625,
-0.89404296875,
0.315185546875,
0.060699462890625,
0.8564453125,
-0.8095703125,
0.6669921875,
-0.09283447265625,
1.029296875,
-0.84716796875,
-0.35400390625,
-0.2734375,
-0.4599609375,
0.486572265625,
0.1534423828125,
0.1402587890625,
-0.0239410400390625,
-0.56591796875,
-0.99755859375,
-0.291748046875,
-0.055938720703125,
-0.486328125,
0.298828125,
-0.79931640625,
0.99853515625,
0.546875,
-0.73779296875,
0.418212890625,
1.0712890625,
-0.755859375,
0.419677734375,
0.30126953125,
-0.0215911865234375,
-0.70263671875,
1.2109375,
0.44482421875,
0.333251953125,
-0.58056640625,
-0.74755859375,
-0.2178955078125,
0.34814453125,
0.082275390625,
-0.64599609375,
0.0263824462890625,
0.9462890625,
-0.2076416015625,
-1.373046875,
0.59521484375,
-0.86474609375,
-0.74658203125,
-0.292724609375,
-0.53173828125,
0.6337890625,
0.5673828125,
0.258544921875,
-0.47607421875,
-0.220458984375,
0.01131439208984375,
0.634765625,
0.120361328125,
-0.7333984375,
-0.01515960693359375,
0.55615234375,
-0.1871337890625,
-0.057464599609375,
0.3115234375,
-0.487060546875,
-0.234130859375,
-0.04412841796875,
-0.037506103515625,
0.7783203125,
0.179931640625,
0.443115234375,
0.2978515625,
0.5986328125,
-0.892578125,
-0.17919921875,
-0.14697265625,
0.57177734375,
0.270263671875,
0.359375,
0.443115234375,
-0.19775390625,
-0.77197265625,
-1.4169921875,
0.289306640625,
0.340087890625,
0.64013671875,
-0.857421875,
0.88525390625,
0.256103515625,
-0.63427734375,
0.51708984375,
-0.8076171875,
0.1676025390625,
1.0986328125,
-0.48681640625,
0.84521484375,
-0.81689453125,
-0.046722412109375,
0.1475830078125,
0.11431884765625,
0.41259765625,
0.476318359375,
0.60546875,
-0.185546875,
-0.1368408203125,
-0.45947265625,
-0.21484375,
0.0950927734375,
-0.318603515625,
0.33935546875,
-0.31787109375,
-0.343994140625,
-1.107421875,
0.52392578125,
0.68212890625,
0.5087890625,
0.48583984375,
0.54541015625,
0.23974609375,
0.357177734375,
0.52197265625,
-0.25634765625,
0.1971435546875,
-0.476806640625,
0.806640625,
0.09576416015625,
-0.08697509765625,
-0.3271484375,
-0.3515625,
0.00846099853515625,
0.408203125,
-0.04669189453125,
-0.07366943359375,
-0.904296875,
0.1820068359375,
-0.020538330078125,
0.828125,
-0.454345703125,
-0.20068359375,
-0.06011962890625,
0.32666015625,
0.4716796875,
-0.728515625,
-0.20703125,
-0.7880859375,
0.53759765625,
0.26220703125,
-0.004955291748046875,
-0.29052734375,
-0.3154296875,
-0.58349609375,
-0.7958984375,
0.7060546875,
0.896484375,
-0.078369140625,
-0.110595703125,
-1.125,
0.7548828125,
0.16748046875,
-0.20166015625,
0.1624755859375,
0.03253173828125,
0.400390625,
-0.268310546875,
0.658203125,
-0.0079345703125,
-0.74365234375,
0.251953125,
-1.0380859375,
0.408935546875,
-0.255126953125,
0.28955078125,
-0.52001953125,
0.1143798828125,
-0.0462646484375,
0.30712890625,
-0.3232421875,
0.2734375,
-0.28955078125,
0.343505859375,
-1.1494140625,
-0.49755859375,
0.33642578125,
-0.352783203125,
-0.005237579345703125,
1.080078125,
-0.26123046875,
-0.53076171875,
0.1947021484375,
0.603515625,
-0.316650390625,
0.227783203125,
-0.381103515625,
0.261962890625,
-0.47998046875,
-0.20849609375,
-0.1922607421875,
-0.38037109375,
0.76611328125,
-0.2467041015625,
-0.46337890625,
-0.2198486328125,
-0.8896484375,
-0.0180816650390625,
-0.0110931396484375,
-0.9365234375,
0.479736328125,
0.005588531494140625,
-0.384521484375,
-0.052978515625,
-0.2078857421875,
-0.345703125,
-0.37451171875,
-0.25146484375,
-0.521484375,
0.2529296875,
0.76611328125,
1.2822265625,
0.1513671875,
-0.4091796875,
-0.038726806640625,
0.157958984375,
-0.0994873046875,
-0.5263671875,
0.0301513671875,
-0.307861328125,
-0.08135986328125,
-0.263916015625,
0.24169921875,
0.27587890625,
0.2216796875,
0.441650390625,
0.337890625,
0.38232421875,
0.41015625,
-0.3193359375,
1.2744140625,
0.107421875,
-0.94384765625,
-0.67333984375,
0.5,
-0.0201568603515625,
0.316162109375,
0.16845703125,
-0.72021484375,
-0.74853515625,
-0.90283203125,
0.2109375,
-0.68212890625,
-0.334716796875,
-0.83984375,
-0.404296875,
-0.7099609375,
0.2491455078125,
-0.434326171875,
-0.465576171875,
-0.0574951171875,
-1.2236328125,
0.06927490234375,
-0.716796875,
-0.483154296875,
-0.609375,
-0.25537109375,
-0.1873779296875,
1.1953125,
0.06341552734375,
0.295654296875,
-0.055023193359375,
-0.0435791015625,
0.259033203125,
-0.04718017578125,
-0.65185546875,
-0.64111328125,
-0.210693359375,
0.03387451171875,
0.1162109375,
0.00836181640625,
-0.5712890625,
0.74169921875,
-0.8095703125,
-0.06317138671875,
-0.3701171875,
-0.0672607421875,
-0.2052001953125,
-0.72998046875,
0.9384765625,
-0.498291015625,
0.2587890625,
-0.2010498046875,
0.546875,
0.8642578125,
-0.1456298828125,
-0.330078125,
-0.5390625,
-0.484130859375,
-1.26171875,
0.2763671875,
-0.445556640625,
0.262451171875,
-0.7421875,
-0.84033203125,
1.1025390625,
-0.677734375,
0.51171875,
1.1787109375,
0.06890869140625,
0.7060546875,
-0.53662109375,
0.89404296875,
0.7021484375,
-0.55126953125,
-0.03643798828125,
0.132080078125,
-0.611328125,
-0.093994140625,
-0.272705078125,
-1.1826171875,
-0.78466796875,
0.52978515625,
1.28515625,
-0.453857421875,
0.71728515625,
0.09112548828125,
-1.0771484375,
-0.56591796875,
1.021484375,
0.0516357421875,
0.337158203125,
0.82421875,
-0.321533203125,
-0.33251953125,
0.404296875,
-0.364501953125,
-0.40234375,
-0.5244140625,
1.10546875,
-0.26953125,
-0.51806640625,
0.62109375,
0.77783203125,
-1.1953125,
-0.62548828125,
-0.285888671875,
0.27880859375,
-0.3486328125,
-0.98779296875,
-0.211181640625,
0.56787109375,
-0.9912109375,
0.159912109375,
0.38525390625,
-0.296142578125,
0.59228515625,
0.1524658203125,
0.48291015625,
-0.50048828125,
0.494873046875,
0.5859375,
-0.375732421875,
-0.329833984375,
-0.73681640625,
-0.10308837890625,
0.0684814453125,
0.12091064453125,
0.822265625,
-0.416259765625,
0.168701171875,
0.2135009765625,
0.0538330078125,
0.80712890625,
-0.173828125,
-0.306640625,
0.3310546875,
-1.1103515625,
-0.7939453125,
-0.2239990234375,
0.2158203125,
-0.26708984375,
0.58154296875,
-0.68212890625,
0.00266265869140625,
-0.0865478515625,
0.328125,
-0.348876953125,
-0.884765625,
-0.001590728759765625,
-1.099609375,
-0.4443359375,
-0.69873046875,
-0.71728515625,
0.26220703125,
0.3330078125,
0.140625,
-0.76806640625,
0.244140625,
0.6806640625,
-0.52978515625,
0.767578125,
-0.623046875,
0.396728515625,
-0.26416015625,
-0.1217041015625,
-0.91455078125,
0.09063720703125,
-0.401123046875,
0.036376953125,
-0.5244140625,
0.497314453125,
-0.04730224609375,
0.529296875,
0.004871368408203125,
0.25830078125,
-0.3984375,
-0.358154296875,
-0.1947021484375,
0.2255859375,
-0.3984375,
0.642578125,
0.7529296875,
0.08697509765625,
-0.01666259765625,
-0.41650390625,
-0.424560546875,
-0.251708984375,
0.6240234375,
0.454345703125,
-0.29345703125,
0.26904296875,
-0.501953125,
0.1199951171875,
-1.1923828125,
0.324462890625,
-0.417724609375,
0.0689697265625,
-0.006687164306640625,
-0.205322265625,
0.6494140625,
1.466796875,
-0.354736328125,
0.361328125,
0.2034912109375,
0.1966552734375,
0.5654296875,
0.21435546875,
-0.0019855499267578125,
0.68896484375,
0.03143310546875,
-0.369140625,
-0.1878662109375,
0.1812744140625,
0.55029296875,
0.0650634765625,
-0.26953125,
-0.98095703125,
-1.01171875,
-0.58935546875,
0.07562255859375,
0.62890625,
0.316162109375,
-0.75732421875,
-0.2176513671875,
-0.192626953125,
-0.376708984375,
0.358154296875,
-1.3603515625,
-0.82568359375,
0.146484375,
0.2252197265625,
-0.3447265625,
0.2880859375,
-0.490478515625,
-0.2890625,
-0.049224853515625,
0.46484375,
-0.426513671875,
0.4052734375,
-0.009307861328125,
0.64453125,
0.01139068603515625,
-0.045989990234375,
0.2281494140625,
0.7724609375,
-0.70263671875,
-0.53271484375,
0.181640625,
1.169921875,
-0.019775390625,
0.0404052734375,
-0.72216796875,
0.2159423828125,
0.00836181640625,
0.09423828125,
-0.51416015625,
0.1851806640625,
-0.27734375,
0.623046875,
-1.373046875,
-0.27197265625,
0.06591796875,
0.268310546875,
0.173095703125,
-0.441650390625,
-0.54052734375,
1.0068359375,
1.2197265625,
-0.129638671875,
0.202392578125,
-0.12841796875,
0.61328125,
0.089599609375,
-0.0416259765625,
-0.46875,
0.389892578125,
0.349853515625,
0.69189453125,
-0.1435546875,
0.375244140625,
0.865234375,
0.271240234375,
-0.3232421875,
0.44287109375,
0.52197265625,
0.021087646484375,
-0.12457275390625,
-0.264404296875,
0.04638671875,
0.287109375,
-0.6640625,
0.347412109375,
-0.4814453125,
0.09765625,
-0.0799560546875,
-0.8046875,
0.90625,
-0.57763671875,
-0.2347412109375,
0.287841796875,
-0.455078125,
0.27587890625,
0.54736328125,
0.354248046875,
-0.10211181640625,
0.81103515625,
0.69482421875,
0.68408203125,
0.6298828125,
0.578125,
0.369140625,
-0.64501953125,
0.1849365234375,
0.2340087890625,
-0.28662109375,
-0.2154541015625,
-0.290283203125,
-1.0576171875,
0.65576171875,
-0.33740234375,
-0.469970703125,
0.348388671875,
-0.95751953125,
0.0187835693359375,
-0.280029296875,
0.8720703125,
-0.333984375,
0.47216796875,
0.422119140625,
-0.2183837890625,
-0.406494140625,
1.1591796875,
0.0181732177734375,
0.342041015625,
0.06243896484375,
0.50830078125,
0.30517578125,
1.2958984375,
0.71142578125,
0.0204315185546875,
0.36279296875,
0.7197265625,
-0.66015625,
-0.60302734375,
-0.1890869140625,
-0.208740234375,
0.09112548828125,
-0.576171875,
-0.06884765625,
-0.634765625,
0.5263671875,
0.262939453125,
-0.77587890625,
-0.405517578125,
0.10430908203125,
-0.9951171875,
0.21923828125,
0.67919921875,
0.361328125,
0.21826171875,
0.003017425537109375,
-0.269775390625,
-0.47509765625,
0.1387939453125,
-0.61767578125,
0.3310546875,
-0.7919921875,
-0.2225341796875,
-0.71240234375,
-0.62060546875,
-0.42236328125,
-0.266845703125,
-0.27099609375,
-1.14453125,
0.78271484375,
0.689453125,
0.51416015625,
0.48486328125,
-0.39111328125,
0.0618896484375,
0.74560546875,
0.7578125,
-0.07293701171875,
0.89013671875,
0.431396484375,
-0.0177001953125,
0.1217041015625,
-0.257568359375,
0.220703125,
-0.02642822265625,
0.2493896484375,
-0.383544921875,
0.4013671875,
-0.6171875,
-1.55078125,
0.07110595703125,
0.350830078125,
0.43701171875,
-0.4404296875,
-1.0263671875,
-0.459716796875,
-0.978515625,
-0.02227783203125,
-0.556640625,
0.7646484375,
-0.087890625,
0.1597900390625,
-0.273193359375,
-1.1552734375,
4.3046875,
1.1083984375,
1.1728515625,
0.142578125,
0.412109375,
1.3359375,
0.1282958984375,
-0.66943359375,
-0.328369140625,
-0.5927734375,
0.716796875,
-0.300537109375,
0.2210693359375,
0.53125,
0.0648193359375,
0.880859375,
-0.421630859375,
-0.0859375,
0.0006775856018066406,
-0.8876953125,
-0.8408203125,
0.14599609375,
-0.04510498046875,
0.3955078125,
-0.0660400390625,
0.21630859375,
0.75732421875,
-0.97216796875,
-0.1871337890625,
-0.30517578125,
0.23779296875,
-0.880859375,
1.044921875,
-0.30029296875,
-0.14013671875,
0.701171875,
0.133544921875,
-0.517578125,
-0.61669921875,
0.20361328125,
-0.08868408203125,
0.496337890625,
0.66552734375,
-1.0556640625,
-0.1649169921875,
0.40185546875,
-0.51806640625,
0.307861328125,
-0.126220703125,
-0.6494140625,
0.6884765625,
-0.392822265625,
0.333251953125,
-0.407470703125,
-1.1142578125,
0.52490234375,
0.286376953125,
0.231689453125,
-0.42138671875,
0.28076171875,
0.2225341796875,
0.40966796875,
0.038482666015625,
0.54736328125,
-0.859375,
0.479248046875,
-0.1441650390625,
0.301025390625,
-0.38671875,
-0.031890869140625,
-0.90771484375,
-0.51123046875,
-0.3291015625,
-0.29248046875,
0.379150390625,
0.2763671875,
-0.1787109375,
0.623046875,
0.6748046875,
-0.496337890625,
0.25,
-0.295166015625,
-0.068603515625,
-0.38916015625,
0.343994140625,
0.8115234375,
-0.44775390625,
-0.56103515625,
-0.1644287109375,
0.6357421875,
0.58447265625,
0.71435546875,
0.358642578125,
-0.56982421875,
-0.1846923828125
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Phoenix has a string s consisting of lowercase Latin letters. He wants to distribute all the letters of his string into k non-empty strings a_1, a_2, ..., a_k such that every letter of s goes to exactly one of the strings a_i. The strings a_i do not need to be substrings of s. Phoenix can distribute letters of s and rearrange the letters within each string a_i however he wants.
For example, if s = baba and k=2, Phoenix may distribute the letters of his string in many ways, such as:
* ba and ba
* a and abb
* ab and ab
* aa and bb
But these ways are invalid:
* baa and ba
* b and ba
* baba and empty string (a_i should be non-empty)
Phoenix wants to distribute the letters of his string s into k strings a_1, a_2, ..., a_k to minimize the lexicographically maximum string among them, i. e. minimize max(a_1, a_2, ..., a_k). Help him find the optimal distribution and print the minimal possible value of max(a_1, a_2, ..., a_k).
String x is lexicographically less than string y if either x is a prefix of y and x ≠ y, or there exists an index i (1 ≤ i ≤ min(|x|, |y|)) such that x_i < y_i and for every j (1 ≤ j < i) x_j = y_j. Here |x| denotes the length of the string x.
Input
The input consists of multiple test cases. The first line contains an integer t (1 ≤ t ≤ 1000) — the number of test cases. Each test case consists of two lines.
The first line of each test case consists of two integers n and k (1 ≤ k ≤ n ≤ 10^5) — the length of string s and the number of non-empty strings, into which Phoenix wants to distribute letters of s, respectively.
The second line of each test case contains a string s of length n consisting only of lowercase Latin letters.
It is guaranteed that the sum of n over all test cases is ≤ 10^5.
Output
Print t answers — one per test case. The i-th answer should be the minimal possible value of max(a_1, a_2, ..., a_k) in the i-th test case.
Example
Input
6
4 2
baba
5 2
baacb
5 3
baacb
5 3
aaaaa
6 4
aaxxzz
7 1
phoenix
Output
ab
abbc
b
aa
x
ehinopx
Note
In the first test case, one optimal solution is to distribute baba into ab and ab.
In the second test case, one optimal solution is to distribute baacb into abbc and a.
In the third test case, one optimal solution is to distribute baacb into ac, ab, and b.
In the fourth test case, one optimal solution is to distribute aaaaa into aa, aa, and a.
In the fifth test case, one optimal solution is to distribute aaxxzz into az, az, x, and x.
In the sixth test case, one optimal solution is to distribute phoenix into ehinopx.
Tags: constructive algorithms, greedy, sortings, strings
Correct Solution:
```
import math
t = int(input())
for _ in range(t):
n,m = map(int,input().split())
s = input()
s1 = [i for i in s]
s1.sort()
s = ''.join(s1)
#print(s)
if m==n:
print(s[n-1])
continue
if m==1:
print(s)
continue
lis = [[s[i]] for i in range(m)]
pos = -1
for i in range(m-1):
if lis[i]==lis[m-1]:
pos = i
break
if pos==-1:
print(*lis[m-1])
continue
pp = pow(2,10)
for i in range(20):
pp+=i
if pos==0:
if s[m]==s[n-1]:
print(s[0]+s[m]*(math.ceil((n-m)/m)))
else:
print(s[0]+s[m:])
else:
print(*lis[m-1])
```
| 10,930 | [
0.2105712890625,
0.3369140625,
0.422607421875,
0.4091796875,
-0.60986328125,
-0.57666015625,
-0.06549072265625,
0.10791015625,
-0.046966552734375,
0.88818359375,
1.0712890625,
0.11895751953125,
0.0626220703125,
-0.85302734375,
-0.83837890625,
0.361328125,
-0.65673828125,
-0.55322265625,
-0.351318359375,
-0.1859130859375,
0.171875,
0.1126708984375,
-1.6328125,
-0.3173828125,
-0.2313232421875,
0.90869140625,
0.2230224609375,
0.020263671875,
1.14453125,
0.87744140625,
0.0523681640625,
-0.41552734375,
0.71630859375,
-1.197265625,
-0.360107421875,
-0.5517578125,
0.82421875,
-0.366455078125,
-0.380615234375,
-0.8212890625,
0.5849609375,
-0.88720703125,
0.458251953125,
-0.5791015625,
-0.849609375,
-0.10546875,
-0.03204345703125,
-0.537109375,
-0.55859375,
-0.3837890625,
0.07647705078125,
-0.349853515625,
0.64794921875,
-0.51171875,
0.1121826171875,
0.08734130859375,
0.08648681640625,
-0.043487548828125,
-0.779296875,
0.2255859375,
0.01116180419921875,
0.233642578125,
-0.44189453125,
-0.75927734375,
-0.1171875,
0.28857421875,
-0.08758544921875,
-0.009033203125,
0.1715087890625,
-1.1220703125,
-0.4677734375,
0.29736328125,
-0.444580078125,
-0.72802734375,
-0.390380859375,
0.019317626953125,
0.1116943359375,
-0.13134765625,
-0.5615234375,
0.7802734375,
0.1644287109375,
0.64208984375,
0.22265625,
0.00731658935546875,
-0.6845703125,
-0.53076171875,
0.10784912109375,
0.397705078125,
0.053375244140625,
0.1976318359375,
0.016387939453125,
0.47265625,
-0.6474609375,
0.16845703125,
0.376220703125,
0.896484375,
-0.036773681640625,
0.4501953125,
0.15185546875,
0.40283203125,
1.1484375,
0.80859375,
-0.578125,
1.1240234375,
-0.6015625,
0.194091796875,
-0.1317138671875,
-0.19384765625,
-0.282958984375,
-0.435791015625,
-0.263427734375,
0.0269622802734375,
0.345947265625,
0.380126953125,
-0.22998046875,
0.73779296875,
-0.16064453125,
0.7626953125,
-0.86572265625,
-0.032379150390625,
0.52587890625,
0.0657958984375,
0.65087890625,
-0.263916015625,
-0.045654296875,
-0.2027587890625,
-0.56982421875,
0.8173828125,
-0.78076171875,
-0.061248779296875,
0.5263671875,
0.09735107421875,
-0.5263671875,
0.471923828125,
0.033233642578125,
0.47705078125,
0.032379150390625,
0.5458984375,
0.91455078125,
-0.2235107421875,
0.6904296875,
-0.21875,
0.0430908203125,
1.5068359375,
0.122802734375,
-0.165771484375,
0.66357421875,
0.02069091796875,
-0.595703125,
0.9033203125,
-0.80224609375,
0.470703125,
0.12841796875,
0.400634765625,
-0.232421875,
0.087890625,
-0.01099395751953125,
0.814453125,
0.27001953125,
0.302734375,
-0.7021484375,
-0.173583984375,
-0.28515625,
0.822265625,
-0.377685546875,
0.9365234375,
-0.865234375,
-0.4228515625,
-0.12255859375,
-0.426025390625,
-0.1258544921875,
-0.3642578125,
-0.007709503173828125,
0.8779296875,
0.293701171875,
0.79833984375,
0.72509765625,
-0.66015625,
0.487548828125,
0.278076171875,
-0.1226806640625,
0.419189453125,
0.265380859375,
0.61669921875,
0.331298828125,
0.157958984375,
-0.053619384765625,
-0.36865234375,
-0.69287109375,
-0.63671875,
0.2298583984375,
0.6142578125,
-0.2374267578125,
0.290771484375,
-0.057830810546875,
0.1666259765625,
-0.732421875,
-0.263916015625,
-0.090576171875,
-1.0029296875,
-0.3369140625,
0.409423828125,
-0.01435089111328125,
0.2626953125,
-0.70556640625,
-0.49560546875,
0.30322265625,
1.0771484375,
-0.2054443359375,
0.07952880859375,
0.459716796875,
0.25830078125,
-0.2176513671875,
0.34033203125,
0.04656982421875,
-0.11737060546875,
-0.58154296875,
0.6845703125,
-0.61376953125,
0.029754638671875,
-0.08563232421875,
0.904296875,
0.2724609375,
0.23388671875,
-0.5478515625,
-0.0943603515625,
0.5625,
1.2509765625,
-0.1165771484375,
0.50048828125,
0.52685546875,
0.826171875,
0.437744140625,
0.767578125,
0.478515625,
0.5361328125,
0.6748046875,
0.736328125,
0.0204315185546875,
0.217041015625,
0.141845703125,
0.466064453125,
0.417236328125,
0.444091796875,
0.0927734375,
0.57568359375,
-0.412109375,
0.373046875,
-0.93701171875,
0.1787109375,
-0.14892578125,
1.095703125,
0.37353515625,
0.4150390625,
-0.400634765625,
-0.363037109375,
0.292236328125,
0.79052734375,
-1.0751953125,
-0.68994140625,
-0.11236572265625,
0.020904541015625,
0.20849609375,
-0.08203125,
0.345703125,
0.361083984375,
0.75732421875,
-0.06243896484375,
-0.28369140625,
-0.2958984375,
-1.22265625,
-0.9765625,
-0.5849609375,
-0.462890625,
-0.486328125,
0.14990234375,
0.6044921875,
-1.06640625,
0.169677734375,
-0.56298828125,
0.103515625,
-0.00547027587890625,
-0.89404296875,
0.315185546875,
0.060699462890625,
0.8564453125,
-0.8095703125,
0.6669921875,
-0.09283447265625,
1.029296875,
-0.84716796875,
-0.35400390625,
-0.2734375,
-0.4599609375,
0.486572265625,
0.1534423828125,
0.1402587890625,
-0.0239410400390625,
-0.56591796875,
-0.99755859375,
-0.291748046875,
-0.055938720703125,
-0.486328125,
0.298828125,
-0.79931640625,
0.99853515625,
0.546875,
-0.73779296875,
0.418212890625,
1.0712890625,
-0.755859375,
0.419677734375,
0.30126953125,
-0.0215911865234375,
-0.70263671875,
1.2109375,
0.44482421875,
0.333251953125,
-0.58056640625,
-0.74755859375,
-0.2178955078125,
0.34814453125,
0.082275390625,
-0.64599609375,
0.0263824462890625,
0.9462890625,
-0.2076416015625,
-1.373046875,
0.59521484375,
-0.86474609375,
-0.74658203125,
-0.292724609375,
-0.53173828125,
0.6337890625,
0.5673828125,
0.258544921875,
-0.47607421875,
-0.220458984375,
0.01131439208984375,
0.634765625,
0.120361328125,
-0.7333984375,
-0.01515960693359375,
0.55615234375,
-0.1871337890625,
-0.057464599609375,
0.3115234375,
-0.487060546875,
-0.234130859375,
-0.04412841796875,
-0.037506103515625,
0.7783203125,
0.179931640625,
0.443115234375,
0.2978515625,
0.5986328125,
-0.892578125,
-0.17919921875,
-0.14697265625,
0.57177734375,
0.270263671875,
0.359375,
0.443115234375,
-0.19775390625,
-0.77197265625,
-1.4169921875,
0.289306640625,
0.340087890625,
0.64013671875,
-0.857421875,
0.88525390625,
0.256103515625,
-0.63427734375,
0.51708984375,
-0.8076171875,
0.1676025390625,
1.0986328125,
-0.48681640625,
0.84521484375,
-0.81689453125,
-0.046722412109375,
0.1475830078125,
0.11431884765625,
0.41259765625,
0.476318359375,
0.60546875,
-0.185546875,
-0.1368408203125,
-0.45947265625,
-0.21484375,
0.0950927734375,
-0.318603515625,
0.33935546875,
-0.31787109375,
-0.343994140625,
-1.107421875,
0.52392578125,
0.68212890625,
0.5087890625,
0.48583984375,
0.54541015625,
0.23974609375,
0.357177734375,
0.52197265625,
-0.25634765625,
0.1971435546875,
-0.476806640625,
0.806640625,
0.09576416015625,
-0.08697509765625,
-0.3271484375,
-0.3515625,
0.00846099853515625,
0.408203125,
-0.04669189453125,
-0.07366943359375,
-0.904296875,
0.1820068359375,
-0.020538330078125,
0.828125,
-0.454345703125,
-0.20068359375,
-0.06011962890625,
0.32666015625,
0.4716796875,
-0.728515625,
-0.20703125,
-0.7880859375,
0.53759765625,
0.26220703125,
-0.004955291748046875,
-0.29052734375,
-0.3154296875,
-0.58349609375,
-0.7958984375,
0.7060546875,
0.896484375,
-0.078369140625,
-0.110595703125,
-1.125,
0.7548828125,
0.16748046875,
-0.20166015625,
0.1624755859375,
0.03253173828125,
0.400390625,
-0.268310546875,
0.658203125,
-0.0079345703125,
-0.74365234375,
0.251953125,
-1.0380859375,
0.408935546875,
-0.255126953125,
0.28955078125,
-0.52001953125,
0.1143798828125,
-0.0462646484375,
0.30712890625,
-0.3232421875,
0.2734375,
-0.28955078125,
0.343505859375,
-1.1494140625,
-0.49755859375,
0.33642578125,
-0.352783203125,
-0.005237579345703125,
1.080078125,
-0.26123046875,
-0.53076171875,
0.1947021484375,
0.603515625,
-0.316650390625,
0.227783203125,
-0.381103515625,
0.261962890625,
-0.47998046875,
-0.20849609375,
-0.1922607421875,
-0.38037109375,
0.76611328125,
-0.2467041015625,
-0.46337890625,
-0.2198486328125,
-0.8896484375,
-0.0180816650390625,
-0.0110931396484375,
-0.9365234375,
0.479736328125,
0.005588531494140625,
-0.384521484375,
-0.052978515625,
-0.2078857421875,
-0.345703125,
-0.37451171875,
-0.25146484375,
-0.521484375,
0.2529296875,
0.76611328125,
1.2822265625,
0.1513671875,
-0.4091796875,
-0.038726806640625,
0.157958984375,
-0.0994873046875,
-0.5263671875,
0.0301513671875,
-0.307861328125,
-0.08135986328125,
-0.263916015625,
0.24169921875,
0.27587890625,
0.2216796875,
0.441650390625,
0.337890625,
0.38232421875,
0.41015625,
-0.3193359375,
1.2744140625,
0.107421875,
-0.94384765625,
-0.67333984375,
0.5,
-0.0201568603515625,
0.316162109375,
0.16845703125,
-0.72021484375,
-0.74853515625,
-0.90283203125,
0.2109375,
-0.68212890625,
-0.334716796875,
-0.83984375,
-0.404296875,
-0.7099609375,
0.2491455078125,
-0.434326171875,
-0.465576171875,
-0.0574951171875,
-1.2236328125,
0.06927490234375,
-0.716796875,
-0.483154296875,
-0.609375,
-0.25537109375,
-0.1873779296875,
1.1953125,
0.06341552734375,
0.295654296875,
-0.055023193359375,
-0.0435791015625,
0.259033203125,
-0.04718017578125,
-0.65185546875,
-0.64111328125,
-0.210693359375,
0.03387451171875,
0.1162109375,
0.00836181640625,
-0.5712890625,
0.74169921875,
-0.8095703125,
-0.06317138671875,
-0.3701171875,
-0.0672607421875,
-0.2052001953125,
-0.72998046875,
0.9384765625,
-0.498291015625,
0.2587890625,
-0.2010498046875,
0.546875,
0.8642578125,
-0.1456298828125,
-0.330078125,
-0.5390625,
-0.484130859375,
-1.26171875,
0.2763671875,
-0.445556640625,
0.262451171875,
-0.7421875,
-0.84033203125,
1.1025390625,
-0.677734375,
0.51171875,
1.1787109375,
0.06890869140625,
0.7060546875,
-0.53662109375,
0.89404296875,
0.7021484375,
-0.55126953125,
-0.03643798828125,
0.132080078125,
-0.611328125,
-0.093994140625,
-0.272705078125,
-1.1826171875,
-0.78466796875,
0.52978515625,
1.28515625,
-0.453857421875,
0.71728515625,
0.09112548828125,
-1.0771484375,
-0.56591796875,
1.021484375,
0.0516357421875,
0.337158203125,
0.82421875,
-0.321533203125,
-0.33251953125,
0.404296875,
-0.364501953125,
-0.40234375,
-0.5244140625,
1.10546875,
-0.26953125,
-0.51806640625,
0.62109375,
0.77783203125,
-1.1953125,
-0.62548828125,
-0.285888671875,
0.27880859375,
-0.3486328125,
-0.98779296875,
-0.211181640625,
0.56787109375,
-0.9912109375,
0.159912109375,
0.38525390625,
-0.296142578125,
0.59228515625,
0.1524658203125,
0.48291015625,
-0.50048828125,
0.494873046875,
0.5859375,
-0.375732421875,
-0.329833984375,
-0.73681640625,
-0.10308837890625,
0.0684814453125,
0.12091064453125,
0.822265625,
-0.416259765625,
0.168701171875,
0.2135009765625,
0.0538330078125,
0.80712890625,
-0.173828125,
-0.306640625,
0.3310546875,
-1.1103515625,
-0.7939453125,
-0.2239990234375,
0.2158203125,
-0.26708984375,
0.58154296875,
-0.68212890625,
0.00266265869140625,
-0.0865478515625,
0.328125,
-0.348876953125,
-0.884765625,
-0.001590728759765625,
-1.099609375,
-0.4443359375,
-0.69873046875,
-0.71728515625,
0.26220703125,
0.3330078125,
0.140625,
-0.76806640625,
0.244140625,
0.6806640625,
-0.52978515625,
0.767578125,
-0.623046875,
0.396728515625,
-0.26416015625,
-0.1217041015625,
-0.91455078125,
0.09063720703125,
-0.401123046875,
0.036376953125,
-0.5244140625,
0.497314453125,
-0.04730224609375,
0.529296875,
0.004871368408203125,
0.25830078125,
-0.3984375,
-0.358154296875,
-0.1947021484375,
0.2255859375,
-0.3984375,
0.642578125,
0.7529296875,
0.08697509765625,
-0.01666259765625,
-0.41650390625,
-0.424560546875,
-0.251708984375,
0.6240234375,
0.454345703125,
-0.29345703125,
0.26904296875,
-0.501953125,
0.1199951171875,
-1.1923828125,
0.324462890625,
-0.417724609375,
0.0689697265625,
-0.006687164306640625,
-0.205322265625,
0.6494140625,
1.466796875,
-0.354736328125,
0.361328125,
0.2034912109375,
0.1966552734375,
0.5654296875,
0.21435546875,
-0.0019855499267578125,
0.68896484375,
0.03143310546875,
-0.369140625,
-0.1878662109375,
0.1812744140625,
0.55029296875,
0.0650634765625,
-0.26953125,
-0.98095703125,
-1.01171875,
-0.58935546875,
0.07562255859375,
0.62890625,
0.316162109375,
-0.75732421875,
-0.2176513671875,
-0.192626953125,
-0.376708984375,
0.358154296875,
-1.3603515625,
-0.82568359375,
0.146484375,
0.2252197265625,
-0.3447265625,
0.2880859375,
-0.490478515625,
-0.2890625,
-0.049224853515625,
0.46484375,
-0.426513671875,
0.4052734375,
-0.009307861328125,
0.64453125,
0.01139068603515625,
-0.045989990234375,
0.2281494140625,
0.7724609375,
-0.70263671875,
-0.53271484375,
0.181640625,
1.169921875,
-0.019775390625,
0.0404052734375,
-0.72216796875,
0.2159423828125,
0.00836181640625,
0.09423828125,
-0.51416015625,
0.1851806640625,
-0.27734375,
0.623046875,
-1.373046875,
-0.27197265625,
0.06591796875,
0.268310546875,
0.173095703125,
-0.441650390625,
-0.54052734375,
1.0068359375,
1.2197265625,
-0.129638671875,
0.202392578125,
-0.12841796875,
0.61328125,
0.089599609375,
-0.0416259765625,
-0.46875,
0.389892578125,
0.349853515625,
0.69189453125,
-0.1435546875,
0.375244140625,
0.865234375,
0.271240234375,
-0.3232421875,
0.44287109375,
0.52197265625,
0.021087646484375,
-0.12457275390625,
-0.264404296875,
0.04638671875,
0.287109375,
-0.6640625,
0.347412109375,
-0.4814453125,
0.09765625,
-0.0799560546875,
-0.8046875,
0.90625,
-0.57763671875,
-0.2347412109375,
0.287841796875,
-0.455078125,
0.27587890625,
0.54736328125,
0.354248046875,
-0.10211181640625,
0.81103515625,
0.69482421875,
0.68408203125,
0.6298828125,
0.578125,
0.369140625,
-0.64501953125,
0.1849365234375,
0.2340087890625,
-0.28662109375,
-0.2154541015625,
-0.290283203125,
-1.0576171875,
0.65576171875,
-0.33740234375,
-0.469970703125,
0.348388671875,
-0.95751953125,
0.0187835693359375,
-0.280029296875,
0.8720703125,
-0.333984375,
0.47216796875,
0.422119140625,
-0.2183837890625,
-0.406494140625,
1.1591796875,
0.0181732177734375,
0.342041015625,
0.06243896484375,
0.50830078125,
0.30517578125,
1.2958984375,
0.71142578125,
0.0204315185546875,
0.36279296875,
0.7197265625,
-0.66015625,
-0.60302734375,
-0.1890869140625,
-0.208740234375,
0.09112548828125,
-0.576171875,
-0.06884765625,
-0.634765625,
0.5263671875,
0.262939453125,
-0.77587890625,
-0.405517578125,
0.10430908203125,
-0.9951171875,
0.21923828125,
0.67919921875,
0.361328125,
0.21826171875,
0.003017425537109375,
-0.269775390625,
-0.47509765625,
0.1387939453125,
-0.61767578125,
0.3310546875,
-0.7919921875,
-0.2225341796875,
-0.71240234375,
-0.62060546875,
-0.42236328125,
-0.266845703125,
-0.27099609375,
-1.14453125,
0.78271484375,
0.689453125,
0.51416015625,
0.48486328125,
-0.39111328125,
0.0618896484375,
0.74560546875,
0.7578125,
-0.07293701171875,
0.89013671875,
0.431396484375,
-0.0177001953125,
0.1217041015625,
-0.257568359375,
0.220703125,
-0.02642822265625,
0.2493896484375,
-0.383544921875,
0.4013671875,
-0.6171875,
-1.55078125,
0.07110595703125,
0.350830078125,
0.43701171875,
-0.4404296875,
-1.0263671875,
-0.459716796875,
-0.978515625,
-0.02227783203125,
-0.556640625,
0.7646484375,
-0.087890625,
0.1597900390625,
-0.273193359375,
-1.1552734375,
4.3046875,
1.1083984375,
1.1728515625,
0.142578125,
0.412109375,
1.3359375,
0.1282958984375,
-0.66943359375,
-0.328369140625,
-0.5927734375,
0.716796875,
-0.300537109375,
0.2210693359375,
0.53125,
0.0648193359375,
0.880859375,
-0.421630859375,
-0.0859375,
0.0006775856018066406,
-0.8876953125,
-0.8408203125,
0.14599609375,
-0.04510498046875,
0.3955078125,
-0.0660400390625,
0.21630859375,
0.75732421875,
-0.97216796875,
-0.1871337890625,
-0.30517578125,
0.23779296875,
-0.880859375,
1.044921875,
-0.30029296875,
-0.14013671875,
0.701171875,
0.133544921875,
-0.517578125,
-0.61669921875,
0.20361328125,
-0.08868408203125,
0.496337890625,
0.66552734375,
-1.0556640625,
-0.1649169921875,
0.40185546875,
-0.51806640625,
0.307861328125,
-0.126220703125,
-0.6494140625,
0.6884765625,
-0.392822265625,
0.333251953125,
-0.407470703125,
-1.1142578125,
0.52490234375,
0.286376953125,
0.231689453125,
-0.42138671875,
0.28076171875,
0.2225341796875,
0.40966796875,
0.038482666015625,
0.54736328125,
-0.859375,
0.479248046875,
-0.1441650390625,
0.301025390625,
-0.38671875,
-0.031890869140625,
-0.90771484375,
-0.51123046875,
-0.3291015625,
-0.29248046875,
0.379150390625,
0.2763671875,
-0.1787109375,
0.623046875,
0.6748046875,
-0.496337890625,
0.25,
-0.295166015625,
-0.068603515625,
-0.38916015625,
0.343994140625,
0.8115234375,
-0.44775390625,
-0.56103515625,
-0.1644287109375,
0.6357421875,
0.58447265625,
0.71435546875,
0.358642578125,
-0.56982421875,
-0.1846923828125
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Phoenix has a string s consisting of lowercase Latin letters. He wants to distribute all the letters of his string into k non-empty strings a_1, a_2, ..., a_k such that every letter of s goes to exactly one of the strings a_i. The strings a_i do not need to be substrings of s. Phoenix can distribute letters of s and rearrange the letters within each string a_i however he wants.
For example, if s = baba and k=2, Phoenix may distribute the letters of his string in many ways, such as:
* ba and ba
* a and abb
* ab and ab
* aa and bb
But these ways are invalid:
* baa and ba
* b and ba
* baba and empty string (a_i should be non-empty)
Phoenix wants to distribute the letters of his string s into k strings a_1, a_2, ..., a_k to minimize the lexicographically maximum string among them, i. e. minimize max(a_1, a_2, ..., a_k). Help him find the optimal distribution and print the minimal possible value of max(a_1, a_2, ..., a_k).
String x is lexicographically less than string y if either x is a prefix of y and x ≠ y, or there exists an index i (1 ≤ i ≤ min(|x|, |y|)) such that x_i < y_i and for every j (1 ≤ j < i) x_j = y_j. Here |x| denotes the length of the string x.
Input
The input consists of multiple test cases. The first line contains an integer t (1 ≤ t ≤ 1000) — the number of test cases. Each test case consists of two lines.
The first line of each test case consists of two integers n and k (1 ≤ k ≤ n ≤ 10^5) — the length of string s and the number of non-empty strings, into which Phoenix wants to distribute letters of s, respectively.
The second line of each test case contains a string s of length n consisting only of lowercase Latin letters.
It is guaranteed that the sum of n over all test cases is ≤ 10^5.
Output
Print t answers — one per test case. The i-th answer should be the minimal possible value of max(a_1, a_2, ..., a_k) in the i-th test case.
Example
Input
6
4 2
baba
5 2
baacb
5 3
baacb
5 3
aaaaa
6 4
aaxxzz
7 1
phoenix
Output
ab
abbc
b
aa
x
ehinopx
Note
In the first test case, one optimal solution is to distribute baba into ab and ab.
In the second test case, one optimal solution is to distribute baacb into abbc and a.
In the third test case, one optimal solution is to distribute baacb into ac, ab, and b.
In the fourth test case, one optimal solution is to distribute aaaaa into aa, aa, and a.
In the fifth test case, one optimal solution is to distribute aaxxzz into az, az, x, and x.
In the sixth test case, one optimal solution is to distribute phoenix into ehinopx.
Tags: constructive algorithms, greedy, sortings, strings
Correct Solution:
```
I=input
exec(int(I())*"n,k=map(int,I().split());s=''.join(sorted(I()));c=s[k-1];print(c+(c==s[0])*s[k::k**(s[k%n]==s[-1])]);")
```
| 10,931 | [
0.2105712890625,
0.3369140625,
0.422607421875,
0.4091796875,
-0.60986328125,
-0.57666015625,
-0.06549072265625,
0.10791015625,
-0.046966552734375,
0.88818359375,
1.0712890625,
0.11895751953125,
0.0626220703125,
-0.85302734375,
-0.83837890625,
0.361328125,
-0.65673828125,
-0.55322265625,
-0.351318359375,
-0.1859130859375,
0.171875,
0.1126708984375,
-1.6328125,
-0.3173828125,
-0.2313232421875,
0.90869140625,
0.2230224609375,
0.020263671875,
1.14453125,
0.87744140625,
0.0523681640625,
-0.41552734375,
0.71630859375,
-1.197265625,
-0.360107421875,
-0.5517578125,
0.82421875,
-0.366455078125,
-0.380615234375,
-0.8212890625,
0.5849609375,
-0.88720703125,
0.458251953125,
-0.5791015625,
-0.849609375,
-0.10546875,
-0.03204345703125,
-0.537109375,
-0.55859375,
-0.3837890625,
0.07647705078125,
-0.349853515625,
0.64794921875,
-0.51171875,
0.1121826171875,
0.08734130859375,
0.08648681640625,
-0.043487548828125,
-0.779296875,
0.2255859375,
0.01116180419921875,
0.233642578125,
-0.44189453125,
-0.75927734375,
-0.1171875,
0.28857421875,
-0.08758544921875,
-0.009033203125,
0.1715087890625,
-1.1220703125,
-0.4677734375,
0.29736328125,
-0.444580078125,
-0.72802734375,
-0.390380859375,
0.019317626953125,
0.1116943359375,
-0.13134765625,
-0.5615234375,
0.7802734375,
0.1644287109375,
0.64208984375,
0.22265625,
0.00731658935546875,
-0.6845703125,
-0.53076171875,
0.10784912109375,
0.397705078125,
0.053375244140625,
0.1976318359375,
0.016387939453125,
0.47265625,
-0.6474609375,
0.16845703125,
0.376220703125,
0.896484375,
-0.036773681640625,
0.4501953125,
0.15185546875,
0.40283203125,
1.1484375,
0.80859375,
-0.578125,
1.1240234375,
-0.6015625,
0.194091796875,
-0.1317138671875,
-0.19384765625,
-0.282958984375,
-0.435791015625,
-0.263427734375,
0.0269622802734375,
0.345947265625,
0.380126953125,
-0.22998046875,
0.73779296875,
-0.16064453125,
0.7626953125,
-0.86572265625,
-0.032379150390625,
0.52587890625,
0.0657958984375,
0.65087890625,
-0.263916015625,
-0.045654296875,
-0.2027587890625,
-0.56982421875,
0.8173828125,
-0.78076171875,
-0.061248779296875,
0.5263671875,
0.09735107421875,
-0.5263671875,
0.471923828125,
0.033233642578125,
0.47705078125,
0.032379150390625,
0.5458984375,
0.91455078125,
-0.2235107421875,
0.6904296875,
-0.21875,
0.0430908203125,
1.5068359375,
0.122802734375,
-0.165771484375,
0.66357421875,
0.02069091796875,
-0.595703125,
0.9033203125,
-0.80224609375,
0.470703125,
0.12841796875,
0.400634765625,
-0.232421875,
0.087890625,
-0.01099395751953125,
0.814453125,
0.27001953125,
0.302734375,
-0.7021484375,
-0.173583984375,
-0.28515625,
0.822265625,
-0.377685546875,
0.9365234375,
-0.865234375,
-0.4228515625,
-0.12255859375,
-0.426025390625,
-0.1258544921875,
-0.3642578125,
-0.007709503173828125,
0.8779296875,
0.293701171875,
0.79833984375,
0.72509765625,
-0.66015625,
0.487548828125,
0.278076171875,
-0.1226806640625,
0.419189453125,
0.265380859375,
0.61669921875,
0.331298828125,
0.157958984375,
-0.053619384765625,
-0.36865234375,
-0.69287109375,
-0.63671875,
0.2298583984375,
0.6142578125,
-0.2374267578125,
0.290771484375,
-0.057830810546875,
0.1666259765625,
-0.732421875,
-0.263916015625,
-0.090576171875,
-1.0029296875,
-0.3369140625,
0.409423828125,
-0.01435089111328125,
0.2626953125,
-0.70556640625,
-0.49560546875,
0.30322265625,
1.0771484375,
-0.2054443359375,
0.07952880859375,
0.459716796875,
0.25830078125,
-0.2176513671875,
0.34033203125,
0.04656982421875,
-0.11737060546875,
-0.58154296875,
0.6845703125,
-0.61376953125,
0.029754638671875,
-0.08563232421875,
0.904296875,
0.2724609375,
0.23388671875,
-0.5478515625,
-0.0943603515625,
0.5625,
1.2509765625,
-0.1165771484375,
0.50048828125,
0.52685546875,
0.826171875,
0.437744140625,
0.767578125,
0.478515625,
0.5361328125,
0.6748046875,
0.736328125,
0.0204315185546875,
0.217041015625,
0.141845703125,
0.466064453125,
0.417236328125,
0.444091796875,
0.0927734375,
0.57568359375,
-0.412109375,
0.373046875,
-0.93701171875,
0.1787109375,
-0.14892578125,
1.095703125,
0.37353515625,
0.4150390625,
-0.400634765625,
-0.363037109375,
0.292236328125,
0.79052734375,
-1.0751953125,
-0.68994140625,
-0.11236572265625,
0.020904541015625,
0.20849609375,
-0.08203125,
0.345703125,
0.361083984375,
0.75732421875,
-0.06243896484375,
-0.28369140625,
-0.2958984375,
-1.22265625,
-0.9765625,
-0.5849609375,
-0.462890625,
-0.486328125,
0.14990234375,
0.6044921875,
-1.06640625,
0.169677734375,
-0.56298828125,
0.103515625,
-0.00547027587890625,
-0.89404296875,
0.315185546875,
0.060699462890625,
0.8564453125,
-0.8095703125,
0.6669921875,
-0.09283447265625,
1.029296875,
-0.84716796875,
-0.35400390625,
-0.2734375,
-0.4599609375,
0.486572265625,
0.1534423828125,
0.1402587890625,
-0.0239410400390625,
-0.56591796875,
-0.99755859375,
-0.291748046875,
-0.055938720703125,
-0.486328125,
0.298828125,
-0.79931640625,
0.99853515625,
0.546875,
-0.73779296875,
0.418212890625,
1.0712890625,
-0.755859375,
0.419677734375,
0.30126953125,
-0.0215911865234375,
-0.70263671875,
1.2109375,
0.44482421875,
0.333251953125,
-0.58056640625,
-0.74755859375,
-0.2178955078125,
0.34814453125,
0.082275390625,
-0.64599609375,
0.0263824462890625,
0.9462890625,
-0.2076416015625,
-1.373046875,
0.59521484375,
-0.86474609375,
-0.74658203125,
-0.292724609375,
-0.53173828125,
0.6337890625,
0.5673828125,
0.258544921875,
-0.47607421875,
-0.220458984375,
0.01131439208984375,
0.634765625,
0.120361328125,
-0.7333984375,
-0.01515960693359375,
0.55615234375,
-0.1871337890625,
-0.057464599609375,
0.3115234375,
-0.487060546875,
-0.234130859375,
-0.04412841796875,
-0.037506103515625,
0.7783203125,
0.179931640625,
0.443115234375,
0.2978515625,
0.5986328125,
-0.892578125,
-0.17919921875,
-0.14697265625,
0.57177734375,
0.270263671875,
0.359375,
0.443115234375,
-0.19775390625,
-0.77197265625,
-1.4169921875,
0.289306640625,
0.340087890625,
0.64013671875,
-0.857421875,
0.88525390625,
0.256103515625,
-0.63427734375,
0.51708984375,
-0.8076171875,
0.1676025390625,
1.0986328125,
-0.48681640625,
0.84521484375,
-0.81689453125,
-0.046722412109375,
0.1475830078125,
0.11431884765625,
0.41259765625,
0.476318359375,
0.60546875,
-0.185546875,
-0.1368408203125,
-0.45947265625,
-0.21484375,
0.0950927734375,
-0.318603515625,
0.33935546875,
-0.31787109375,
-0.343994140625,
-1.107421875,
0.52392578125,
0.68212890625,
0.5087890625,
0.48583984375,
0.54541015625,
0.23974609375,
0.357177734375,
0.52197265625,
-0.25634765625,
0.1971435546875,
-0.476806640625,
0.806640625,
0.09576416015625,
-0.08697509765625,
-0.3271484375,
-0.3515625,
0.00846099853515625,
0.408203125,
-0.04669189453125,
-0.07366943359375,
-0.904296875,
0.1820068359375,
-0.020538330078125,
0.828125,
-0.454345703125,
-0.20068359375,
-0.06011962890625,
0.32666015625,
0.4716796875,
-0.728515625,
-0.20703125,
-0.7880859375,
0.53759765625,
0.26220703125,
-0.004955291748046875,
-0.29052734375,
-0.3154296875,
-0.58349609375,
-0.7958984375,
0.7060546875,
0.896484375,
-0.078369140625,
-0.110595703125,
-1.125,
0.7548828125,
0.16748046875,
-0.20166015625,
0.1624755859375,
0.03253173828125,
0.400390625,
-0.268310546875,
0.658203125,
-0.0079345703125,
-0.74365234375,
0.251953125,
-1.0380859375,
0.408935546875,
-0.255126953125,
0.28955078125,
-0.52001953125,
0.1143798828125,
-0.0462646484375,
0.30712890625,
-0.3232421875,
0.2734375,
-0.28955078125,
0.343505859375,
-1.1494140625,
-0.49755859375,
0.33642578125,
-0.352783203125,
-0.005237579345703125,
1.080078125,
-0.26123046875,
-0.53076171875,
0.1947021484375,
0.603515625,
-0.316650390625,
0.227783203125,
-0.381103515625,
0.261962890625,
-0.47998046875,
-0.20849609375,
-0.1922607421875,
-0.38037109375,
0.76611328125,
-0.2467041015625,
-0.46337890625,
-0.2198486328125,
-0.8896484375,
-0.0180816650390625,
-0.0110931396484375,
-0.9365234375,
0.479736328125,
0.005588531494140625,
-0.384521484375,
-0.052978515625,
-0.2078857421875,
-0.345703125,
-0.37451171875,
-0.25146484375,
-0.521484375,
0.2529296875,
0.76611328125,
1.2822265625,
0.1513671875,
-0.4091796875,
-0.038726806640625,
0.157958984375,
-0.0994873046875,
-0.5263671875,
0.0301513671875,
-0.307861328125,
-0.08135986328125,
-0.263916015625,
0.24169921875,
0.27587890625,
0.2216796875,
0.441650390625,
0.337890625,
0.38232421875,
0.41015625,
-0.3193359375,
1.2744140625,
0.107421875,
-0.94384765625,
-0.67333984375,
0.5,
-0.0201568603515625,
0.316162109375,
0.16845703125,
-0.72021484375,
-0.74853515625,
-0.90283203125,
0.2109375,
-0.68212890625,
-0.334716796875,
-0.83984375,
-0.404296875,
-0.7099609375,
0.2491455078125,
-0.434326171875,
-0.465576171875,
-0.0574951171875,
-1.2236328125,
0.06927490234375,
-0.716796875,
-0.483154296875,
-0.609375,
-0.25537109375,
-0.1873779296875,
1.1953125,
0.06341552734375,
0.295654296875,
-0.055023193359375,
-0.0435791015625,
0.259033203125,
-0.04718017578125,
-0.65185546875,
-0.64111328125,
-0.210693359375,
0.03387451171875,
0.1162109375,
0.00836181640625,
-0.5712890625,
0.74169921875,
-0.8095703125,
-0.06317138671875,
-0.3701171875,
-0.0672607421875,
-0.2052001953125,
-0.72998046875,
0.9384765625,
-0.498291015625,
0.2587890625,
-0.2010498046875,
0.546875,
0.8642578125,
-0.1456298828125,
-0.330078125,
-0.5390625,
-0.484130859375,
-1.26171875,
0.2763671875,
-0.445556640625,
0.262451171875,
-0.7421875,
-0.84033203125,
1.1025390625,
-0.677734375,
0.51171875,
1.1787109375,
0.06890869140625,
0.7060546875,
-0.53662109375,
0.89404296875,
0.7021484375,
-0.55126953125,
-0.03643798828125,
0.132080078125,
-0.611328125,
-0.093994140625,
-0.272705078125,
-1.1826171875,
-0.78466796875,
0.52978515625,
1.28515625,
-0.453857421875,
0.71728515625,
0.09112548828125,
-1.0771484375,
-0.56591796875,
1.021484375,
0.0516357421875,
0.337158203125,
0.82421875,
-0.321533203125,
-0.33251953125,
0.404296875,
-0.364501953125,
-0.40234375,
-0.5244140625,
1.10546875,
-0.26953125,
-0.51806640625,
0.62109375,
0.77783203125,
-1.1953125,
-0.62548828125,
-0.285888671875,
0.27880859375,
-0.3486328125,
-0.98779296875,
-0.211181640625,
0.56787109375,
-0.9912109375,
0.159912109375,
0.38525390625,
-0.296142578125,
0.59228515625,
0.1524658203125,
0.48291015625,
-0.50048828125,
0.494873046875,
0.5859375,
-0.375732421875,
-0.329833984375,
-0.73681640625,
-0.10308837890625,
0.0684814453125,
0.12091064453125,
0.822265625,
-0.416259765625,
0.168701171875,
0.2135009765625,
0.0538330078125,
0.80712890625,
-0.173828125,
-0.306640625,
0.3310546875,
-1.1103515625,
-0.7939453125,
-0.2239990234375,
0.2158203125,
-0.26708984375,
0.58154296875,
-0.68212890625,
0.00266265869140625,
-0.0865478515625,
0.328125,
-0.348876953125,
-0.884765625,
-0.001590728759765625,
-1.099609375,
-0.4443359375,
-0.69873046875,
-0.71728515625,
0.26220703125,
0.3330078125,
0.140625,
-0.76806640625,
0.244140625,
0.6806640625,
-0.52978515625,
0.767578125,
-0.623046875,
0.396728515625,
-0.26416015625,
-0.1217041015625,
-0.91455078125,
0.09063720703125,
-0.401123046875,
0.036376953125,
-0.5244140625,
0.497314453125,
-0.04730224609375,
0.529296875,
0.004871368408203125,
0.25830078125,
-0.3984375,
-0.358154296875,
-0.1947021484375,
0.2255859375,
-0.3984375,
0.642578125,
0.7529296875,
0.08697509765625,
-0.01666259765625,
-0.41650390625,
-0.424560546875,
-0.251708984375,
0.6240234375,
0.454345703125,
-0.29345703125,
0.26904296875,
-0.501953125,
0.1199951171875,
-1.1923828125,
0.324462890625,
-0.417724609375,
0.0689697265625,
-0.006687164306640625,
-0.205322265625,
0.6494140625,
1.466796875,
-0.354736328125,
0.361328125,
0.2034912109375,
0.1966552734375,
0.5654296875,
0.21435546875,
-0.0019855499267578125,
0.68896484375,
0.03143310546875,
-0.369140625,
-0.1878662109375,
0.1812744140625,
0.55029296875,
0.0650634765625,
-0.26953125,
-0.98095703125,
-1.01171875,
-0.58935546875,
0.07562255859375,
0.62890625,
0.316162109375,
-0.75732421875,
-0.2176513671875,
-0.192626953125,
-0.376708984375,
0.358154296875,
-1.3603515625,
-0.82568359375,
0.146484375,
0.2252197265625,
-0.3447265625,
0.2880859375,
-0.490478515625,
-0.2890625,
-0.049224853515625,
0.46484375,
-0.426513671875,
0.4052734375,
-0.009307861328125,
0.64453125,
0.01139068603515625,
-0.045989990234375,
0.2281494140625,
0.7724609375,
-0.70263671875,
-0.53271484375,
0.181640625,
1.169921875,
-0.019775390625,
0.0404052734375,
-0.72216796875,
0.2159423828125,
0.00836181640625,
0.09423828125,
-0.51416015625,
0.1851806640625,
-0.27734375,
0.623046875,
-1.373046875,
-0.27197265625,
0.06591796875,
0.268310546875,
0.173095703125,
-0.441650390625,
-0.54052734375,
1.0068359375,
1.2197265625,
-0.129638671875,
0.202392578125,
-0.12841796875,
0.61328125,
0.089599609375,
-0.0416259765625,
-0.46875,
0.389892578125,
0.349853515625,
0.69189453125,
-0.1435546875,
0.375244140625,
0.865234375,
0.271240234375,
-0.3232421875,
0.44287109375,
0.52197265625,
0.021087646484375,
-0.12457275390625,
-0.264404296875,
0.04638671875,
0.287109375,
-0.6640625,
0.347412109375,
-0.4814453125,
0.09765625,
-0.0799560546875,
-0.8046875,
0.90625,
-0.57763671875,
-0.2347412109375,
0.287841796875,
-0.455078125,
0.27587890625,
0.54736328125,
0.354248046875,
-0.10211181640625,
0.81103515625,
0.69482421875,
0.68408203125,
0.6298828125,
0.578125,
0.369140625,
-0.64501953125,
0.1849365234375,
0.2340087890625,
-0.28662109375,
-0.2154541015625,
-0.290283203125,
-1.0576171875,
0.65576171875,
-0.33740234375,
-0.469970703125,
0.348388671875,
-0.95751953125,
0.0187835693359375,
-0.280029296875,
0.8720703125,
-0.333984375,
0.47216796875,
0.422119140625,
-0.2183837890625,
-0.406494140625,
1.1591796875,
0.0181732177734375,
0.342041015625,
0.06243896484375,
0.50830078125,
0.30517578125,
1.2958984375,
0.71142578125,
0.0204315185546875,
0.36279296875,
0.7197265625,
-0.66015625,
-0.60302734375,
-0.1890869140625,
-0.208740234375,
0.09112548828125,
-0.576171875,
-0.06884765625,
-0.634765625,
0.5263671875,
0.262939453125,
-0.77587890625,
-0.405517578125,
0.10430908203125,
-0.9951171875,
0.21923828125,
0.67919921875,
0.361328125,
0.21826171875,
0.003017425537109375,
-0.269775390625,
-0.47509765625,
0.1387939453125,
-0.61767578125,
0.3310546875,
-0.7919921875,
-0.2225341796875,
-0.71240234375,
-0.62060546875,
-0.42236328125,
-0.266845703125,
-0.27099609375,
-1.14453125,
0.78271484375,
0.689453125,
0.51416015625,
0.48486328125,
-0.39111328125,
0.0618896484375,
0.74560546875,
0.7578125,
-0.07293701171875,
0.89013671875,
0.431396484375,
-0.0177001953125,
0.1217041015625,
-0.257568359375,
0.220703125,
-0.02642822265625,
0.2493896484375,
-0.383544921875,
0.4013671875,
-0.6171875,
-1.55078125,
0.07110595703125,
0.350830078125,
0.43701171875,
-0.4404296875,
-1.0263671875,
-0.459716796875,
-0.978515625,
-0.02227783203125,
-0.556640625,
0.7646484375,
-0.087890625,
0.1597900390625,
-0.273193359375,
-1.1552734375,
4.3046875,
1.1083984375,
1.1728515625,
0.142578125,
0.412109375,
1.3359375,
0.1282958984375,
-0.66943359375,
-0.328369140625,
-0.5927734375,
0.716796875,
-0.300537109375,
0.2210693359375,
0.53125,
0.0648193359375,
0.880859375,
-0.421630859375,
-0.0859375,
0.0006775856018066406,
-0.8876953125,
-0.8408203125,
0.14599609375,
-0.04510498046875,
0.3955078125,
-0.0660400390625,
0.21630859375,
0.75732421875,
-0.97216796875,
-0.1871337890625,
-0.30517578125,
0.23779296875,
-0.880859375,
1.044921875,
-0.30029296875,
-0.14013671875,
0.701171875,
0.133544921875,
-0.517578125,
-0.61669921875,
0.20361328125,
-0.08868408203125,
0.496337890625,
0.66552734375,
-1.0556640625,
-0.1649169921875,
0.40185546875,
-0.51806640625,
0.307861328125,
-0.126220703125,
-0.6494140625,
0.6884765625,
-0.392822265625,
0.333251953125,
-0.407470703125,
-1.1142578125,
0.52490234375,
0.286376953125,
0.231689453125,
-0.42138671875,
0.28076171875,
0.2225341796875,
0.40966796875,
0.038482666015625,
0.54736328125,
-0.859375,
0.479248046875,
-0.1441650390625,
0.301025390625,
-0.38671875,
-0.031890869140625,
-0.90771484375,
-0.51123046875,
-0.3291015625,
-0.29248046875,
0.379150390625,
0.2763671875,
-0.1787109375,
0.623046875,
0.6748046875,
-0.496337890625,
0.25,
-0.295166015625,
-0.068603515625,
-0.38916015625,
0.343994140625,
0.8115234375,
-0.44775390625,
-0.56103515625,
-0.1644287109375,
0.6357421875,
0.58447265625,
0.71435546875,
0.358642578125,
-0.56982421875,
-0.1846923828125
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Phoenix has a string s consisting of lowercase Latin letters. He wants to distribute all the letters of his string into k non-empty strings a_1, a_2, ..., a_k such that every letter of s goes to exactly one of the strings a_i. The strings a_i do not need to be substrings of s. Phoenix can distribute letters of s and rearrange the letters within each string a_i however he wants.
For example, if s = baba and k=2, Phoenix may distribute the letters of his string in many ways, such as:
* ba and ba
* a and abb
* ab and ab
* aa and bb
But these ways are invalid:
* baa and ba
* b and ba
* baba and empty string (a_i should be non-empty)
Phoenix wants to distribute the letters of his string s into k strings a_1, a_2, ..., a_k to minimize the lexicographically maximum string among them, i. e. minimize max(a_1, a_2, ..., a_k). Help him find the optimal distribution and print the minimal possible value of max(a_1, a_2, ..., a_k).
String x is lexicographically less than string y if either x is a prefix of y and x ≠ y, or there exists an index i (1 ≤ i ≤ min(|x|, |y|)) such that x_i < y_i and for every j (1 ≤ j < i) x_j = y_j. Here |x| denotes the length of the string x.
Input
The input consists of multiple test cases. The first line contains an integer t (1 ≤ t ≤ 1000) — the number of test cases. Each test case consists of two lines.
The first line of each test case consists of two integers n and k (1 ≤ k ≤ n ≤ 10^5) — the length of string s and the number of non-empty strings, into which Phoenix wants to distribute letters of s, respectively.
The second line of each test case contains a string s of length n consisting only of lowercase Latin letters.
It is guaranteed that the sum of n over all test cases is ≤ 10^5.
Output
Print t answers — one per test case. The i-th answer should be the minimal possible value of max(a_1, a_2, ..., a_k) in the i-th test case.
Example
Input
6
4 2
baba
5 2
baacb
5 3
baacb
5 3
aaaaa
6 4
aaxxzz
7 1
phoenix
Output
ab
abbc
b
aa
x
ehinopx
Note
In the first test case, one optimal solution is to distribute baba into ab and ab.
In the second test case, one optimal solution is to distribute baacb into abbc and a.
In the third test case, one optimal solution is to distribute baacb into ac, ab, and b.
In the fourth test case, one optimal solution is to distribute aaaaa into aa, aa, and a.
In the fifth test case, one optimal solution is to distribute aaxxzz into az, az, x, and x.
In the sixth test case, one optimal solution is to distribute phoenix into ehinopx.
Tags: constructive algorithms, greedy, sortings, strings
Correct Solution:
```
#ライブラリインポート
from collections import defaultdict
con = 10 ** 9 + 7
#入力受け取り
def getlist():
return list(map(int, input().split()))
#処理内容
def main():
T = int(input())
for i in range(T):
N, K = getlist()
s = sorted(list(input()))
#面倒
if N == K:
print(s[-1])
elif s[0] != s[K - 1]:
print(s[K - 1])
elif s[0] == s[-1]:
var = 0
if N % K == 0:
var = int(N // K)
else:
var = int(N // K) + 1
ans = s[0] * var
print(ans)
elif s[K] == s[-1]:
ans = s[0]
var = 0
if (N - K) % K == 0:
var = int(N // K) - 1
else:
var = int(N // K)
ans += var * s[-1]
print(ans)
else:
ans = s[0]
for j in range(K, N):
ans += s[j]
print(ans)
if __name__ == '__main__':
main()
```
| 10,932 | [
0.2105712890625,
0.3369140625,
0.422607421875,
0.4091796875,
-0.60986328125,
-0.57666015625,
-0.06549072265625,
0.10791015625,
-0.046966552734375,
0.88818359375,
1.0712890625,
0.11895751953125,
0.0626220703125,
-0.85302734375,
-0.83837890625,
0.361328125,
-0.65673828125,
-0.55322265625,
-0.351318359375,
-0.1859130859375,
0.171875,
0.1126708984375,
-1.6328125,
-0.3173828125,
-0.2313232421875,
0.90869140625,
0.2230224609375,
0.020263671875,
1.14453125,
0.87744140625,
0.0523681640625,
-0.41552734375,
0.71630859375,
-1.197265625,
-0.360107421875,
-0.5517578125,
0.82421875,
-0.366455078125,
-0.380615234375,
-0.8212890625,
0.5849609375,
-0.88720703125,
0.458251953125,
-0.5791015625,
-0.849609375,
-0.10546875,
-0.03204345703125,
-0.537109375,
-0.55859375,
-0.3837890625,
0.07647705078125,
-0.349853515625,
0.64794921875,
-0.51171875,
0.1121826171875,
0.08734130859375,
0.08648681640625,
-0.043487548828125,
-0.779296875,
0.2255859375,
0.01116180419921875,
0.233642578125,
-0.44189453125,
-0.75927734375,
-0.1171875,
0.28857421875,
-0.08758544921875,
-0.009033203125,
0.1715087890625,
-1.1220703125,
-0.4677734375,
0.29736328125,
-0.444580078125,
-0.72802734375,
-0.390380859375,
0.019317626953125,
0.1116943359375,
-0.13134765625,
-0.5615234375,
0.7802734375,
0.1644287109375,
0.64208984375,
0.22265625,
0.00731658935546875,
-0.6845703125,
-0.53076171875,
0.10784912109375,
0.397705078125,
0.053375244140625,
0.1976318359375,
0.016387939453125,
0.47265625,
-0.6474609375,
0.16845703125,
0.376220703125,
0.896484375,
-0.036773681640625,
0.4501953125,
0.15185546875,
0.40283203125,
1.1484375,
0.80859375,
-0.578125,
1.1240234375,
-0.6015625,
0.194091796875,
-0.1317138671875,
-0.19384765625,
-0.282958984375,
-0.435791015625,
-0.263427734375,
0.0269622802734375,
0.345947265625,
0.380126953125,
-0.22998046875,
0.73779296875,
-0.16064453125,
0.7626953125,
-0.86572265625,
-0.032379150390625,
0.52587890625,
0.0657958984375,
0.65087890625,
-0.263916015625,
-0.045654296875,
-0.2027587890625,
-0.56982421875,
0.8173828125,
-0.78076171875,
-0.061248779296875,
0.5263671875,
0.09735107421875,
-0.5263671875,
0.471923828125,
0.033233642578125,
0.47705078125,
0.032379150390625,
0.5458984375,
0.91455078125,
-0.2235107421875,
0.6904296875,
-0.21875,
0.0430908203125,
1.5068359375,
0.122802734375,
-0.165771484375,
0.66357421875,
0.02069091796875,
-0.595703125,
0.9033203125,
-0.80224609375,
0.470703125,
0.12841796875,
0.400634765625,
-0.232421875,
0.087890625,
-0.01099395751953125,
0.814453125,
0.27001953125,
0.302734375,
-0.7021484375,
-0.173583984375,
-0.28515625,
0.822265625,
-0.377685546875,
0.9365234375,
-0.865234375,
-0.4228515625,
-0.12255859375,
-0.426025390625,
-0.1258544921875,
-0.3642578125,
-0.007709503173828125,
0.8779296875,
0.293701171875,
0.79833984375,
0.72509765625,
-0.66015625,
0.487548828125,
0.278076171875,
-0.1226806640625,
0.419189453125,
0.265380859375,
0.61669921875,
0.331298828125,
0.157958984375,
-0.053619384765625,
-0.36865234375,
-0.69287109375,
-0.63671875,
0.2298583984375,
0.6142578125,
-0.2374267578125,
0.290771484375,
-0.057830810546875,
0.1666259765625,
-0.732421875,
-0.263916015625,
-0.090576171875,
-1.0029296875,
-0.3369140625,
0.409423828125,
-0.01435089111328125,
0.2626953125,
-0.70556640625,
-0.49560546875,
0.30322265625,
1.0771484375,
-0.2054443359375,
0.07952880859375,
0.459716796875,
0.25830078125,
-0.2176513671875,
0.34033203125,
0.04656982421875,
-0.11737060546875,
-0.58154296875,
0.6845703125,
-0.61376953125,
0.029754638671875,
-0.08563232421875,
0.904296875,
0.2724609375,
0.23388671875,
-0.5478515625,
-0.0943603515625,
0.5625,
1.2509765625,
-0.1165771484375,
0.50048828125,
0.52685546875,
0.826171875,
0.437744140625,
0.767578125,
0.478515625,
0.5361328125,
0.6748046875,
0.736328125,
0.0204315185546875,
0.217041015625,
0.141845703125,
0.466064453125,
0.417236328125,
0.444091796875,
0.0927734375,
0.57568359375,
-0.412109375,
0.373046875,
-0.93701171875,
0.1787109375,
-0.14892578125,
1.095703125,
0.37353515625,
0.4150390625,
-0.400634765625,
-0.363037109375,
0.292236328125,
0.79052734375,
-1.0751953125,
-0.68994140625,
-0.11236572265625,
0.020904541015625,
0.20849609375,
-0.08203125,
0.345703125,
0.361083984375,
0.75732421875,
-0.06243896484375,
-0.28369140625,
-0.2958984375,
-1.22265625,
-0.9765625,
-0.5849609375,
-0.462890625,
-0.486328125,
0.14990234375,
0.6044921875,
-1.06640625,
0.169677734375,
-0.56298828125,
0.103515625,
-0.00547027587890625,
-0.89404296875,
0.315185546875,
0.060699462890625,
0.8564453125,
-0.8095703125,
0.6669921875,
-0.09283447265625,
1.029296875,
-0.84716796875,
-0.35400390625,
-0.2734375,
-0.4599609375,
0.486572265625,
0.1534423828125,
0.1402587890625,
-0.0239410400390625,
-0.56591796875,
-0.99755859375,
-0.291748046875,
-0.055938720703125,
-0.486328125,
0.298828125,
-0.79931640625,
0.99853515625,
0.546875,
-0.73779296875,
0.418212890625,
1.0712890625,
-0.755859375,
0.419677734375,
0.30126953125,
-0.0215911865234375,
-0.70263671875,
1.2109375,
0.44482421875,
0.333251953125,
-0.58056640625,
-0.74755859375,
-0.2178955078125,
0.34814453125,
0.082275390625,
-0.64599609375,
0.0263824462890625,
0.9462890625,
-0.2076416015625,
-1.373046875,
0.59521484375,
-0.86474609375,
-0.74658203125,
-0.292724609375,
-0.53173828125,
0.6337890625,
0.5673828125,
0.258544921875,
-0.47607421875,
-0.220458984375,
0.01131439208984375,
0.634765625,
0.120361328125,
-0.7333984375,
-0.01515960693359375,
0.55615234375,
-0.1871337890625,
-0.057464599609375,
0.3115234375,
-0.487060546875,
-0.234130859375,
-0.04412841796875,
-0.037506103515625,
0.7783203125,
0.179931640625,
0.443115234375,
0.2978515625,
0.5986328125,
-0.892578125,
-0.17919921875,
-0.14697265625,
0.57177734375,
0.270263671875,
0.359375,
0.443115234375,
-0.19775390625,
-0.77197265625,
-1.4169921875,
0.289306640625,
0.340087890625,
0.64013671875,
-0.857421875,
0.88525390625,
0.256103515625,
-0.63427734375,
0.51708984375,
-0.8076171875,
0.1676025390625,
1.0986328125,
-0.48681640625,
0.84521484375,
-0.81689453125,
-0.046722412109375,
0.1475830078125,
0.11431884765625,
0.41259765625,
0.476318359375,
0.60546875,
-0.185546875,
-0.1368408203125,
-0.45947265625,
-0.21484375,
0.0950927734375,
-0.318603515625,
0.33935546875,
-0.31787109375,
-0.343994140625,
-1.107421875,
0.52392578125,
0.68212890625,
0.5087890625,
0.48583984375,
0.54541015625,
0.23974609375,
0.357177734375,
0.52197265625,
-0.25634765625,
0.1971435546875,
-0.476806640625,
0.806640625,
0.09576416015625,
-0.08697509765625,
-0.3271484375,
-0.3515625,
0.00846099853515625,
0.408203125,
-0.04669189453125,
-0.07366943359375,
-0.904296875,
0.1820068359375,
-0.020538330078125,
0.828125,
-0.454345703125,
-0.20068359375,
-0.06011962890625,
0.32666015625,
0.4716796875,
-0.728515625,
-0.20703125,
-0.7880859375,
0.53759765625,
0.26220703125,
-0.004955291748046875,
-0.29052734375,
-0.3154296875,
-0.58349609375,
-0.7958984375,
0.7060546875,
0.896484375,
-0.078369140625,
-0.110595703125,
-1.125,
0.7548828125,
0.16748046875,
-0.20166015625,
0.1624755859375,
0.03253173828125,
0.400390625,
-0.268310546875,
0.658203125,
-0.0079345703125,
-0.74365234375,
0.251953125,
-1.0380859375,
0.408935546875,
-0.255126953125,
0.28955078125,
-0.52001953125,
0.1143798828125,
-0.0462646484375,
0.30712890625,
-0.3232421875,
0.2734375,
-0.28955078125,
0.343505859375,
-1.1494140625,
-0.49755859375,
0.33642578125,
-0.352783203125,
-0.005237579345703125,
1.080078125,
-0.26123046875,
-0.53076171875,
0.1947021484375,
0.603515625,
-0.316650390625,
0.227783203125,
-0.381103515625,
0.261962890625,
-0.47998046875,
-0.20849609375,
-0.1922607421875,
-0.38037109375,
0.76611328125,
-0.2467041015625,
-0.46337890625,
-0.2198486328125,
-0.8896484375,
-0.0180816650390625,
-0.0110931396484375,
-0.9365234375,
0.479736328125,
0.005588531494140625,
-0.384521484375,
-0.052978515625,
-0.2078857421875,
-0.345703125,
-0.37451171875,
-0.25146484375,
-0.521484375,
0.2529296875,
0.76611328125,
1.2822265625,
0.1513671875,
-0.4091796875,
-0.038726806640625,
0.157958984375,
-0.0994873046875,
-0.5263671875,
0.0301513671875,
-0.307861328125,
-0.08135986328125,
-0.263916015625,
0.24169921875,
0.27587890625,
0.2216796875,
0.441650390625,
0.337890625,
0.38232421875,
0.41015625,
-0.3193359375,
1.2744140625,
0.107421875,
-0.94384765625,
-0.67333984375,
0.5,
-0.0201568603515625,
0.316162109375,
0.16845703125,
-0.72021484375,
-0.74853515625,
-0.90283203125,
0.2109375,
-0.68212890625,
-0.334716796875,
-0.83984375,
-0.404296875,
-0.7099609375,
0.2491455078125,
-0.434326171875,
-0.465576171875,
-0.0574951171875,
-1.2236328125,
0.06927490234375,
-0.716796875,
-0.483154296875,
-0.609375,
-0.25537109375,
-0.1873779296875,
1.1953125,
0.06341552734375,
0.295654296875,
-0.055023193359375,
-0.0435791015625,
0.259033203125,
-0.04718017578125,
-0.65185546875,
-0.64111328125,
-0.210693359375,
0.03387451171875,
0.1162109375,
0.00836181640625,
-0.5712890625,
0.74169921875,
-0.8095703125,
-0.06317138671875,
-0.3701171875,
-0.0672607421875,
-0.2052001953125,
-0.72998046875,
0.9384765625,
-0.498291015625,
0.2587890625,
-0.2010498046875,
0.546875,
0.8642578125,
-0.1456298828125,
-0.330078125,
-0.5390625,
-0.484130859375,
-1.26171875,
0.2763671875,
-0.445556640625,
0.262451171875,
-0.7421875,
-0.84033203125,
1.1025390625,
-0.677734375,
0.51171875,
1.1787109375,
0.06890869140625,
0.7060546875,
-0.53662109375,
0.89404296875,
0.7021484375,
-0.55126953125,
-0.03643798828125,
0.132080078125,
-0.611328125,
-0.093994140625,
-0.272705078125,
-1.1826171875,
-0.78466796875,
0.52978515625,
1.28515625,
-0.453857421875,
0.71728515625,
0.09112548828125,
-1.0771484375,
-0.56591796875,
1.021484375,
0.0516357421875,
0.337158203125,
0.82421875,
-0.321533203125,
-0.33251953125,
0.404296875,
-0.364501953125,
-0.40234375,
-0.5244140625,
1.10546875,
-0.26953125,
-0.51806640625,
0.62109375,
0.77783203125,
-1.1953125,
-0.62548828125,
-0.285888671875,
0.27880859375,
-0.3486328125,
-0.98779296875,
-0.211181640625,
0.56787109375,
-0.9912109375,
0.159912109375,
0.38525390625,
-0.296142578125,
0.59228515625,
0.1524658203125,
0.48291015625,
-0.50048828125,
0.494873046875,
0.5859375,
-0.375732421875,
-0.329833984375,
-0.73681640625,
-0.10308837890625,
0.0684814453125,
0.12091064453125,
0.822265625,
-0.416259765625,
0.168701171875,
0.2135009765625,
0.0538330078125,
0.80712890625,
-0.173828125,
-0.306640625,
0.3310546875,
-1.1103515625,
-0.7939453125,
-0.2239990234375,
0.2158203125,
-0.26708984375,
0.58154296875,
-0.68212890625,
0.00266265869140625,
-0.0865478515625,
0.328125,
-0.348876953125,
-0.884765625,
-0.001590728759765625,
-1.099609375,
-0.4443359375,
-0.69873046875,
-0.71728515625,
0.26220703125,
0.3330078125,
0.140625,
-0.76806640625,
0.244140625,
0.6806640625,
-0.52978515625,
0.767578125,
-0.623046875,
0.396728515625,
-0.26416015625,
-0.1217041015625,
-0.91455078125,
0.09063720703125,
-0.401123046875,
0.036376953125,
-0.5244140625,
0.497314453125,
-0.04730224609375,
0.529296875,
0.004871368408203125,
0.25830078125,
-0.3984375,
-0.358154296875,
-0.1947021484375,
0.2255859375,
-0.3984375,
0.642578125,
0.7529296875,
0.08697509765625,
-0.01666259765625,
-0.41650390625,
-0.424560546875,
-0.251708984375,
0.6240234375,
0.454345703125,
-0.29345703125,
0.26904296875,
-0.501953125,
0.1199951171875,
-1.1923828125,
0.324462890625,
-0.417724609375,
0.0689697265625,
-0.006687164306640625,
-0.205322265625,
0.6494140625,
1.466796875,
-0.354736328125,
0.361328125,
0.2034912109375,
0.1966552734375,
0.5654296875,
0.21435546875,
-0.0019855499267578125,
0.68896484375,
0.03143310546875,
-0.369140625,
-0.1878662109375,
0.1812744140625,
0.55029296875,
0.0650634765625,
-0.26953125,
-0.98095703125,
-1.01171875,
-0.58935546875,
0.07562255859375,
0.62890625,
0.316162109375,
-0.75732421875,
-0.2176513671875,
-0.192626953125,
-0.376708984375,
0.358154296875,
-1.3603515625,
-0.82568359375,
0.146484375,
0.2252197265625,
-0.3447265625,
0.2880859375,
-0.490478515625,
-0.2890625,
-0.049224853515625,
0.46484375,
-0.426513671875,
0.4052734375,
-0.009307861328125,
0.64453125,
0.01139068603515625,
-0.045989990234375,
0.2281494140625,
0.7724609375,
-0.70263671875,
-0.53271484375,
0.181640625,
1.169921875,
-0.019775390625,
0.0404052734375,
-0.72216796875,
0.2159423828125,
0.00836181640625,
0.09423828125,
-0.51416015625,
0.1851806640625,
-0.27734375,
0.623046875,
-1.373046875,
-0.27197265625,
0.06591796875,
0.268310546875,
0.173095703125,
-0.441650390625,
-0.54052734375,
1.0068359375,
1.2197265625,
-0.129638671875,
0.202392578125,
-0.12841796875,
0.61328125,
0.089599609375,
-0.0416259765625,
-0.46875,
0.389892578125,
0.349853515625,
0.69189453125,
-0.1435546875,
0.375244140625,
0.865234375,
0.271240234375,
-0.3232421875,
0.44287109375,
0.52197265625,
0.021087646484375,
-0.12457275390625,
-0.264404296875,
0.04638671875,
0.287109375,
-0.6640625,
0.347412109375,
-0.4814453125,
0.09765625,
-0.0799560546875,
-0.8046875,
0.90625,
-0.57763671875,
-0.2347412109375,
0.287841796875,
-0.455078125,
0.27587890625,
0.54736328125,
0.354248046875,
-0.10211181640625,
0.81103515625,
0.69482421875,
0.68408203125,
0.6298828125,
0.578125,
0.369140625,
-0.64501953125,
0.1849365234375,
0.2340087890625,
-0.28662109375,
-0.2154541015625,
-0.290283203125,
-1.0576171875,
0.65576171875,
-0.33740234375,
-0.469970703125,
0.348388671875,
-0.95751953125,
0.0187835693359375,
-0.280029296875,
0.8720703125,
-0.333984375,
0.47216796875,
0.422119140625,
-0.2183837890625,
-0.406494140625,
1.1591796875,
0.0181732177734375,
0.342041015625,
0.06243896484375,
0.50830078125,
0.30517578125,
1.2958984375,
0.71142578125,
0.0204315185546875,
0.36279296875,
0.7197265625,
-0.66015625,
-0.60302734375,
-0.1890869140625,
-0.208740234375,
0.09112548828125,
-0.576171875,
-0.06884765625,
-0.634765625,
0.5263671875,
0.262939453125,
-0.77587890625,
-0.405517578125,
0.10430908203125,
-0.9951171875,
0.21923828125,
0.67919921875,
0.361328125,
0.21826171875,
0.003017425537109375,
-0.269775390625,
-0.47509765625,
0.1387939453125,
-0.61767578125,
0.3310546875,
-0.7919921875,
-0.2225341796875,
-0.71240234375,
-0.62060546875,
-0.42236328125,
-0.266845703125,
-0.27099609375,
-1.14453125,
0.78271484375,
0.689453125,
0.51416015625,
0.48486328125,
-0.39111328125,
0.0618896484375,
0.74560546875,
0.7578125,
-0.07293701171875,
0.89013671875,
0.431396484375,
-0.0177001953125,
0.1217041015625,
-0.257568359375,
0.220703125,
-0.02642822265625,
0.2493896484375,
-0.383544921875,
0.4013671875,
-0.6171875,
-1.55078125,
0.07110595703125,
0.350830078125,
0.43701171875,
-0.4404296875,
-1.0263671875,
-0.459716796875,
-0.978515625,
-0.02227783203125,
-0.556640625,
0.7646484375,
-0.087890625,
0.1597900390625,
-0.273193359375,
-1.1552734375,
4.3046875,
1.1083984375,
1.1728515625,
0.142578125,
0.412109375,
1.3359375,
0.1282958984375,
-0.66943359375,
-0.328369140625,
-0.5927734375,
0.716796875,
-0.300537109375,
0.2210693359375,
0.53125,
0.0648193359375,
0.880859375,
-0.421630859375,
-0.0859375,
0.0006775856018066406,
-0.8876953125,
-0.8408203125,
0.14599609375,
-0.04510498046875,
0.3955078125,
-0.0660400390625,
0.21630859375,
0.75732421875,
-0.97216796875,
-0.1871337890625,
-0.30517578125,
0.23779296875,
-0.880859375,
1.044921875,
-0.30029296875,
-0.14013671875,
0.701171875,
0.133544921875,
-0.517578125,
-0.61669921875,
0.20361328125,
-0.08868408203125,
0.496337890625,
0.66552734375,
-1.0556640625,
-0.1649169921875,
0.40185546875,
-0.51806640625,
0.307861328125,
-0.126220703125,
-0.6494140625,
0.6884765625,
-0.392822265625,
0.333251953125,
-0.407470703125,
-1.1142578125,
0.52490234375,
0.286376953125,
0.231689453125,
-0.42138671875,
0.28076171875,
0.2225341796875,
0.40966796875,
0.038482666015625,
0.54736328125,
-0.859375,
0.479248046875,
-0.1441650390625,
0.301025390625,
-0.38671875,
-0.031890869140625,
-0.90771484375,
-0.51123046875,
-0.3291015625,
-0.29248046875,
0.379150390625,
0.2763671875,
-0.1787109375,
0.623046875,
0.6748046875,
-0.496337890625,
0.25,
-0.295166015625,
-0.068603515625,
-0.38916015625,
0.343994140625,
0.8115234375,
-0.44775390625,
-0.56103515625,
-0.1644287109375,
0.6357421875,
0.58447265625,
0.71435546875,
0.358642578125,
-0.56982421875,
-0.1846923828125
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Phoenix has a string s consisting of lowercase Latin letters. He wants to distribute all the letters of his string into k non-empty strings a_1, a_2, ..., a_k such that every letter of s goes to exactly one of the strings a_i. The strings a_i do not need to be substrings of s. Phoenix can distribute letters of s and rearrange the letters within each string a_i however he wants.
For example, if s = baba and k=2, Phoenix may distribute the letters of his string in many ways, such as:
* ba and ba
* a and abb
* ab and ab
* aa and bb
But these ways are invalid:
* baa and ba
* b and ba
* baba and empty string (a_i should be non-empty)
Phoenix wants to distribute the letters of his string s into k strings a_1, a_2, ..., a_k to minimize the lexicographically maximum string among them, i. e. minimize max(a_1, a_2, ..., a_k). Help him find the optimal distribution and print the minimal possible value of max(a_1, a_2, ..., a_k).
String x is lexicographically less than string y if either x is a prefix of y and x ≠ y, or there exists an index i (1 ≤ i ≤ min(|x|, |y|)) such that x_i < y_i and for every j (1 ≤ j < i) x_j = y_j. Here |x| denotes the length of the string x.
Input
The input consists of multiple test cases. The first line contains an integer t (1 ≤ t ≤ 1000) — the number of test cases. Each test case consists of two lines.
The first line of each test case consists of two integers n and k (1 ≤ k ≤ n ≤ 10^5) — the length of string s and the number of non-empty strings, into which Phoenix wants to distribute letters of s, respectively.
The second line of each test case contains a string s of length n consisting only of lowercase Latin letters.
It is guaranteed that the sum of n over all test cases is ≤ 10^5.
Output
Print t answers — one per test case. The i-th answer should be the minimal possible value of max(a_1, a_2, ..., a_k) in the i-th test case.
Example
Input
6
4 2
baba
5 2
baacb
5 3
baacb
5 3
aaaaa
6 4
aaxxzz
7 1
phoenix
Output
ab
abbc
b
aa
x
ehinopx
Note
In the first test case, one optimal solution is to distribute baba into ab and ab.
In the second test case, one optimal solution is to distribute baacb into abbc and a.
In the third test case, one optimal solution is to distribute baacb into ac, ab, and b.
In the fourth test case, one optimal solution is to distribute aaaaa into aa, aa, and a.
In the fifth test case, one optimal solution is to distribute aaxxzz into az, az, x, and x.
In the sixth test case, one optimal solution is to distribute phoenix into ehinopx.
Submitted Solution:
```
import math
t=int(input())
def als(A):
if len(list(set(list(A))))==1:
return True
return False
for _ in range(t):
n,k=list(map(int,input().split()))
s=input()
ss=s
ss=list(ss)
ss.sort()
ss=''.join(ss)
bb=list(set(list(ss)))
bb=''.join(bb)
a=[0]*26
for x in s:
a[ord(x)-97]+=1
tt=[]
idx=[]
for i in range(26):
if a[i]!=0:
tt.append(a[i])
idx.append(i)
if tt[0]<k:
print(ss[k-1])
elif als(ss[k:]):
res=ss[0]
val=math.ceil(len(ss[k:])/k)*ss[k]
print(res+val)
else:
print(ss[0]+ss[k:])
```
Yes
| 10,933 | [
0.29248046875,
0.30419921875,
0.43798828125,
0.275390625,
-0.609375,
-0.469970703125,
-0.186279296875,
0.1416015625,
-0.07720947265625,
0.87939453125,
0.9443359375,
0.1571044921875,
0.043212890625,
-0.84912109375,
-0.8251953125,
0.267578125,
-0.70166015625,
-0.52783203125,
-0.367919921875,
-0.26025390625,
0.1336669921875,
0.0865478515625,
-1.58203125,
-0.281005859375,
-0.310302734375,
0.82666015625,
0.1861572265625,
-0.043304443359375,
1.111328125,
0.7841796875,
0.01898193359375,
-0.355712890625,
0.61181640625,
-1.0869140625,
-0.27783203125,
-0.6708984375,
0.85009765625,
-0.418701171875,
-0.4501953125,
-0.7626953125,
0.49267578125,
-0.8076171875,
0.51708984375,
-0.61279296875,
-0.9814453125,
-0.1126708984375,
-0.1331787109375,
-0.41064453125,
-0.5654296875,
-0.373779296875,
0.0968017578125,
-0.38720703125,
0.60693359375,
-0.51318359375,
0.1279296875,
0.23486328125,
0.0335693359375,
-0.05841064453125,
-0.82470703125,
0.1536865234375,
0.1656494140625,
0.315673828125,
-0.380859375,
-0.74755859375,
-0.17724609375,
0.255859375,
-0.077880859375,
-0.010223388671875,
0.1444091796875,
-0.86962890625,
-0.4150390625,
0.21826171875,
-0.38623046875,
-0.5830078125,
-0.48681640625,
0.1240234375,
0.1583251953125,
-0.158203125,
-0.6650390625,
0.7998046875,
0.074951171875,
0.755859375,
0.278564453125,
0.01378631591796875,
-0.71923828125,
-0.48095703125,
0.21044921875,
0.36962890625,
0.1439208984375,
0.1390380859375,
0.08038330078125,
0.434814453125,
-0.63818359375,
0.240234375,
0.392822265625,
0.7294921875,
-0.12445068359375,
0.399169921875,
0.1595458984375,
0.392333984375,
1.1328125,
0.751953125,
-0.43603515625,
1.1767578125,
-0.642578125,
0.1923828125,
-0.2205810546875,
-0.2489013671875,
-0.2142333984375,
-0.380859375,
-0.160400390625,
-0.0200653076171875,
0.3349609375,
0.33251953125,
-0.36962890625,
0.6708984375,
-0.08544921875,
0.765625,
-0.9130859375,
-0.046295166015625,
0.5693359375,
0.06024169921875,
0.5576171875,
-0.1923828125,
0.054931640625,
-0.2259521484375,
-0.59423828125,
0.74560546875,
-0.7216796875,
-0.0679931640625,
0.5927734375,
0.09130859375,
-0.4970703125,
0.408447265625,
0.04827880859375,
0.4482421875,
0.06756591796875,
0.50732421875,
0.89501953125,
-0.1824951171875,
0.68505859375,
-0.1490478515625,
0.04620361328125,
1.515625,
0.1470947265625,
-0.283935546875,
0.5654296875,
0.0716552734375,
-0.58740234375,
0.87841796875,
-0.8251953125,
0.58544921875,
0.06494140625,
0.31787109375,
-0.22216796875,
0.08642578125,
0.0099639892578125,
0.63525390625,
0.4013671875,
0.2425537109375,
-0.638671875,
-0.082763671875,
-0.3427734375,
0.8720703125,
-0.35400390625,
0.8466796875,
-0.74609375,
-0.416015625,
-0.07958984375,
-0.38671875,
-0.0389404296875,
-0.349365234375,
0.058349609375,
0.8896484375,
0.2252197265625,
0.8349609375,
0.8154296875,
-0.669921875,
0.38623046875,
0.33251953125,
-0.213623046875,
0.339111328125,
0.284912109375,
0.6904296875,
0.4306640625,
0.223876953125,
0.004062652587890625,
-0.345703125,
-0.6591796875,
-0.6708984375,
0.175537109375,
0.6083984375,
-0.29052734375,
0.263916015625,
-0.1661376953125,
0.1661376953125,
-0.6904296875,
-0.2259521484375,
-0.05999755859375,
-1.0146484375,
-0.334716796875,
0.412353515625,
-0.09930419921875,
0.2491455078125,
-0.7109375,
-0.44677734375,
0.203857421875,
1.0546875,
-0.11505126953125,
0.057037353515625,
0.432861328125,
0.4228515625,
-0.2364501953125,
0.25439453125,
0.07244873046875,
-0.1439208984375,
-0.53173828125,
0.60888671875,
-0.5625,
0.03643798828125,
-0.10882568359375,
0.90478515625,
0.25390625,
0.2489013671875,
-0.5830078125,
-0.2117919921875,
0.471435546875,
1.310546875,
-0.1634521484375,
0.56103515625,
0.54345703125,
0.88427734375,
0.525390625,
0.78466796875,
0.456298828125,
0.45751953125,
0.74853515625,
0.71484375,
-0.12347412109375,
0.287353515625,
0.19970703125,
0.5009765625,
0.51123046875,
0.54052734375,
0.10540771484375,
0.5380859375,
-0.34033203125,
0.34326171875,
-0.83935546875,
0.2066650390625,
-0.1875,
1.076171875,
0.243896484375,
0.51171875,
-0.364013671875,
-0.327392578125,
0.32763671875,
0.744140625,
-1.08203125,
-0.74755859375,
-0.153076171875,
-0.0219573974609375,
0.2080078125,
-0.00814056396484375,
0.287841796875,
0.348388671875,
0.72119140625,
-0.07415771484375,
-0.254638671875,
-0.327392578125,
-1.146484375,
-0.9599609375,
-0.76318359375,
-0.38232421875,
-0.53466796875,
0.1475830078125,
0.513671875,
-0.984375,
0.06158447265625,
-0.66796875,
0.11029052734375,
-0.06292724609375,
-0.71875,
0.404052734375,
0.1749267578125,
0.875,
-0.82958984375,
0.56591796875,
0.03155517578125,
1.0146484375,
-0.92529296875,
-0.304931640625,
-0.361328125,
-0.498779296875,
0.49853515625,
0.07379150390625,
0.2196044921875,
0.061065673828125,
-0.55810546875,
-0.95361328125,
-0.2308349609375,
0.08447265625,
-0.48095703125,
0.2529296875,
-0.77001953125,
0.9970703125,
0.46484375,
-0.7158203125,
0.369384765625,
1.0166015625,
-0.78515625,
0.399169921875,
0.281005859375,
-0.08807373046875,
-0.662109375,
1.2587890625,
0.40234375,
0.33544921875,
-0.5380859375,
-0.7080078125,
-0.176513671875,
0.2841796875,
0.1531982421875,
-0.77978515625,
0.004367828369140625,
0.9033203125,
-0.12335205078125,
-1.34375,
0.62158203125,
-0.99658203125,
-0.7421875,
-0.256591796875,
-0.626953125,
0.68212890625,
0.619140625,
0.350830078125,
-0.36865234375,
-0.28076171875,
-0.0579833984375,
0.6171875,
0.170654296875,
-0.8515625,
-0.07708740234375,
0.6005859375,
-0.16162109375,
0.032501220703125,
0.261474609375,
-0.46728515625,
-0.2041015625,
-0.01503753662109375,
-0.0958251953125,
0.83251953125,
0.151611328125,
0.4443359375,
0.2364501953125,
0.53955078125,
-0.89404296875,
-0.09698486328125,
-0.162109375,
0.5927734375,
0.331298828125,
0.499267578125,
0.50634765625,
-0.10491943359375,
-0.806640625,
-1.3505859375,
0.33154296875,
0.2479248046875,
0.6103515625,
-0.76904296875,
0.908203125,
0.10980224609375,
-0.57958984375,
0.53759765625,
-0.734375,
0.193115234375,
1.025390625,
-0.363037109375,
0.8837890625,
-0.87646484375,
-0.10198974609375,
0.009765625,
0.0849609375,
0.39697265625,
0.47314453125,
0.650390625,
-0.11785888671875,
-0.10577392578125,
-0.410888671875,
-0.18798828125,
0.08111572265625,
-0.367919921875,
0.364990234375,
-0.300537109375,
-0.357666015625,
-1.1171875,
0.58544921875,
0.6005859375,
0.57861328125,
0.453125,
0.50439453125,
0.138427734375,
0.34765625,
0.5400390625,
-0.1541748046875,
0.1080322265625,
-0.52392578125,
0.76806640625,
0.07684326171875,
-0.11041259765625,
-0.338623046875,
-0.411865234375,
0.0303192138671875,
0.38916015625,
-0.0325927734375,
-0.1688232421875,
-0.98388671875,
0.286376953125,
-0.0621337890625,
0.76904296875,
-0.55224609375,
-0.2215576171875,
-0.07696533203125,
0.33203125,
0.50830078125,
-0.79248046875,
-0.05792236328125,
-0.8466796875,
0.44970703125,
0.308349609375,
-0.0743408203125,
-0.312744140625,
-0.3134765625,
-0.638671875,
-0.88525390625,
0.705078125,
0.96044921875,
-0.012298583984375,
-0.0963134765625,
-1.181640625,
0.65185546875,
0.236328125,
-0.2138671875,
0.1513671875,
-0.050689697265625,
0.408447265625,
-0.22216796875,
0.6982421875,
-0.1162109375,
-0.78271484375,
0.149658203125,
-1.0556640625,
0.479736328125,
-0.2017822265625,
0.403564453125,
-0.448486328125,
0.036651611328125,
-0.053619384765625,
0.353759765625,
-0.294921875,
0.237548828125,
-0.2998046875,
0.259033203125,
-1.1533203125,
-0.54052734375,
0.376220703125,
-0.281982421875,
-0.04962158203125,
1.0556640625,
-0.386962890625,
-0.55322265625,
0.25439453125,
0.71435546875,
-0.2958984375,
0.2890625,
-0.24755859375,
0.277587890625,
-0.419921875,
-0.21240234375,
-0.10723876953125,
-0.389404296875,
0.84033203125,
-0.266357421875,
-0.4765625,
-0.19873046875,
-0.8544921875,
0.0831298828125,
-0.0150909423828125,
-0.9306640625,
0.5478515625,
0.09503173828125,
-0.383056640625,
-0.217529296875,
-0.147216796875,
-0.3857421875,
-0.42431640625,
-0.2476806640625,
-0.51806640625,
0.1678466796875,
0.7763671875,
1.1142578125,
0.138427734375,
-0.40673828125,
-0.1475830078125,
0.181640625,
-0.054595947265625,
-0.5302734375,
-0.00942230224609375,
-0.08856201171875,
-0.1370849609375,
-0.302734375,
0.30908203125,
0.2017822265625,
0.319580078125,
0.43359375,
0.3369140625,
0.420654296875,
0.412841796875,
-0.39453125,
1.212890625,
0.09002685546875,
-0.98681640625,
-0.70556640625,
0.4306640625,
0.07135009765625,
0.385986328125,
0.1055908203125,
-0.76708984375,
-0.7431640625,
-0.92529296875,
0.2257080078125,
-0.642578125,
-0.365478515625,
-0.86474609375,
-0.50927734375,
-0.6611328125,
0.201171875,
-0.421630859375,
-0.51513671875,
-0.08673095703125,
-1.3583984375,
0.223388671875,
-0.708984375,
-0.403076171875,
-0.75732421875,
-0.32177734375,
-0.181884765625,
1.0419921875,
0.1700439453125,
0.37841796875,
-0.18017578125,
-0.029693603515625,
0.238037109375,
-0.06549072265625,
-0.689453125,
-0.68701171875,
-0.129638671875,
-0.046905517578125,
0.00034236907958984375,
0.01239013671875,
-0.54931640625,
0.79931640625,
-0.7490234375,
0.0499267578125,
-0.382568359375,
-0.11102294921875,
-0.17431640625,
-0.7265625,
1.0166015625,
-0.39111328125,
0.155029296875,
-0.24853515625,
0.5029296875,
0.92138671875,
-0.266845703125,
-0.284423828125,
-0.5322265625,
-0.420166015625,
-1.251953125,
0.320068359375,
-0.50146484375,
0.2315673828125,
-0.72412109375,
-0.74951171875,
1.2080078125,
-0.6796875,
0.498779296875,
1.2470703125,
0.126708984375,
0.68603515625,
-0.607421875,
0.85400390625,
0.697265625,
-0.52978515625,
-0.05621337890625,
0.05255126953125,
-0.58203125,
-0.153076171875,
-0.291015625,
-1.1357421875,
-0.77392578125,
0.59814453125,
1.3251953125,
-0.472900390625,
0.75927734375,
0.1346435546875,
-1.06640625,
-0.5556640625,
0.97412109375,
0.0843505859375,
0.316162109375,
0.75146484375,
-0.2493896484375,
-0.394775390625,
0.290771484375,
-0.330810546875,
-0.421630859375,
-0.488525390625,
1.1025390625,
-0.2083740234375,
-0.5234375,
0.69287109375,
0.8701171875,
-1.205078125,
-0.7177734375,
-0.1424560546875,
0.2802734375,
-0.222412109375,
-0.96484375,
-0.07666015625,
0.6416015625,
-0.9150390625,
0.269287109375,
0.3232421875,
-0.334228515625,
0.53955078125,
0.0986328125,
0.5849609375,
-0.62158203125,
0.439697265625,
0.630859375,
-0.40673828125,
-0.31494140625,
-0.7470703125,
-0.1007080078125,
0.034881591796875,
0.08056640625,
0.78369140625,
-0.390380859375,
0.07257080078125,
0.32080078125,
-0.0426025390625,
0.82275390625,
-0.328369140625,
-0.2403564453125,
0.266845703125,
-1.1494140625,
-0.73876953125,
-0.20068359375,
0.2139892578125,
-0.2177734375,
0.56787109375,
-0.72509765625,
-0.01061248779296875,
-0.0433349609375,
0.28955078125,
-0.260986328125,
-0.828125,
-0.071533203125,
-1.041015625,
-0.486328125,
-0.70703125,
-0.6162109375,
0.1712646484375,
0.337890625,
0.2396240234375,
-0.6923828125,
0.28466796875,
0.73486328125,
-0.525390625,
0.673828125,
-0.6474609375,
0.41650390625,
-0.392578125,
-0.2225341796875,
-0.87890625,
0.06317138671875,
-0.44921875,
0.142333984375,
-0.5,
0.451171875,
-0.053466796875,
0.4931640625,
-0.08056640625,
0.2734375,
-0.3544921875,
-0.347900390625,
-0.059234619140625,
0.2291259765625,
-0.5439453125,
0.68115234375,
0.65283203125,
0.1236572265625,
-0.16015625,
-0.398193359375,
-0.359375,
-0.1416015625,
0.7265625,
0.47216796875,
-0.2069091796875,
0.34375,
-0.296142578125,
0.00525665283203125,
-1.080078125,
0.330322265625,
-0.4150390625,
0.0157012939453125,
0.0517578125,
-0.251708984375,
0.634765625,
1.4404296875,
-0.43798828125,
0.361572265625,
0.210205078125,
0.1981201171875,
0.61083984375,
0.2005615234375,
-0.11688232421875,
0.70458984375,
0.06634521484375,
-0.3037109375,
-0.1492919921875,
0.305419921875,
0.48046875,
0.043060302734375,
-0.31787109375,
-1.0068359375,
-1.1083984375,
-0.533203125,
-0.0178375244140625,
0.57080078125,
0.2822265625,
-0.6865234375,
-0.22265625,
-0.158935546875,
-0.46728515625,
0.459716796875,
-1.29296875,
-0.84130859375,
0.1610107421875,
0.136474609375,
-0.4013671875,
0.355224609375,
-0.548828125,
-0.1307373046875,
0.08270263671875,
0.42041015625,
-0.4951171875,
0.391357421875,
0.006916046142578125,
0.62353515625,
-0.052215576171875,
-0.1630859375,
0.1417236328125,
0.72314453125,
-0.720703125,
-0.485595703125,
0.17529296875,
1.177734375,
0.00746917724609375,
0.018341064453125,
-0.75048828125,
0.2978515625,
-0.055877685546875,
0.0299072265625,
-0.42431640625,
0.176025390625,
-0.251953125,
0.58544921875,
-1.2255859375,
-0.1939697265625,
0.0254669189453125,
0.2491455078125,
0.060546875,
-0.434326171875,
-0.5205078125,
0.8876953125,
1.158203125,
-0.1619873046875,
0.1334228515625,
-0.16796875,
0.64208984375,
0.109375,
-0.0667724609375,
-0.376953125,
0.458251953125,
0.31494140625,
0.75830078125,
-0.08563232421875,
0.3720703125,
0.87548828125,
0.2332763671875,
-0.21533203125,
0.371826171875,
0.483642578125,
0.1165771484375,
-0.168701171875,
-0.2352294921875,
-0.02587890625,
0.264892578125,
-0.69287109375,
0.38916015625,
-0.49951171875,
0.06182861328125,
-0.1226806640625,
-0.861328125,
0.95068359375,
-0.450439453125,
-0.2119140625,
0.266845703125,
-0.436767578125,
0.382568359375,
0.5546875,
0.30224609375,
-0.06353759765625,
0.791015625,
0.76318359375,
0.7255859375,
0.70458984375,
0.525390625,
0.3984375,
-0.66943359375,
0.126708984375,
0.29296875,
-0.31103515625,
-0.1793212890625,
-0.33544921875,
-0.97998046875,
0.72412109375,
-0.294677734375,
-0.324462890625,
0.315673828125,
-0.99169921875,
0.04278564453125,
-0.2401123046875,
0.85791015625,
-0.364013671875,
0.423828125,
0.391357421875,
-0.25927734375,
-0.47900390625,
1.060546875,
0.1707763671875,
0.342041015625,
0.10345458984375,
0.48779296875,
0.306640625,
1.3056640625,
0.73779296875,
0.040191650390625,
0.455078125,
0.77783203125,
-0.6806640625,
-0.5146484375,
-0.1763916015625,
-0.181884765625,
0.046356201171875,
-0.61181640625,
-0.1280517578125,
-0.63916015625,
0.53369140625,
0.2169189453125,
-0.86181640625,
-0.4912109375,
0.1007080078125,
-0.90185546875,
0.1488037109375,
0.58154296875,
0.418701171875,
0.279296875,
0.061187744140625,
-0.27734375,
-0.453125,
0.17138671875,
-0.60986328125,
0.281005859375,
-0.7880859375,
-0.1793212890625,
-0.71240234375,
-0.51416015625,
-0.366943359375,
-0.2283935546875,
-0.309814453125,
-0.97216796875,
0.8134765625,
0.67529296875,
0.55859375,
0.415771484375,
-0.356201171875,
0.09625244140625,
0.78125,
0.75244140625,
-0.11322021484375,
0.91162109375,
0.44921875,
-0.12176513671875,
0.1151123046875,
-0.367919921875,
0.204833984375,
-0.07666015625,
0.1922607421875,
-0.40234375,
0.43505859375,
-0.68701171875,
-1.4990234375,
0.017608642578125,
0.373291015625,
0.306640625,
-0.33056640625,
-1.078125,
-0.5673828125,
-0.9775390625,
-0.04779052734375,
-0.57666015625,
0.70556640625,
-0.1361083984375,
0.066650390625,
-0.324951171875,
-1.1474609375,
4.34765625,
1.0810546875,
1.0908203125,
0.2127685546875,
0.424072265625,
1.1025390625,
0.1734619140625,
-0.724609375,
-0.201416015625,
-0.58935546875,
0.7197265625,
-0.318359375,
0.20751953125,
0.5869140625,
0.031463623046875,
0.7900390625,
-0.423095703125,
-0.0855712890625,
0.08056640625,
-0.85400390625,
-0.880859375,
0.28125,
-0.07672119140625,
0.284912109375,
-0.06793212890625,
0.1785888671875,
0.74462890625,
-1.009765625,
-0.2347412109375,
-0.3251953125,
0.28076171875,
-0.81494140625,
1.1591796875,
-0.27685546875,
-0.07061767578125,
0.626953125,
0.210693359375,
-0.427001953125,
-0.65185546875,
0.2119140625,
-0.1064453125,
0.429931640625,
0.71044921875,
-1.005859375,
-0.09442138671875,
0.3935546875,
-0.6044921875,
0.3828125,
-0.19091796875,
-0.71923828125,
0.68603515625,
-0.27978515625,
0.312744140625,
-0.37841796875,
-1.08203125,
0.43212890625,
0.24658203125,
0.255126953125,
-0.355224609375,
0.353515625,
0.19775390625,
0.3408203125,
0.0279083251953125,
0.57275390625,
-1.0419921875,
0.4267578125,
-0.04388427734375,
0.306640625,
-0.34619140625,
-0.1146240234375,
-0.88134765625,
-0.50341796875,
-0.23291015625,
-0.3212890625,
0.32470703125,
0.27294921875,
-0.25390625,
0.552734375,
0.68798828125,
-0.499267578125,
0.302490234375,
-0.27685546875,
-0.0777587890625,
-0.5126953125,
0.438720703125,
0.83447265625,
-0.404541015625,
-0.50244140625,
-0.275146484375,
0.6064453125,
0.6083984375,
0.79638671875,
0.367431640625,
-0.55859375,
-0.248779296875
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Phoenix has a string s consisting of lowercase Latin letters. He wants to distribute all the letters of his string into k non-empty strings a_1, a_2, ..., a_k such that every letter of s goes to exactly one of the strings a_i. The strings a_i do not need to be substrings of s. Phoenix can distribute letters of s and rearrange the letters within each string a_i however he wants.
For example, if s = baba and k=2, Phoenix may distribute the letters of his string in many ways, such as:
* ba and ba
* a and abb
* ab and ab
* aa and bb
But these ways are invalid:
* baa and ba
* b and ba
* baba and empty string (a_i should be non-empty)
Phoenix wants to distribute the letters of his string s into k strings a_1, a_2, ..., a_k to minimize the lexicographically maximum string among them, i. e. minimize max(a_1, a_2, ..., a_k). Help him find the optimal distribution and print the minimal possible value of max(a_1, a_2, ..., a_k).
String x is lexicographically less than string y if either x is a prefix of y and x ≠ y, or there exists an index i (1 ≤ i ≤ min(|x|, |y|)) such that x_i < y_i and for every j (1 ≤ j < i) x_j = y_j. Here |x| denotes the length of the string x.
Input
The input consists of multiple test cases. The first line contains an integer t (1 ≤ t ≤ 1000) — the number of test cases. Each test case consists of two lines.
The first line of each test case consists of two integers n and k (1 ≤ k ≤ n ≤ 10^5) — the length of string s and the number of non-empty strings, into which Phoenix wants to distribute letters of s, respectively.
The second line of each test case contains a string s of length n consisting only of lowercase Latin letters.
It is guaranteed that the sum of n over all test cases is ≤ 10^5.
Output
Print t answers — one per test case. The i-th answer should be the minimal possible value of max(a_1, a_2, ..., a_k) in the i-th test case.
Example
Input
6
4 2
baba
5 2
baacb
5 3
baacb
5 3
aaaaa
6 4
aaxxzz
7 1
phoenix
Output
ab
abbc
b
aa
x
ehinopx
Note
In the first test case, one optimal solution is to distribute baba into ab and ab.
In the second test case, one optimal solution is to distribute baacb into abbc and a.
In the third test case, one optimal solution is to distribute baacb into ac, ab, and b.
In the fourth test case, one optimal solution is to distribute aaaaa into aa, aa, and a.
In the fifth test case, one optimal solution is to distribute aaxxzz into az, az, x, and x.
In the sixth test case, one optimal solution is to distribute phoenix into ehinopx.
Submitted Solution:
```
for u in range(int(input())):
n,k=map(int,input().split())
s=''.join(sorted(input()))
if(k==n or s[0]!=s[k-1]):
print(s[k-1])
elif(s[k]==s[-1]):
print(s[0]+s[k]*((n-1)//k))
else:
print(s[k-1:])
```
Yes
| 10,934 | [
0.29248046875,
0.30419921875,
0.43798828125,
0.275390625,
-0.609375,
-0.469970703125,
-0.186279296875,
0.1416015625,
-0.07720947265625,
0.87939453125,
0.9443359375,
0.1571044921875,
0.043212890625,
-0.84912109375,
-0.8251953125,
0.267578125,
-0.70166015625,
-0.52783203125,
-0.367919921875,
-0.26025390625,
0.1336669921875,
0.0865478515625,
-1.58203125,
-0.281005859375,
-0.310302734375,
0.82666015625,
0.1861572265625,
-0.043304443359375,
1.111328125,
0.7841796875,
0.01898193359375,
-0.355712890625,
0.61181640625,
-1.0869140625,
-0.27783203125,
-0.6708984375,
0.85009765625,
-0.418701171875,
-0.4501953125,
-0.7626953125,
0.49267578125,
-0.8076171875,
0.51708984375,
-0.61279296875,
-0.9814453125,
-0.1126708984375,
-0.1331787109375,
-0.41064453125,
-0.5654296875,
-0.373779296875,
0.0968017578125,
-0.38720703125,
0.60693359375,
-0.51318359375,
0.1279296875,
0.23486328125,
0.0335693359375,
-0.05841064453125,
-0.82470703125,
0.1536865234375,
0.1656494140625,
0.315673828125,
-0.380859375,
-0.74755859375,
-0.17724609375,
0.255859375,
-0.077880859375,
-0.010223388671875,
0.1444091796875,
-0.86962890625,
-0.4150390625,
0.21826171875,
-0.38623046875,
-0.5830078125,
-0.48681640625,
0.1240234375,
0.1583251953125,
-0.158203125,
-0.6650390625,
0.7998046875,
0.074951171875,
0.755859375,
0.278564453125,
0.01378631591796875,
-0.71923828125,
-0.48095703125,
0.21044921875,
0.36962890625,
0.1439208984375,
0.1390380859375,
0.08038330078125,
0.434814453125,
-0.63818359375,
0.240234375,
0.392822265625,
0.7294921875,
-0.12445068359375,
0.399169921875,
0.1595458984375,
0.392333984375,
1.1328125,
0.751953125,
-0.43603515625,
1.1767578125,
-0.642578125,
0.1923828125,
-0.2205810546875,
-0.2489013671875,
-0.2142333984375,
-0.380859375,
-0.160400390625,
-0.0200653076171875,
0.3349609375,
0.33251953125,
-0.36962890625,
0.6708984375,
-0.08544921875,
0.765625,
-0.9130859375,
-0.046295166015625,
0.5693359375,
0.06024169921875,
0.5576171875,
-0.1923828125,
0.054931640625,
-0.2259521484375,
-0.59423828125,
0.74560546875,
-0.7216796875,
-0.0679931640625,
0.5927734375,
0.09130859375,
-0.4970703125,
0.408447265625,
0.04827880859375,
0.4482421875,
0.06756591796875,
0.50732421875,
0.89501953125,
-0.1824951171875,
0.68505859375,
-0.1490478515625,
0.04620361328125,
1.515625,
0.1470947265625,
-0.283935546875,
0.5654296875,
0.0716552734375,
-0.58740234375,
0.87841796875,
-0.8251953125,
0.58544921875,
0.06494140625,
0.31787109375,
-0.22216796875,
0.08642578125,
0.0099639892578125,
0.63525390625,
0.4013671875,
0.2425537109375,
-0.638671875,
-0.082763671875,
-0.3427734375,
0.8720703125,
-0.35400390625,
0.8466796875,
-0.74609375,
-0.416015625,
-0.07958984375,
-0.38671875,
-0.0389404296875,
-0.349365234375,
0.058349609375,
0.8896484375,
0.2252197265625,
0.8349609375,
0.8154296875,
-0.669921875,
0.38623046875,
0.33251953125,
-0.213623046875,
0.339111328125,
0.284912109375,
0.6904296875,
0.4306640625,
0.223876953125,
0.004062652587890625,
-0.345703125,
-0.6591796875,
-0.6708984375,
0.175537109375,
0.6083984375,
-0.29052734375,
0.263916015625,
-0.1661376953125,
0.1661376953125,
-0.6904296875,
-0.2259521484375,
-0.05999755859375,
-1.0146484375,
-0.334716796875,
0.412353515625,
-0.09930419921875,
0.2491455078125,
-0.7109375,
-0.44677734375,
0.203857421875,
1.0546875,
-0.11505126953125,
0.057037353515625,
0.432861328125,
0.4228515625,
-0.2364501953125,
0.25439453125,
0.07244873046875,
-0.1439208984375,
-0.53173828125,
0.60888671875,
-0.5625,
0.03643798828125,
-0.10882568359375,
0.90478515625,
0.25390625,
0.2489013671875,
-0.5830078125,
-0.2117919921875,
0.471435546875,
1.310546875,
-0.1634521484375,
0.56103515625,
0.54345703125,
0.88427734375,
0.525390625,
0.78466796875,
0.456298828125,
0.45751953125,
0.74853515625,
0.71484375,
-0.12347412109375,
0.287353515625,
0.19970703125,
0.5009765625,
0.51123046875,
0.54052734375,
0.10540771484375,
0.5380859375,
-0.34033203125,
0.34326171875,
-0.83935546875,
0.2066650390625,
-0.1875,
1.076171875,
0.243896484375,
0.51171875,
-0.364013671875,
-0.327392578125,
0.32763671875,
0.744140625,
-1.08203125,
-0.74755859375,
-0.153076171875,
-0.0219573974609375,
0.2080078125,
-0.00814056396484375,
0.287841796875,
0.348388671875,
0.72119140625,
-0.07415771484375,
-0.254638671875,
-0.327392578125,
-1.146484375,
-0.9599609375,
-0.76318359375,
-0.38232421875,
-0.53466796875,
0.1475830078125,
0.513671875,
-0.984375,
0.06158447265625,
-0.66796875,
0.11029052734375,
-0.06292724609375,
-0.71875,
0.404052734375,
0.1749267578125,
0.875,
-0.82958984375,
0.56591796875,
0.03155517578125,
1.0146484375,
-0.92529296875,
-0.304931640625,
-0.361328125,
-0.498779296875,
0.49853515625,
0.07379150390625,
0.2196044921875,
0.061065673828125,
-0.55810546875,
-0.95361328125,
-0.2308349609375,
0.08447265625,
-0.48095703125,
0.2529296875,
-0.77001953125,
0.9970703125,
0.46484375,
-0.7158203125,
0.369384765625,
1.0166015625,
-0.78515625,
0.399169921875,
0.281005859375,
-0.08807373046875,
-0.662109375,
1.2587890625,
0.40234375,
0.33544921875,
-0.5380859375,
-0.7080078125,
-0.176513671875,
0.2841796875,
0.1531982421875,
-0.77978515625,
0.004367828369140625,
0.9033203125,
-0.12335205078125,
-1.34375,
0.62158203125,
-0.99658203125,
-0.7421875,
-0.256591796875,
-0.626953125,
0.68212890625,
0.619140625,
0.350830078125,
-0.36865234375,
-0.28076171875,
-0.0579833984375,
0.6171875,
0.170654296875,
-0.8515625,
-0.07708740234375,
0.6005859375,
-0.16162109375,
0.032501220703125,
0.261474609375,
-0.46728515625,
-0.2041015625,
-0.01503753662109375,
-0.0958251953125,
0.83251953125,
0.151611328125,
0.4443359375,
0.2364501953125,
0.53955078125,
-0.89404296875,
-0.09698486328125,
-0.162109375,
0.5927734375,
0.331298828125,
0.499267578125,
0.50634765625,
-0.10491943359375,
-0.806640625,
-1.3505859375,
0.33154296875,
0.2479248046875,
0.6103515625,
-0.76904296875,
0.908203125,
0.10980224609375,
-0.57958984375,
0.53759765625,
-0.734375,
0.193115234375,
1.025390625,
-0.363037109375,
0.8837890625,
-0.87646484375,
-0.10198974609375,
0.009765625,
0.0849609375,
0.39697265625,
0.47314453125,
0.650390625,
-0.11785888671875,
-0.10577392578125,
-0.410888671875,
-0.18798828125,
0.08111572265625,
-0.367919921875,
0.364990234375,
-0.300537109375,
-0.357666015625,
-1.1171875,
0.58544921875,
0.6005859375,
0.57861328125,
0.453125,
0.50439453125,
0.138427734375,
0.34765625,
0.5400390625,
-0.1541748046875,
0.1080322265625,
-0.52392578125,
0.76806640625,
0.07684326171875,
-0.11041259765625,
-0.338623046875,
-0.411865234375,
0.0303192138671875,
0.38916015625,
-0.0325927734375,
-0.1688232421875,
-0.98388671875,
0.286376953125,
-0.0621337890625,
0.76904296875,
-0.55224609375,
-0.2215576171875,
-0.07696533203125,
0.33203125,
0.50830078125,
-0.79248046875,
-0.05792236328125,
-0.8466796875,
0.44970703125,
0.308349609375,
-0.0743408203125,
-0.312744140625,
-0.3134765625,
-0.638671875,
-0.88525390625,
0.705078125,
0.96044921875,
-0.012298583984375,
-0.0963134765625,
-1.181640625,
0.65185546875,
0.236328125,
-0.2138671875,
0.1513671875,
-0.050689697265625,
0.408447265625,
-0.22216796875,
0.6982421875,
-0.1162109375,
-0.78271484375,
0.149658203125,
-1.0556640625,
0.479736328125,
-0.2017822265625,
0.403564453125,
-0.448486328125,
0.036651611328125,
-0.053619384765625,
0.353759765625,
-0.294921875,
0.237548828125,
-0.2998046875,
0.259033203125,
-1.1533203125,
-0.54052734375,
0.376220703125,
-0.281982421875,
-0.04962158203125,
1.0556640625,
-0.386962890625,
-0.55322265625,
0.25439453125,
0.71435546875,
-0.2958984375,
0.2890625,
-0.24755859375,
0.277587890625,
-0.419921875,
-0.21240234375,
-0.10723876953125,
-0.389404296875,
0.84033203125,
-0.266357421875,
-0.4765625,
-0.19873046875,
-0.8544921875,
0.0831298828125,
-0.0150909423828125,
-0.9306640625,
0.5478515625,
0.09503173828125,
-0.383056640625,
-0.217529296875,
-0.147216796875,
-0.3857421875,
-0.42431640625,
-0.2476806640625,
-0.51806640625,
0.1678466796875,
0.7763671875,
1.1142578125,
0.138427734375,
-0.40673828125,
-0.1475830078125,
0.181640625,
-0.054595947265625,
-0.5302734375,
-0.00942230224609375,
-0.08856201171875,
-0.1370849609375,
-0.302734375,
0.30908203125,
0.2017822265625,
0.319580078125,
0.43359375,
0.3369140625,
0.420654296875,
0.412841796875,
-0.39453125,
1.212890625,
0.09002685546875,
-0.98681640625,
-0.70556640625,
0.4306640625,
0.07135009765625,
0.385986328125,
0.1055908203125,
-0.76708984375,
-0.7431640625,
-0.92529296875,
0.2257080078125,
-0.642578125,
-0.365478515625,
-0.86474609375,
-0.50927734375,
-0.6611328125,
0.201171875,
-0.421630859375,
-0.51513671875,
-0.08673095703125,
-1.3583984375,
0.223388671875,
-0.708984375,
-0.403076171875,
-0.75732421875,
-0.32177734375,
-0.181884765625,
1.0419921875,
0.1700439453125,
0.37841796875,
-0.18017578125,
-0.029693603515625,
0.238037109375,
-0.06549072265625,
-0.689453125,
-0.68701171875,
-0.129638671875,
-0.046905517578125,
0.00034236907958984375,
0.01239013671875,
-0.54931640625,
0.79931640625,
-0.7490234375,
0.0499267578125,
-0.382568359375,
-0.11102294921875,
-0.17431640625,
-0.7265625,
1.0166015625,
-0.39111328125,
0.155029296875,
-0.24853515625,
0.5029296875,
0.92138671875,
-0.266845703125,
-0.284423828125,
-0.5322265625,
-0.420166015625,
-1.251953125,
0.320068359375,
-0.50146484375,
0.2315673828125,
-0.72412109375,
-0.74951171875,
1.2080078125,
-0.6796875,
0.498779296875,
1.2470703125,
0.126708984375,
0.68603515625,
-0.607421875,
0.85400390625,
0.697265625,
-0.52978515625,
-0.05621337890625,
0.05255126953125,
-0.58203125,
-0.153076171875,
-0.291015625,
-1.1357421875,
-0.77392578125,
0.59814453125,
1.3251953125,
-0.472900390625,
0.75927734375,
0.1346435546875,
-1.06640625,
-0.5556640625,
0.97412109375,
0.0843505859375,
0.316162109375,
0.75146484375,
-0.2493896484375,
-0.394775390625,
0.290771484375,
-0.330810546875,
-0.421630859375,
-0.488525390625,
1.1025390625,
-0.2083740234375,
-0.5234375,
0.69287109375,
0.8701171875,
-1.205078125,
-0.7177734375,
-0.1424560546875,
0.2802734375,
-0.222412109375,
-0.96484375,
-0.07666015625,
0.6416015625,
-0.9150390625,
0.269287109375,
0.3232421875,
-0.334228515625,
0.53955078125,
0.0986328125,
0.5849609375,
-0.62158203125,
0.439697265625,
0.630859375,
-0.40673828125,
-0.31494140625,
-0.7470703125,
-0.1007080078125,
0.034881591796875,
0.08056640625,
0.78369140625,
-0.390380859375,
0.07257080078125,
0.32080078125,
-0.0426025390625,
0.82275390625,
-0.328369140625,
-0.2403564453125,
0.266845703125,
-1.1494140625,
-0.73876953125,
-0.20068359375,
0.2139892578125,
-0.2177734375,
0.56787109375,
-0.72509765625,
-0.01061248779296875,
-0.0433349609375,
0.28955078125,
-0.260986328125,
-0.828125,
-0.071533203125,
-1.041015625,
-0.486328125,
-0.70703125,
-0.6162109375,
0.1712646484375,
0.337890625,
0.2396240234375,
-0.6923828125,
0.28466796875,
0.73486328125,
-0.525390625,
0.673828125,
-0.6474609375,
0.41650390625,
-0.392578125,
-0.2225341796875,
-0.87890625,
0.06317138671875,
-0.44921875,
0.142333984375,
-0.5,
0.451171875,
-0.053466796875,
0.4931640625,
-0.08056640625,
0.2734375,
-0.3544921875,
-0.347900390625,
-0.059234619140625,
0.2291259765625,
-0.5439453125,
0.68115234375,
0.65283203125,
0.1236572265625,
-0.16015625,
-0.398193359375,
-0.359375,
-0.1416015625,
0.7265625,
0.47216796875,
-0.2069091796875,
0.34375,
-0.296142578125,
0.00525665283203125,
-1.080078125,
0.330322265625,
-0.4150390625,
0.0157012939453125,
0.0517578125,
-0.251708984375,
0.634765625,
1.4404296875,
-0.43798828125,
0.361572265625,
0.210205078125,
0.1981201171875,
0.61083984375,
0.2005615234375,
-0.11688232421875,
0.70458984375,
0.06634521484375,
-0.3037109375,
-0.1492919921875,
0.305419921875,
0.48046875,
0.043060302734375,
-0.31787109375,
-1.0068359375,
-1.1083984375,
-0.533203125,
-0.0178375244140625,
0.57080078125,
0.2822265625,
-0.6865234375,
-0.22265625,
-0.158935546875,
-0.46728515625,
0.459716796875,
-1.29296875,
-0.84130859375,
0.1610107421875,
0.136474609375,
-0.4013671875,
0.355224609375,
-0.548828125,
-0.1307373046875,
0.08270263671875,
0.42041015625,
-0.4951171875,
0.391357421875,
0.006916046142578125,
0.62353515625,
-0.052215576171875,
-0.1630859375,
0.1417236328125,
0.72314453125,
-0.720703125,
-0.485595703125,
0.17529296875,
1.177734375,
0.00746917724609375,
0.018341064453125,
-0.75048828125,
0.2978515625,
-0.055877685546875,
0.0299072265625,
-0.42431640625,
0.176025390625,
-0.251953125,
0.58544921875,
-1.2255859375,
-0.1939697265625,
0.0254669189453125,
0.2491455078125,
0.060546875,
-0.434326171875,
-0.5205078125,
0.8876953125,
1.158203125,
-0.1619873046875,
0.1334228515625,
-0.16796875,
0.64208984375,
0.109375,
-0.0667724609375,
-0.376953125,
0.458251953125,
0.31494140625,
0.75830078125,
-0.08563232421875,
0.3720703125,
0.87548828125,
0.2332763671875,
-0.21533203125,
0.371826171875,
0.483642578125,
0.1165771484375,
-0.168701171875,
-0.2352294921875,
-0.02587890625,
0.264892578125,
-0.69287109375,
0.38916015625,
-0.49951171875,
0.06182861328125,
-0.1226806640625,
-0.861328125,
0.95068359375,
-0.450439453125,
-0.2119140625,
0.266845703125,
-0.436767578125,
0.382568359375,
0.5546875,
0.30224609375,
-0.06353759765625,
0.791015625,
0.76318359375,
0.7255859375,
0.70458984375,
0.525390625,
0.3984375,
-0.66943359375,
0.126708984375,
0.29296875,
-0.31103515625,
-0.1793212890625,
-0.33544921875,
-0.97998046875,
0.72412109375,
-0.294677734375,
-0.324462890625,
0.315673828125,
-0.99169921875,
0.04278564453125,
-0.2401123046875,
0.85791015625,
-0.364013671875,
0.423828125,
0.391357421875,
-0.25927734375,
-0.47900390625,
1.060546875,
0.1707763671875,
0.342041015625,
0.10345458984375,
0.48779296875,
0.306640625,
1.3056640625,
0.73779296875,
0.040191650390625,
0.455078125,
0.77783203125,
-0.6806640625,
-0.5146484375,
-0.1763916015625,
-0.181884765625,
0.046356201171875,
-0.61181640625,
-0.1280517578125,
-0.63916015625,
0.53369140625,
0.2169189453125,
-0.86181640625,
-0.4912109375,
0.1007080078125,
-0.90185546875,
0.1488037109375,
0.58154296875,
0.418701171875,
0.279296875,
0.061187744140625,
-0.27734375,
-0.453125,
0.17138671875,
-0.60986328125,
0.281005859375,
-0.7880859375,
-0.1793212890625,
-0.71240234375,
-0.51416015625,
-0.366943359375,
-0.2283935546875,
-0.309814453125,
-0.97216796875,
0.8134765625,
0.67529296875,
0.55859375,
0.415771484375,
-0.356201171875,
0.09625244140625,
0.78125,
0.75244140625,
-0.11322021484375,
0.91162109375,
0.44921875,
-0.12176513671875,
0.1151123046875,
-0.367919921875,
0.204833984375,
-0.07666015625,
0.1922607421875,
-0.40234375,
0.43505859375,
-0.68701171875,
-1.4990234375,
0.017608642578125,
0.373291015625,
0.306640625,
-0.33056640625,
-1.078125,
-0.5673828125,
-0.9775390625,
-0.04779052734375,
-0.57666015625,
0.70556640625,
-0.1361083984375,
0.066650390625,
-0.324951171875,
-1.1474609375,
4.34765625,
1.0810546875,
1.0908203125,
0.2127685546875,
0.424072265625,
1.1025390625,
0.1734619140625,
-0.724609375,
-0.201416015625,
-0.58935546875,
0.7197265625,
-0.318359375,
0.20751953125,
0.5869140625,
0.031463623046875,
0.7900390625,
-0.423095703125,
-0.0855712890625,
0.08056640625,
-0.85400390625,
-0.880859375,
0.28125,
-0.07672119140625,
0.284912109375,
-0.06793212890625,
0.1785888671875,
0.74462890625,
-1.009765625,
-0.2347412109375,
-0.3251953125,
0.28076171875,
-0.81494140625,
1.1591796875,
-0.27685546875,
-0.07061767578125,
0.626953125,
0.210693359375,
-0.427001953125,
-0.65185546875,
0.2119140625,
-0.1064453125,
0.429931640625,
0.71044921875,
-1.005859375,
-0.09442138671875,
0.3935546875,
-0.6044921875,
0.3828125,
-0.19091796875,
-0.71923828125,
0.68603515625,
-0.27978515625,
0.312744140625,
-0.37841796875,
-1.08203125,
0.43212890625,
0.24658203125,
0.255126953125,
-0.355224609375,
0.353515625,
0.19775390625,
0.3408203125,
0.0279083251953125,
0.57275390625,
-1.0419921875,
0.4267578125,
-0.04388427734375,
0.306640625,
-0.34619140625,
-0.1146240234375,
-0.88134765625,
-0.50341796875,
-0.23291015625,
-0.3212890625,
0.32470703125,
0.27294921875,
-0.25390625,
0.552734375,
0.68798828125,
-0.499267578125,
0.302490234375,
-0.27685546875,
-0.0777587890625,
-0.5126953125,
0.438720703125,
0.83447265625,
-0.404541015625,
-0.50244140625,
-0.275146484375,
0.6064453125,
0.6083984375,
0.79638671875,
0.367431640625,
-0.55859375,
-0.248779296875
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Phoenix has a string s consisting of lowercase Latin letters. He wants to distribute all the letters of his string into k non-empty strings a_1, a_2, ..., a_k such that every letter of s goes to exactly one of the strings a_i. The strings a_i do not need to be substrings of s. Phoenix can distribute letters of s and rearrange the letters within each string a_i however he wants.
For example, if s = baba and k=2, Phoenix may distribute the letters of his string in many ways, such as:
* ba and ba
* a and abb
* ab and ab
* aa and bb
But these ways are invalid:
* baa and ba
* b and ba
* baba and empty string (a_i should be non-empty)
Phoenix wants to distribute the letters of his string s into k strings a_1, a_2, ..., a_k to minimize the lexicographically maximum string among them, i. e. minimize max(a_1, a_2, ..., a_k). Help him find the optimal distribution and print the minimal possible value of max(a_1, a_2, ..., a_k).
String x is lexicographically less than string y if either x is a prefix of y and x ≠ y, or there exists an index i (1 ≤ i ≤ min(|x|, |y|)) such that x_i < y_i and for every j (1 ≤ j < i) x_j = y_j. Here |x| denotes the length of the string x.
Input
The input consists of multiple test cases. The first line contains an integer t (1 ≤ t ≤ 1000) — the number of test cases. Each test case consists of two lines.
The first line of each test case consists of two integers n and k (1 ≤ k ≤ n ≤ 10^5) — the length of string s and the number of non-empty strings, into which Phoenix wants to distribute letters of s, respectively.
The second line of each test case contains a string s of length n consisting only of lowercase Latin letters.
It is guaranteed that the sum of n over all test cases is ≤ 10^5.
Output
Print t answers — one per test case. The i-th answer should be the minimal possible value of max(a_1, a_2, ..., a_k) in the i-th test case.
Example
Input
6
4 2
baba
5 2
baacb
5 3
baacb
5 3
aaaaa
6 4
aaxxzz
7 1
phoenix
Output
ab
abbc
b
aa
x
ehinopx
Note
In the first test case, one optimal solution is to distribute baba into ab and ab.
In the second test case, one optimal solution is to distribute baacb into abbc and a.
In the third test case, one optimal solution is to distribute baacb into ac, ab, and b.
In the fourth test case, one optimal solution is to distribute aaaaa into aa, aa, and a.
In the fifth test case, one optimal solution is to distribute aaxxzz into az, az, x, and x.
In the sixth test case, one optimal solution is to distribute phoenix into ehinopx.
Submitted Solution:
```
import sys
#from math import *
def eprint(*args):
print(*args, file=sys.stderr)
zz=1
if zz:
input=sys.stdin.readline
else:
sys.stdin=open('input.txt', 'r')
sys.stdout=open('output2.txt','w')
t=int(input())
while t>0:
t-=1
n,k=map(int,input().split())
s=list(input().rstrip())
s.sort()
d={}
a=["" for i in range(k)]
for i in range(k):
a[i%k]+=s[i]
j=0
i=k
if len(set(s[k:]))==1:
for i in range(k,len(s)):
a[j%k]+=s[i]
j+=1
if j==k or a[j][0]>a[0][0]:
j=0
else:
for i in range(k,len(s)):
a[j%k]+=s[i]
#print(a)
print(max(a))
```
Yes
| 10,935 | [
0.29248046875,
0.30419921875,
0.43798828125,
0.275390625,
-0.609375,
-0.469970703125,
-0.186279296875,
0.1416015625,
-0.07720947265625,
0.87939453125,
0.9443359375,
0.1571044921875,
0.043212890625,
-0.84912109375,
-0.8251953125,
0.267578125,
-0.70166015625,
-0.52783203125,
-0.367919921875,
-0.26025390625,
0.1336669921875,
0.0865478515625,
-1.58203125,
-0.281005859375,
-0.310302734375,
0.82666015625,
0.1861572265625,
-0.043304443359375,
1.111328125,
0.7841796875,
0.01898193359375,
-0.355712890625,
0.61181640625,
-1.0869140625,
-0.27783203125,
-0.6708984375,
0.85009765625,
-0.418701171875,
-0.4501953125,
-0.7626953125,
0.49267578125,
-0.8076171875,
0.51708984375,
-0.61279296875,
-0.9814453125,
-0.1126708984375,
-0.1331787109375,
-0.41064453125,
-0.5654296875,
-0.373779296875,
0.0968017578125,
-0.38720703125,
0.60693359375,
-0.51318359375,
0.1279296875,
0.23486328125,
0.0335693359375,
-0.05841064453125,
-0.82470703125,
0.1536865234375,
0.1656494140625,
0.315673828125,
-0.380859375,
-0.74755859375,
-0.17724609375,
0.255859375,
-0.077880859375,
-0.010223388671875,
0.1444091796875,
-0.86962890625,
-0.4150390625,
0.21826171875,
-0.38623046875,
-0.5830078125,
-0.48681640625,
0.1240234375,
0.1583251953125,
-0.158203125,
-0.6650390625,
0.7998046875,
0.074951171875,
0.755859375,
0.278564453125,
0.01378631591796875,
-0.71923828125,
-0.48095703125,
0.21044921875,
0.36962890625,
0.1439208984375,
0.1390380859375,
0.08038330078125,
0.434814453125,
-0.63818359375,
0.240234375,
0.392822265625,
0.7294921875,
-0.12445068359375,
0.399169921875,
0.1595458984375,
0.392333984375,
1.1328125,
0.751953125,
-0.43603515625,
1.1767578125,
-0.642578125,
0.1923828125,
-0.2205810546875,
-0.2489013671875,
-0.2142333984375,
-0.380859375,
-0.160400390625,
-0.0200653076171875,
0.3349609375,
0.33251953125,
-0.36962890625,
0.6708984375,
-0.08544921875,
0.765625,
-0.9130859375,
-0.046295166015625,
0.5693359375,
0.06024169921875,
0.5576171875,
-0.1923828125,
0.054931640625,
-0.2259521484375,
-0.59423828125,
0.74560546875,
-0.7216796875,
-0.0679931640625,
0.5927734375,
0.09130859375,
-0.4970703125,
0.408447265625,
0.04827880859375,
0.4482421875,
0.06756591796875,
0.50732421875,
0.89501953125,
-0.1824951171875,
0.68505859375,
-0.1490478515625,
0.04620361328125,
1.515625,
0.1470947265625,
-0.283935546875,
0.5654296875,
0.0716552734375,
-0.58740234375,
0.87841796875,
-0.8251953125,
0.58544921875,
0.06494140625,
0.31787109375,
-0.22216796875,
0.08642578125,
0.0099639892578125,
0.63525390625,
0.4013671875,
0.2425537109375,
-0.638671875,
-0.082763671875,
-0.3427734375,
0.8720703125,
-0.35400390625,
0.8466796875,
-0.74609375,
-0.416015625,
-0.07958984375,
-0.38671875,
-0.0389404296875,
-0.349365234375,
0.058349609375,
0.8896484375,
0.2252197265625,
0.8349609375,
0.8154296875,
-0.669921875,
0.38623046875,
0.33251953125,
-0.213623046875,
0.339111328125,
0.284912109375,
0.6904296875,
0.4306640625,
0.223876953125,
0.004062652587890625,
-0.345703125,
-0.6591796875,
-0.6708984375,
0.175537109375,
0.6083984375,
-0.29052734375,
0.263916015625,
-0.1661376953125,
0.1661376953125,
-0.6904296875,
-0.2259521484375,
-0.05999755859375,
-1.0146484375,
-0.334716796875,
0.412353515625,
-0.09930419921875,
0.2491455078125,
-0.7109375,
-0.44677734375,
0.203857421875,
1.0546875,
-0.11505126953125,
0.057037353515625,
0.432861328125,
0.4228515625,
-0.2364501953125,
0.25439453125,
0.07244873046875,
-0.1439208984375,
-0.53173828125,
0.60888671875,
-0.5625,
0.03643798828125,
-0.10882568359375,
0.90478515625,
0.25390625,
0.2489013671875,
-0.5830078125,
-0.2117919921875,
0.471435546875,
1.310546875,
-0.1634521484375,
0.56103515625,
0.54345703125,
0.88427734375,
0.525390625,
0.78466796875,
0.456298828125,
0.45751953125,
0.74853515625,
0.71484375,
-0.12347412109375,
0.287353515625,
0.19970703125,
0.5009765625,
0.51123046875,
0.54052734375,
0.10540771484375,
0.5380859375,
-0.34033203125,
0.34326171875,
-0.83935546875,
0.2066650390625,
-0.1875,
1.076171875,
0.243896484375,
0.51171875,
-0.364013671875,
-0.327392578125,
0.32763671875,
0.744140625,
-1.08203125,
-0.74755859375,
-0.153076171875,
-0.0219573974609375,
0.2080078125,
-0.00814056396484375,
0.287841796875,
0.348388671875,
0.72119140625,
-0.07415771484375,
-0.254638671875,
-0.327392578125,
-1.146484375,
-0.9599609375,
-0.76318359375,
-0.38232421875,
-0.53466796875,
0.1475830078125,
0.513671875,
-0.984375,
0.06158447265625,
-0.66796875,
0.11029052734375,
-0.06292724609375,
-0.71875,
0.404052734375,
0.1749267578125,
0.875,
-0.82958984375,
0.56591796875,
0.03155517578125,
1.0146484375,
-0.92529296875,
-0.304931640625,
-0.361328125,
-0.498779296875,
0.49853515625,
0.07379150390625,
0.2196044921875,
0.061065673828125,
-0.55810546875,
-0.95361328125,
-0.2308349609375,
0.08447265625,
-0.48095703125,
0.2529296875,
-0.77001953125,
0.9970703125,
0.46484375,
-0.7158203125,
0.369384765625,
1.0166015625,
-0.78515625,
0.399169921875,
0.281005859375,
-0.08807373046875,
-0.662109375,
1.2587890625,
0.40234375,
0.33544921875,
-0.5380859375,
-0.7080078125,
-0.176513671875,
0.2841796875,
0.1531982421875,
-0.77978515625,
0.004367828369140625,
0.9033203125,
-0.12335205078125,
-1.34375,
0.62158203125,
-0.99658203125,
-0.7421875,
-0.256591796875,
-0.626953125,
0.68212890625,
0.619140625,
0.350830078125,
-0.36865234375,
-0.28076171875,
-0.0579833984375,
0.6171875,
0.170654296875,
-0.8515625,
-0.07708740234375,
0.6005859375,
-0.16162109375,
0.032501220703125,
0.261474609375,
-0.46728515625,
-0.2041015625,
-0.01503753662109375,
-0.0958251953125,
0.83251953125,
0.151611328125,
0.4443359375,
0.2364501953125,
0.53955078125,
-0.89404296875,
-0.09698486328125,
-0.162109375,
0.5927734375,
0.331298828125,
0.499267578125,
0.50634765625,
-0.10491943359375,
-0.806640625,
-1.3505859375,
0.33154296875,
0.2479248046875,
0.6103515625,
-0.76904296875,
0.908203125,
0.10980224609375,
-0.57958984375,
0.53759765625,
-0.734375,
0.193115234375,
1.025390625,
-0.363037109375,
0.8837890625,
-0.87646484375,
-0.10198974609375,
0.009765625,
0.0849609375,
0.39697265625,
0.47314453125,
0.650390625,
-0.11785888671875,
-0.10577392578125,
-0.410888671875,
-0.18798828125,
0.08111572265625,
-0.367919921875,
0.364990234375,
-0.300537109375,
-0.357666015625,
-1.1171875,
0.58544921875,
0.6005859375,
0.57861328125,
0.453125,
0.50439453125,
0.138427734375,
0.34765625,
0.5400390625,
-0.1541748046875,
0.1080322265625,
-0.52392578125,
0.76806640625,
0.07684326171875,
-0.11041259765625,
-0.338623046875,
-0.411865234375,
0.0303192138671875,
0.38916015625,
-0.0325927734375,
-0.1688232421875,
-0.98388671875,
0.286376953125,
-0.0621337890625,
0.76904296875,
-0.55224609375,
-0.2215576171875,
-0.07696533203125,
0.33203125,
0.50830078125,
-0.79248046875,
-0.05792236328125,
-0.8466796875,
0.44970703125,
0.308349609375,
-0.0743408203125,
-0.312744140625,
-0.3134765625,
-0.638671875,
-0.88525390625,
0.705078125,
0.96044921875,
-0.012298583984375,
-0.0963134765625,
-1.181640625,
0.65185546875,
0.236328125,
-0.2138671875,
0.1513671875,
-0.050689697265625,
0.408447265625,
-0.22216796875,
0.6982421875,
-0.1162109375,
-0.78271484375,
0.149658203125,
-1.0556640625,
0.479736328125,
-0.2017822265625,
0.403564453125,
-0.448486328125,
0.036651611328125,
-0.053619384765625,
0.353759765625,
-0.294921875,
0.237548828125,
-0.2998046875,
0.259033203125,
-1.1533203125,
-0.54052734375,
0.376220703125,
-0.281982421875,
-0.04962158203125,
1.0556640625,
-0.386962890625,
-0.55322265625,
0.25439453125,
0.71435546875,
-0.2958984375,
0.2890625,
-0.24755859375,
0.277587890625,
-0.419921875,
-0.21240234375,
-0.10723876953125,
-0.389404296875,
0.84033203125,
-0.266357421875,
-0.4765625,
-0.19873046875,
-0.8544921875,
0.0831298828125,
-0.0150909423828125,
-0.9306640625,
0.5478515625,
0.09503173828125,
-0.383056640625,
-0.217529296875,
-0.147216796875,
-0.3857421875,
-0.42431640625,
-0.2476806640625,
-0.51806640625,
0.1678466796875,
0.7763671875,
1.1142578125,
0.138427734375,
-0.40673828125,
-0.1475830078125,
0.181640625,
-0.054595947265625,
-0.5302734375,
-0.00942230224609375,
-0.08856201171875,
-0.1370849609375,
-0.302734375,
0.30908203125,
0.2017822265625,
0.319580078125,
0.43359375,
0.3369140625,
0.420654296875,
0.412841796875,
-0.39453125,
1.212890625,
0.09002685546875,
-0.98681640625,
-0.70556640625,
0.4306640625,
0.07135009765625,
0.385986328125,
0.1055908203125,
-0.76708984375,
-0.7431640625,
-0.92529296875,
0.2257080078125,
-0.642578125,
-0.365478515625,
-0.86474609375,
-0.50927734375,
-0.6611328125,
0.201171875,
-0.421630859375,
-0.51513671875,
-0.08673095703125,
-1.3583984375,
0.223388671875,
-0.708984375,
-0.403076171875,
-0.75732421875,
-0.32177734375,
-0.181884765625,
1.0419921875,
0.1700439453125,
0.37841796875,
-0.18017578125,
-0.029693603515625,
0.238037109375,
-0.06549072265625,
-0.689453125,
-0.68701171875,
-0.129638671875,
-0.046905517578125,
0.00034236907958984375,
0.01239013671875,
-0.54931640625,
0.79931640625,
-0.7490234375,
0.0499267578125,
-0.382568359375,
-0.11102294921875,
-0.17431640625,
-0.7265625,
1.0166015625,
-0.39111328125,
0.155029296875,
-0.24853515625,
0.5029296875,
0.92138671875,
-0.266845703125,
-0.284423828125,
-0.5322265625,
-0.420166015625,
-1.251953125,
0.320068359375,
-0.50146484375,
0.2315673828125,
-0.72412109375,
-0.74951171875,
1.2080078125,
-0.6796875,
0.498779296875,
1.2470703125,
0.126708984375,
0.68603515625,
-0.607421875,
0.85400390625,
0.697265625,
-0.52978515625,
-0.05621337890625,
0.05255126953125,
-0.58203125,
-0.153076171875,
-0.291015625,
-1.1357421875,
-0.77392578125,
0.59814453125,
1.3251953125,
-0.472900390625,
0.75927734375,
0.1346435546875,
-1.06640625,
-0.5556640625,
0.97412109375,
0.0843505859375,
0.316162109375,
0.75146484375,
-0.2493896484375,
-0.394775390625,
0.290771484375,
-0.330810546875,
-0.421630859375,
-0.488525390625,
1.1025390625,
-0.2083740234375,
-0.5234375,
0.69287109375,
0.8701171875,
-1.205078125,
-0.7177734375,
-0.1424560546875,
0.2802734375,
-0.222412109375,
-0.96484375,
-0.07666015625,
0.6416015625,
-0.9150390625,
0.269287109375,
0.3232421875,
-0.334228515625,
0.53955078125,
0.0986328125,
0.5849609375,
-0.62158203125,
0.439697265625,
0.630859375,
-0.40673828125,
-0.31494140625,
-0.7470703125,
-0.1007080078125,
0.034881591796875,
0.08056640625,
0.78369140625,
-0.390380859375,
0.07257080078125,
0.32080078125,
-0.0426025390625,
0.82275390625,
-0.328369140625,
-0.2403564453125,
0.266845703125,
-1.1494140625,
-0.73876953125,
-0.20068359375,
0.2139892578125,
-0.2177734375,
0.56787109375,
-0.72509765625,
-0.01061248779296875,
-0.0433349609375,
0.28955078125,
-0.260986328125,
-0.828125,
-0.071533203125,
-1.041015625,
-0.486328125,
-0.70703125,
-0.6162109375,
0.1712646484375,
0.337890625,
0.2396240234375,
-0.6923828125,
0.28466796875,
0.73486328125,
-0.525390625,
0.673828125,
-0.6474609375,
0.41650390625,
-0.392578125,
-0.2225341796875,
-0.87890625,
0.06317138671875,
-0.44921875,
0.142333984375,
-0.5,
0.451171875,
-0.053466796875,
0.4931640625,
-0.08056640625,
0.2734375,
-0.3544921875,
-0.347900390625,
-0.059234619140625,
0.2291259765625,
-0.5439453125,
0.68115234375,
0.65283203125,
0.1236572265625,
-0.16015625,
-0.398193359375,
-0.359375,
-0.1416015625,
0.7265625,
0.47216796875,
-0.2069091796875,
0.34375,
-0.296142578125,
0.00525665283203125,
-1.080078125,
0.330322265625,
-0.4150390625,
0.0157012939453125,
0.0517578125,
-0.251708984375,
0.634765625,
1.4404296875,
-0.43798828125,
0.361572265625,
0.210205078125,
0.1981201171875,
0.61083984375,
0.2005615234375,
-0.11688232421875,
0.70458984375,
0.06634521484375,
-0.3037109375,
-0.1492919921875,
0.305419921875,
0.48046875,
0.043060302734375,
-0.31787109375,
-1.0068359375,
-1.1083984375,
-0.533203125,
-0.0178375244140625,
0.57080078125,
0.2822265625,
-0.6865234375,
-0.22265625,
-0.158935546875,
-0.46728515625,
0.459716796875,
-1.29296875,
-0.84130859375,
0.1610107421875,
0.136474609375,
-0.4013671875,
0.355224609375,
-0.548828125,
-0.1307373046875,
0.08270263671875,
0.42041015625,
-0.4951171875,
0.391357421875,
0.006916046142578125,
0.62353515625,
-0.052215576171875,
-0.1630859375,
0.1417236328125,
0.72314453125,
-0.720703125,
-0.485595703125,
0.17529296875,
1.177734375,
0.00746917724609375,
0.018341064453125,
-0.75048828125,
0.2978515625,
-0.055877685546875,
0.0299072265625,
-0.42431640625,
0.176025390625,
-0.251953125,
0.58544921875,
-1.2255859375,
-0.1939697265625,
0.0254669189453125,
0.2491455078125,
0.060546875,
-0.434326171875,
-0.5205078125,
0.8876953125,
1.158203125,
-0.1619873046875,
0.1334228515625,
-0.16796875,
0.64208984375,
0.109375,
-0.0667724609375,
-0.376953125,
0.458251953125,
0.31494140625,
0.75830078125,
-0.08563232421875,
0.3720703125,
0.87548828125,
0.2332763671875,
-0.21533203125,
0.371826171875,
0.483642578125,
0.1165771484375,
-0.168701171875,
-0.2352294921875,
-0.02587890625,
0.264892578125,
-0.69287109375,
0.38916015625,
-0.49951171875,
0.06182861328125,
-0.1226806640625,
-0.861328125,
0.95068359375,
-0.450439453125,
-0.2119140625,
0.266845703125,
-0.436767578125,
0.382568359375,
0.5546875,
0.30224609375,
-0.06353759765625,
0.791015625,
0.76318359375,
0.7255859375,
0.70458984375,
0.525390625,
0.3984375,
-0.66943359375,
0.126708984375,
0.29296875,
-0.31103515625,
-0.1793212890625,
-0.33544921875,
-0.97998046875,
0.72412109375,
-0.294677734375,
-0.324462890625,
0.315673828125,
-0.99169921875,
0.04278564453125,
-0.2401123046875,
0.85791015625,
-0.364013671875,
0.423828125,
0.391357421875,
-0.25927734375,
-0.47900390625,
1.060546875,
0.1707763671875,
0.342041015625,
0.10345458984375,
0.48779296875,
0.306640625,
1.3056640625,
0.73779296875,
0.040191650390625,
0.455078125,
0.77783203125,
-0.6806640625,
-0.5146484375,
-0.1763916015625,
-0.181884765625,
0.046356201171875,
-0.61181640625,
-0.1280517578125,
-0.63916015625,
0.53369140625,
0.2169189453125,
-0.86181640625,
-0.4912109375,
0.1007080078125,
-0.90185546875,
0.1488037109375,
0.58154296875,
0.418701171875,
0.279296875,
0.061187744140625,
-0.27734375,
-0.453125,
0.17138671875,
-0.60986328125,
0.281005859375,
-0.7880859375,
-0.1793212890625,
-0.71240234375,
-0.51416015625,
-0.366943359375,
-0.2283935546875,
-0.309814453125,
-0.97216796875,
0.8134765625,
0.67529296875,
0.55859375,
0.415771484375,
-0.356201171875,
0.09625244140625,
0.78125,
0.75244140625,
-0.11322021484375,
0.91162109375,
0.44921875,
-0.12176513671875,
0.1151123046875,
-0.367919921875,
0.204833984375,
-0.07666015625,
0.1922607421875,
-0.40234375,
0.43505859375,
-0.68701171875,
-1.4990234375,
0.017608642578125,
0.373291015625,
0.306640625,
-0.33056640625,
-1.078125,
-0.5673828125,
-0.9775390625,
-0.04779052734375,
-0.57666015625,
0.70556640625,
-0.1361083984375,
0.066650390625,
-0.324951171875,
-1.1474609375,
4.34765625,
1.0810546875,
1.0908203125,
0.2127685546875,
0.424072265625,
1.1025390625,
0.1734619140625,
-0.724609375,
-0.201416015625,
-0.58935546875,
0.7197265625,
-0.318359375,
0.20751953125,
0.5869140625,
0.031463623046875,
0.7900390625,
-0.423095703125,
-0.0855712890625,
0.08056640625,
-0.85400390625,
-0.880859375,
0.28125,
-0.07672119140625,
0.284912109375,
-0.06793212890625,
0.1785888671875,
0.74462890625,
-1.009765625,
-0.2347412109375,
-0.3251953125,
0.28076171875,
-0.81494140625,
1.1591796875,
-0.27685546875,
-0.07061767578125,
0.626953125,
0.210693359375,
-0.427001953125,
-0.65185546875,
0.2119140625,
-0.1064453125,
0.429931640625,
0.71044921875,
-1.005859375,
-0.09442138671875,
0.3935546875,
-0.6044921875,
0.3828125,
-0.19091796875,
-0.71923828125,
0.68603515625,
-0.27978515625,
0.312744140625,
-0.37841796875,
-1.08203125,
0.43212890625,
0.24658203125,
0.255126953125,
-0.355224609375,
0.353515625,
0.19775390625,
0.3408203125,
0.0279083251953125,
0.57275390625,
-1.0419921875,
0.4267578125,
-0.04388427734375,
0.306640625,
-0.34619140625,
-0.1146240234375,
-0.88134765625,
-0.50341796875,
-0.23291015625,
-0.3212890625,
0.32470703125,
0.27294921875,
-0.25390625,
0.552734375,
0.68798828125,
-0.499267578125,
0.302490234375,
-0.27685546875,
-0.0777587890625,
-0.5126953125,
0.438720703125,
0.83447265625,
-0.404541015625,
-0.50244140625,
-0.275146484375,
0.6064453125,
0.6083984375,
0.79638671875,
0.367431640625,
-0.55859375,
-0.248779296875
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Phoenix has a string s consisting of lowercase Latin letters. He wants to distribute all the letters of his string into k non-empty strings a_1, a_2, ..., a_k such that every letter of s goes to exactly one of the strings a_i. The strings a_i do not need to be substrings of s. Phoenix can distribute letters of s and rearrange the letters within each string a_i however he wants.
For example, if s = baba and k=2, Phoenix may distribute the letters of his string in many ways, such as:
* ba and ba
* a and abb
* ab and ab
* aa and bb
But these ways are invalid:
* baa and ba
* b and ba
* baba and empty string (a_i should be non-empty)
Phoenix wants to distribute the letters of his string s into k strings a_1, a_2, ..., a_k to minimize the lexicographically maximum string among them, i. e. minimize max(a_1, a_2, ..., a_k). Help him find the optimal distribution and print the minimal possible value of max(a_1, a_2, ..., a_k).
String x is lexicographically less than string y if either x is a prefix of y and x ≠ y, or there exists an index i (1 ≤ i ≤ min(|x|, |y|)) such that x_i < y_i and for every j (1 ≤ j < i) x_j = y_j. Here |x| denotes the length of the string x.
Input
The input consists of multiple test cases. The first line contains an integer t (1 ≤ t ≤ 1000) — the number of test cases. Each test case consists of two lines.
The first line of each test case consists of two integers n and k (1 ≤ k ≤ n ≤ 10^5) — the length of string s and the number of non-empty strings, into which Phoenix wants to distribute letters of s, respectively.
The second line of each test case contains a string s of length n consisting only of lowercase Latin letters.
It is guaranteed that the sum of n over all test cases is ≤ 10^5.
Output
Print t answers — one per test case. The i-th answer should be the minimal possible value of max(a_1, a_2, ..., a_k) in the i-th test case.
Example
Input
6
4 2
baba
5 2
baacb
5 3
baacb
5 3
aaaaa
6 4
aaxxzz
7 1
phoenix
Output
ab
abbc
b
aa
x
ehinopx
Note
In the first test case, one optimal solution is to distribute baba into ab and ab.
In the second test case, one optimal solution is to distribute baacb into abbc and a.
In the third test case, one optimal solution is to distribute baacb into ac, ab, and b.
In the fourth test case, one optimal solution is to distribute aaaaa into aa, aa, and a.
In the fifth test case, one optimal solution is to distribute aaxxzz into az, az, x, and x.
In the sixth test case, one optimal solution is to distribute phoenix into ehinopx.
Submitted Solution:
```
t = int(input())
for _ in range(t):
n, k = map(int, input().split())
s = sorted([c for c in input()])
if s[k-1] != s[0]:
print(s[k-1])
else:
fi = s[0]
se = None
three = False
for i in range(n):
if s[i] != fi:
if se == None:
se = s[i]
elif s[i] != se:
three = True
break
if three:
print("".join(s[k-1:]))
else:
i = 0
while i < n and s[0] == s[i]:
i += 1
if i == n:
string = [s[0]] * (n//k)
if n % k != 0:
string += [s[0]]
print("".join(string))
elif i == k:
if (n - i) % k == 0:
print(s[0] + s[i]*((n-i)//k))
else:
print(s[0] + s[i]*((n-i)//k + 1))
else:
print("".join(s[k-1:]))
```
Yes
| 10,936 | [
0.29248046875,
0.30419921875,
0.43798828125,
0.275390625,
-0.609375,
-0.469970703125,
-0.186279296875,
0.1416015625,
-0.07720947265625,
0.87939453125,
0.9443359375,
0.1571044921875,
0.043212890625,
-0.84912109375,
-0.8251953125,
0.267578125,
-0.70166015625,
-0.52783203125,
-0.367919921875,
-0.26025390625,
0.1336669921875,
0.0865478515625,
-1.58203125,
-0.281005859375,
-0.310302734375,
0.82666015625,
0.1861572265625,
-0.043304443359375,
1.111328125,
0.7841796875,
0.01898193359375,
-0.355712890625,
0.61181640625,
-1.0869140625,
-0.27783203125,
-0.6708984375,
0.85009765625,
-0.418701171875,
-0.4501953125,
-0.7626953125,
0.49267578125,
-0.8076171875,
0.51708984375,
-0.61279296875,
-0.9814453125,
-0.1126708984375,
-0.1331787109375,
-0.41064453125,
-0.5654296875,
-0.373779296875,
0.0968017578125,
-0.38720703125,
0.60693359375,
-0.51318359375,
0.1279296875,
0.23486328125,
0.0335693359375,
-0.05841064453125,
-0.82470703125,
0.1536865234375,
0.1656494140625,
0.315673828125,
-0.380859375,
-0.74755859375,
-0.17724609375,
0.255859375,
-0.077880859375,
-0.010223388671875,
0.1444091796875,
-0.86962890625,
-0.4150390625,
0.21826171875,
-0.38623046875,
-0.5830078125,
-0.48681640625,
0.1240234375,
0.1583251953125,
-0.158203125,
-0.6650390625,
0.7998046875,
0.074951171875,
0.755859375,
0.278564453125,
0.01378631591796875,
-0.71923828125,
-0.48095703125,
0.21044921875,
0.36962890625,
0.1439208984375,
0.1390380859375,
0.08038330078125,
0.434814453125,
-0.63818359375,
0.240234375,
0.392822265625,
0.7294921875,
-0.12445068359375,
0.399169921875,
0.1595458984375,
0.392333984375,
1.1328125,
0.751953125,
-0.43603515625,
1.1767578125,
-0.642578125,
0.1923828125,
-0.2205810546875,
-0.2489013671875,
-0.2142333984375,
-0.380859375,
-0.160400390625,
-0.0200653076171875,
0.3349609375,
0.33251953125,
-0.36962890625,
0.6708984375,
-0.08544921875,
0.765625,
-0.9130859375,
-0.046295166015625,
0.5693359375,
0.06024169921875,
0.5576171875,
-0.1923828125,
0.054931640625,
-0.2259521484375,
-0.59423828125,
0.74560546875,
-0.7216796875,
-0.0679931640625,
0.5927734375,
0.09130859375,
-0.4970703125,
0.408447265625,
0.04827880859375,
0.4482421875,
0.06756591796875,
0.50732421875,
0.89501953125,
-0.1824951171875,
0.68505859375,
-0.1490478515625,
0.04620361328125,
1.515625,
0.1470947265625,
-0.283935546875,
0.5654296875,
0.0716552734375,
-0.58740234375,
0.87841796875,
-0.8251953125,
0.58544921875,
0.06494140625,
0.31787109375,
-0.22216796875,
0.08642578125,
0.0099639892578125,
0.63525390625,
0.4013671875,
0.2425537109375,
-0.638671875,
-0.082763671875,
-0.3427734375,
0.8720703125,
-0.35400390625,
0.8466796875,
-0.74609375,
-0.416015625,
-0.07958984375,
-0.38671875,
-0.0389404296875,
-0.349365234375,
0.058349609375,
0.8896484375,
0.2252197265625,
0.8349609375,
0.8154296875,
-0.669921875,
0.38623046875,
0.33251953125,
-0.213623046875,
0.339111328125,
0.284912109375,
0.6904296875,
0.4306640625,
0.223876953125,
0.004062652587890625,
-0.345703125,
-0.6591796875,
-0.6708984375,
0.175537109375,
0.6083984375,
-0.29052734375,
0.263916015625,
-0.1661376953125,
0.1661376953125,
-0.6904296875,
-0.2259521484375,
-0.05999755859375,
-1.0146484375,
-0.334716796875,
0.412353515625,
-0.09930419921875,
0.2491455078125,
-0.7109375,
-0.44677734375,
0.203857421875,
1.0546875,
-0.11505126953125,
0.057037353515625,
0.432861328125,
0.4228515625,
-0.2364501953125,
0.25439453125,
0.07244873046875,
-0.1439208984375,
-0.53173828125,
0.60888671875,
-0.5625,
0.03643798828125,
-0.10882568359375,
0.90478515625,
0.25390625,
0.2489013671875,
-0.5830078125,
-0.2117919921875,
0.471435546875,
1.310546875,
-0.1634521484375,
0.56103515625,
0.54345703125,
0.88427734375,
0.525390625,
0.78466796875,
0.456298828125,
0.45751953125,
0.74853515625,
0.71484375,
-0.12347412109375,
0.287353515625,
0.19970703125,
0.5009765625,
0.51123046875,
0.54052734375,
0.10540771484375,
0.5380859375,
-0.34033203125,
0.34326171875,
-0.83935546875,
0.2066650390625,
-0.1875,
1.076171875,
0.243896484375,
0.51171875,
-0.364013671875,
-0.327392578125,
0.32763671875,
0.744140625,
-1.08203125,
-0.74755859375,
-0.153076171875,
-0.0219573974609375,
0.2080078125,
-0.00814056396484375,
0.287841796875,
0.348388671875,
0.72119140625,
-0.07415771484375,
-0.254638671875,
-0.327392578125,
-1.146484375,
-0.9599609375,
-0.76318359375,
-0.38232421875,
-0.53466796875,
0.1475830078125,
0.513671875,
-0.984375,
0.06158447265625,
-0.66796875,
0.11029052734375,
-0.06292724609375,
-0.71875,
0.404052734375,
0.1749267578125,
0.875,
-0.82958984375,
0.56591796875,
0.03155517578125,
1.0146484375,
-0.92529296875,
-0.304931640625,
-0.361328125,
-0.498779296875,
0.49853515625,
0.07379150390625,
0.2196044921875,
0.061065673828125,
-0.55810546875,
-0.95361328125,
-0.2308349609375,
0.08447265625,
-0.48095703125,
0.2529296875,
-0.77001953125,
0.9970703125,
0.46484375,
-0.7158203125,
0.369384765625,
1.0166015625,
-0.78515625,
0.399169921875,
0.281005859375,
-0.08807373046875,
-0.662109375,
1.2587890625,
0.40234375,
0.33544921875,
-0.5380859375,
-0.7080078125,
-0.176513671875,
0.2841796875,
0.1531982421875,
-0.77978515625,
0.004367828369140625,
0.9033203125,
-0.12335205078125,
-1.34375,
0.62158203125,
-0.99658203125,
-0.7421875,
-0.256591796875,
-0.626953125,
0.68212890625,
0.619140625,
0.350830078125,
-0.36865234375,
-0.28076171875,
-0.0579833984375,
0.6171875,
0.170654296875,
-0.8515625,
-0.07708740234375,
0.6005859375,
-0.16162109375,
0.032501220703125,
0.261474609375,
-0.46728515625,
-0.2041015625,
-0.01503753662109375,
-0.0958251953125,
0.83251953125,
0.151611328125,
0.4443359375,
0.2364501953125,
0.53955078125,
-0.89404296875,
-0.09698486328125,
-0.162109375,
0.5927734375,
0.331298828125,
0.499267578125,
0.50634765625,
-0.10491943359375,
-0.806640625,
-1.3505859375,
0.33154296875,
0.2479248046875,
0.6103515625,
-0.76904296875,
0.908203125,
0.10980224609375,
-0.57958984375,
0.53759765625,
-0.734375,
0.193115234375,
1.025390625,
-0.363037109375,
0.8837890625,
-0.87646484375,
-0.10198974609375,
0.009765625,
0.0849609375,
0.39697265625,
0.47314453125,
0.650390625,
-0.11785888671875,
-0.10577392578125,
-0.410888671875,
-0.18798828125,
0.08111572265625,
-0.367919921875,
0.364990234375,
-0.300537109375,
-0.357666015625,
-1.1171875,
0.58544921875,
0.6005859375,
0.57861328125,
0.453125,
0.50439453125,
0.138427734375,
0.34765625,
0.5400390625,
-0.1541748046875,
0.1080322265625,
-0.52392578125,
0.76806640625,
0.07684326171875,
-0.11041259765625,
-0.338623046875,
-0.411865234375,
0.0303192138671875,
0.38916015625,
-0.0325927734375,
-0.1688232421875,
-0.98388671875,
0.286376953125,
-0.0621337890625,
0.76904296875,
-0.55224609375,
-0.2215576171875,
-0.07696533203125,
0.33203125,
0.50830078125,
-0.79248046875,
-0.05792236328125,
-0.8466796875,
0.44970703125,
0.308349609375,
-0.0743408203125,
-0.312744140625,
-0.3134765625,
-0.638671875,
-0.88525390625,
0.705078125,
0.96044921875,
-0.012298583984375,
-0.0963134765625,
-1.181640625,
0.65185546875,
0.236328125,
-0.2138671875,
0.1513671875,
-0.050689697265625,
0.408447265625,
-0.22216796875,
0.6982421875,
-0.1162109375,
-0.78271484375,
0.149658203125,
-1.0556640625,
0.479736328125,
-0.2017822265625,
0.403564453125,
-0.448486328125,
0.036651611328125,
-0.053619384765625,
0.353759765625,
-0.294921875,
0.237548828125,
-0.2998046875,
0.259033203125,
-1.1533203125,
-0.54052734375,
0.376220703125,
-0.281982421875,
-0.04962158203125,
1.0556640625,
-0.386962890625,
-0.55322265625,
0.25439453125,
0.71435546875,
-0.2958984375,
0.2890625,
-0.24755859375,
0.277587890625,
-0.419921875,
-0.21240234375,
-0.10723876953125,
-0.389404296875,
0.84033203125,
-0.266357421875,
-0.4765625,
-0.19873046875,
-0.8544921875,
0.0831298828125,
-0.0150909423828125,
-0.9306640625,
0.5478515625,
0.09503173828125,
-0.383056640625,
-0.217529296875,
-0.147216796875,
-0.3857421875,
-0.42431640625,
-0.2476806640625,
-0.51806640625,
0.1678466796875,
0.7763671875,
1.1142578125,
0.138427734375,
-0.40673828125,
-0.1475830078125,
0.181640625,
-0.054595947265625,
-0.5302734375,
-0.00942230224609375,
-0.08856201171875,
-0.1370849609375,
-0.302734375,
0.30908203125,
0.2017822265625,
0.319580078125,
0.43359375,
0.3369140625,
0.420654296875,
0.412841796875,
-0.39453125,
1.212890625,
0.09002685546875,
-0.98681640625,
-0.70556640625,
0.4306640625,
0.07135009765625,
0.385986328125,
0.1055908203125,
-0.76708984375,
-0.7431640625,
-0.92529296875,
0.2257080078125,
-0.642578125,
-0.365478515625,
-0.86474609375,
-0.50927734375,
-0.6611328125,
0.201171875,
-0.421630859375,
-0.51513671875,
-0.08673095703125,
-1.3583984375,
0.223388671875,
-0.708984375,
-0.403076171875,
-0.75732421875,
-0.32177734375,
-0.181884765625,
1.0419921875,
0.1700439453125,
0.37841796875,
-0.18017578125,
-0.029693603515625,
0.238037109375,
-0.06549072265625,
-0.689453125,
-0.68701171875,
-0.129638671875,
-0.046905517578125,
0.00034236907958984375,
0.01239013671875,
-0.54931640625,
0.79931640625,
-0.7490234375,
0.0499267578125,
-0.382568359375,
-0.11102294921875,
-0.17431640625,
-0.7265625,
1.0166015625,
-0.39111328125,
0.155029296875,
-0.24853515625,
0.5029296875,
0.92138671875,
-0.266845703125,
-0.284423828125,
-0.5322265625,
-0.420166015625,
-1.251953125,
0.320068359375,
-0.50146484375,
0.2315673828125,
-0.72412109375,
-0.74951171875,
1.2080078125,
-0.6796875,
0.498779296875,
1.2470703125,
0.126708984375,
0.68603515625,
-0.607421875,
0.85400390625,
0.697265625,
-0.52978515625,
-0.05621337890625,
0.05255126953125,
-0.58203125,
-0.153076171875,
-0.291015625,
-1.1357421875,
-0.77392578125,
0.59814453125,
1.3251953125,
-0.472900390625,
0.75927734375,
0.1346435546875,
-1.06640625,
-0.5556640625,
0.97412109375,
0.0843505859375,
0.316162109375,
0.75146484375,
-0.2493896484375,
-0.394775390625,
0.290771484375,
-0.330810546875,
-0.421630859375,
-0.488525390625,
1.1025390625,
-0.2083740234375,
-0.5234375,
0.69287109375,
0.8701171875,
-1.205078125,
-0.7177734375,
-0.1424560546875,
0.2802734375,
-0.222412109375,
-0.96484375,
-0.07666015625,
0.6416015625,
-0.9150390625,
0.269287109375,
0.3232421875,
-0.334228515625,
0.53955078125,
0.0986328125,
0.5849609375,
-0.62158203125,
0.439697265625,
0.630859375,
-0.40673828125,
-0.31494140625,
-0.7470703125,
-0.1007080078125,
0.034881591796875,
0.08056640625,
0.78369140625,
-0.390380859375,
0.07257080078125,
0.32080078125,
-0.0426025390625,
0.82275390625,
-0.328369140625,
-0.2403564453125,
0.266845703125,
-1.1494140625,
-0.73876953125,
-0.20068359375,
0.2139892578125,
-0.2177734375,
0.56787109375,
-0.72509765625,
-0.01061248779296875,
-0.0433349609375,
0.28955078125,
-0.260986328125,
-0.828125,
-0.071533203125,
-1.041015625,
-0.486328125,
-0.70703125,
-0.6162109375,
0.1712646484375,
0.337890625,
0.2396240234375,
-0.6923828125,
0.28466796875,
0.73486328125,
-0.525390625,
0.673828125,
-0.6474609375,
0.41650390625,
-0.392578125,
-0.2225341796875,
-0.87890625,
0.06317138671875,
-0.44921875,
0.142333984375,
-0.5,
0.451171875,
-0.053466796875,
0.4931640625,
-0.08056640625,
0.2734375,
-0.3544921875,
-0.347900390625,
-0.059234619140625,
0.2291259765625,
-0.5439453125,
0.68115234375,
0.65283203125,
0.1236572265625,
-0.16015625,
-0.398193359375,
-0.359375,
-0.1416015625,
0.7265625,
0.47216796875,
-0.2069091796875,
0.34375,
-0.296142578125,
0.00525665283203125,
-1.080078125,
0.330322265625,
-0.4150390625,
0.0157012939453125,
0.0517578125,
-0.251708984375,
0.634765625,
1.4404296875,
-0.43798828125,
0.361572265625,
0.210205078125,
0.1981201171875,
0.61083984375,
0.2005615234375,
-0.11688232421875,
0.70458984375,
0.06634521484375,
-0.3037109375,
-0.1492919921875,
0.305419921875,
0.48046875,
0.043060302734375,
-0.31787109375,
-1.0068359375,
-1.1083984375,
-0.533203125,
-0.0178375244140625,
0.57080078125,
0.2822265625,
-0.6865234375,
-0.22265625,
-0.158935546875,
-0.46728515625,
0.459716796875,
-1.29296875,
-0.84130859375,
0.1610107421875,
0.136474609375,
-0.4013671875,
0.355224609375,
-0.548828125,
-0.1307373046875,
0.08270263671875,
0.42041015625,
-0.4951171875,
0.391357421875,
0.006916046142578125,
0.62353515625,
-0.052215576171875,
-0.1630859375,
0.1417236328125,
0.72314453125,
-0.720703125,
-0.485595703125,
0.17529296875,
1.177734375,
0.00746917724609375,
0.018341064453125,
-0.75048828125,
0.2978515625,
-0.055877685546875,
0.0299072265625,
-0.42431640625,
0.176025390625,
-0.251953125,
0.58544921875,
-1.2255859375,
-0.1939697265625,
0.0254669189453125,
0.2491455078125,
0.060546875,
-0.434326171875,
-0.5205078125,
0.8876953125,
1.158203125,
-0.1619873046875,
0.1334228515625,
-0.16796875,
0.64208984375,
0.109375,
-0.0667724609375,
-0.376953125,
0.458251953125,
0.31494140625,
0.75830078125,
-0.08563232421875,
0.3720703125,
0.87548828125,
0.2332763671875,
-0.21533203125,
0.371826171875,
0.483642578125,
0.1165771484375,
-0.168701171875,
-0.2352294921875,
-0.02587890625,
0.264892578125,
-0.69287109375,
0.38916015625,
-0.49951171875,
0.06182861328125,
-0.1226806640625,
-0.861328125,
0.95068359375,
-0.450439453125,
-0.2119140625,
0.266845703125,
-0.436767578125,
0.382568359375,
0.5546875,
0.30224609375,
-0.06353759765625,
0.791015625,
0.76318359375,
0.7255859375,
0.70458984375,
0.525390625,
0.3984375,
-0.66943359375,
0.126708984375,
0.29296875,
-0.31103515625,
-0.1793212890625,
-0.33544921875,
-0.97998046875,
0.72412109375,
-0.294677734375,
-0.324462890625,
0.315673828125,
-0.99169921875,
0.04278564453125,
-0.2401123046875,
0.85791015625,
-0.364013671875,
0.423828125,
0.391357421875,
-0.25927734375,
-0.47900390625,
1.060546875,
0.1707763671875,
0.342041015625,
0.10345458984375,
0.48779296875,
0.306640625,
1.3056640625,
0.73779296875,
0.040191650390625,
0.455078125,
0.77783203125,
-0.6806640625,
-0.5146484375,
-0.1763916015625,
-0.181884765625,
0.046356201171875,
-0.61181640625,
-0.1280517578125,
-0.63916015625,
0.53369140625,
0.2169189453125,
-0.86181640625,
-0.4912109375,
0.1007080078125,
-0.90185546875,
0.1488037109375,
0.58154296875,
0.418701171875,
0.279296875,
0.061187744140625,
-0.27734375,
-0.453125,
0.17138671875,
-0.60986328125,
0.281005859375,
-0.7880859375,
-0.1793212890625,
-0.71240234375,
-0.51416015625,
-0.366943359375,
-0.2283935546875,
-0.309814453125,
-0.97216796875,
0.8134765625,
0.67529296875,
0.55859375,
0.415771484375,
-0.356201171875,
0.09625244140625,
0.78125,
0.75244140625,
-0.11322021484375,
0.91162109375,
0.44921875,
-0.12176513671875,
0.1151123046875,
-0.367919921875,
0.204833984375,
-0.07666015625,
0.1922607421875,
-0.40234375,
0.43505859375,
-0.68701171875,
-1.4990234375,
0.017608642578125,
0.373291015625,
0.306640625,
-0.33056640625,
-1.078125,
-0.5673828125,
-0.9775390625,
-0.04779052734375,
-0.57666015625,
0.70556640625,
-0.1361083984375,
0.066650390625,
-0.324951171875,
-1.1474609375,
4.34765625,
1.0810546875,
1.0908203125,
0.2127685546875,
0.424072265625,
1.1025390625,
0.1734619140625,
-0.724609375,
-0.201416015625,
-0.58935546875,
0.7197265625,
-0.318359375,
0.20751953125,
0.5869140625,
0.031463623046875,
0.7900390625,
-0.423095703125,
-0.0855712890625,
0.08056640625,
-0.85400390625,
-0.880859375,
0.28125,
-0.07672119140625,
0.284912109375,
-0.06793212890625,
0.1785888671875,
0.74462890625,
-1.009765625,
-0.2347412109375,
-0.3251953125,
0.28076171875,
-0.81494140625,
1.1591796875,
-0.27685546875,
-0.07061767578125,
0.626953125,
0.210693359375,
-0.427001953125,
-0.65185546875,
0.2119140625,
-0.1064453125,
0.429931640625,
0.71044921875,
-1.005859375,
-0.09442138671875,
0.3935546875,
-0.6044921875,
0.3828125,
-0.19091796875,
-0.71923828125,
0.68603515625,
-0.27978515625,
0.312744140625,
-0.37841796875,
-1.08203125,
0.43212890625,
0.24658203125,
0.255126953125,
-0.355224609375,
0.353515625,
0.19775390625,
0.3408203125,
0.0279083251953125,
0.57275390625,
-1.0419921875,
0.4267578125,
-0.04388427734375,
0.306640625,
-0.34619140625,
-0.1146240234375,
-0.88134765625,
-0.50341796875,
-0.23291015625,
-0.3212890625,
0.32470703125,
0.27294921875,
-0.25390625,
0.552734375,
0.68798828125,
-0.499267578125,
0.302490234375,
-0.27685546875,
-0.0777587890625,
-0.5126953125,
0.438720703125,
0.83447265625,
-0.404541015625,
-0.50244140625,
-0.275146484375,
0.6064453125,
0.6083984375,
0.79638671875,
0.367431640625,
-0.55859375,
-0.248779296875
] | 0 |
Evaluate the correctness of the submitted Python 2 solution to the coding contest problem. Provide a "Yes" or "No" response.
Phoenix has a string s consisting of lowercase Latin letters. He wants to distribute all the letters of his string into k non-empty strings a_1, a_2, ..., a_k such that every letter of s goes to exactly one of the strings a_i. The strings a_i do not need to be substrings of s. Phoenix can distribute letters of s and rearrange the letters within each string a_i however he wants.
For example, if s = baba and k=2, Phoenix may distribute the letters of his string in many ways, such as:
* ba and ba
* a and abb
* ab and ab
* aa and bb
But these ways are invalid:
* baa and ba
* b and ba
* baba and empty string (a_i should be non-empty)
Phoenix wants to distribute the letters of his string s into k strings a_1, a_2, ..., a_k to minimize the lexicographically maximum string among them, i. e. minimize max(a_1, a_2, ..., a_k). Help him find the optimal distribution and print the minimal possible value of max(a_1, a_2, ..., a_k).
String x is lexicographically less than string y if either x is a prefix of y and x ≠ y, or there exists an index i (1 ≤ i ≤ min(|x|, |y|)) such that x_i < y_i and for every j (1 ≤ j < i) x_j = y_j. Here |x| denotes the length of the string x.
Input
The input consists of multiple test cases. The first line contains an integer t (1 ≤ t ≤ 1000) — the number of test cases. Each test case consists of two lines.
The first line of each test case consists of two integers n and k (1 ≤ k ≤ n ≤ 10^5) — the length of string s and the number of non-empty strings, into which Phoenix wants to distribute letters of s, respectively.
The second line of each test case contains a string s of length n consisting only of lowercase Latin letters.
It is guaranteed that the sum of n over all test cases is ≤ 10^5.
Output
Print t answers — one per test case. The i-th answer should be the minimal possible value of max(a_1, a_2, ..., a_k) in the i-th test case.
Example
Input
6
4 2
baba
5 2
baacb
5 3
baacb
5 3
aaaaa
6 4
aaxxzz
7 1
phoenix
Output
ab
abbc
b
aa
x
ehinopx
Note
In the first test case, one optimal solution is to distribute baba into ab and ab.
In the second test case, one optimal solution is to distribute baacb into abbc and a.
In the third test case, one optimal solution is to distribute baacb into ac, ab, and b.
In the fourth test case, one optimal solution is to distribute aaaaa into aa, aa, and a.
In the fifth test case, one optimal solution is to distribute aaxxzz into az, az, x, and x.
In the sixth test case, one optimal solution is to distribute phoenix into ehinopx.
Submitted Solution:
```
from sys import stdin, stdout
from collections import Counter, defaultdict
from itertools import permutations, combinations
raw_input = stdin.readline
pr = stdout.write
def in_num():
return int(raw_input())
def in_arr():
return map(int,raw_input().split())
def pr_num(n):
stdout.write(str(n)+'\n')
def pr_arr(arr):
pr(' '.join(map(str,arr))+'\n')
# fast read function for total integer input
def inp():
# this function returns whole input of
# space/line seperated integers
# Use Ctrl+D to flush stdin.
return stdin.read().split()
range = xrange # not for python 3.0+
inp=inp()
pos=1
for t in range(int(inp[0])):
n,k=int(inp[pos]),int(inp[pos+1])
pos+=2
s=list(inp[pos])
pos+=1
s.sort()
ans=[s[i] for i in range(k)]
if n==k or ans[0]!=ans[-1]:
pr(ans[-1]+'\n')
continue
if s[k]==s[-1]:
ln=n-k
pr(ans[0]+''.join(s[k]*((ln/k)+int(ln%k!=0)))+'\n')
else:
pr(ans[0]+''.join(s[k:])+'\n')
```
Yes
| 10,937 | [
0.25537109375,
0.31982421875,
0.46630859375,
0.318115234375,
-0.64404296875,
-0.460693359375,
-0.1951904296875,
0.1368408203125,
-0.057159423828125,
0.93115234375,
0.9599609375,
0.16943359375,
0.044708251953125,
-0.802734375,
-0.8310546875,
0.34619140625,
-0.69482421875,
-0.57861328125,
-0.4013671875,
-0.2445068359375,
0.188720703125,
0.11474609375,
-1.568359375,
-0.30908203125,
-0.291259765625,
0.81201171875,
0.1473388671875,
-0.103271484375,
1.16796875,
0.82666015625,
0.0235137939453125,
-0.296875,
0.5615234375,
-1.0849609375,
-0.305908203125,
-0.71875,
0.88525390625,
-0.39794921875,
-0.44921875,
-0.76416015625,
0.51318359375,
-0.81787109375,
0.5322265625,
-0.68212890625,
-0.93603515625,
-0.161376953125,
-0.1290283203125,
-0.467041015625,
-0.65234375,
-0.380126953125,
0.1287841796875,
-0.38671875,
0.6083984375,
-0.499755859375,
0.08984375,
0.2205810546875,
0.06268310546875,
0.0012664794921875,
-0.8232421875,
0.10919189453125,
0.17724609375,
0.328369140625,
-0.41748046875,
-0.80029296875,
-0.175537109375,
0.17578125,
-0.04168701171875,
-0.059539794921875,
0.146240234375,
-0.79345703125,
-0.40869140625,
0.24072265625,
-0.40185546875,
-0.59716796875,
-0.4775390625,
0.1253662109375,
0.1590576171875,
-0.21484375,
-0.580078125,
0.84619140625,
0.03350830078125,
0.7431640625,
0.30224609375,
-0.06488037109375,
-0.76611328125,
-0.446044921875,
0.266357421875,
0.354248046875,
0.1522216796875,
0.165771484375,
0.10986328125,
0.488525390625,
-0.650390625,
0.24462890625,
0.405029296875,
0.75390625,
-0.0716552734375,
0.4052734375,
0.1617431640625,
0.455322265625,
1.109375,
0.7177734375,
-0.404296875,
1.2197265625,
-0.69482421875,
0.1343994140625,
-0.1607666015625,
-0.242431640625,
-0.267333984375,
-0.4033203125,
-0.13232421875,
0.0697021484375,
0.297607421875,
0.283203125,
-0.381103515625,
0.7001953125,
-0.03955078125,
0.78955078125,
-0.9560546875,
-0.128173828125,
0.5478515625,
0.08245849609375,
0.53125,
-0.22900390625,
0.08099365234375,
-0.2359619140625,
-0.54443359375,
0.7236328125,
-0.7998046875,
-0.11370849609375,
0.5224609375,
0.1505126953125,
-0.52001953125,
0.42138671875,
0.12176513671875,
0.428955078125,
0.0611572265625,
0.52197265625,
0.9091796875,
-0.167724609375,
0.74658203125,
-0.155517578125,
-0.043426513671875,
1.486328125,
0.189208984375,
-0.274658203125,
0.5615234375,
0.143798828125,
-0.615234375,
0.88427734375,
-0.80517578125,
0.59423828125,
0.05560302734375,
0.28125,
-0.260986328125,
0.09967041015625,
0.046722412109375,
0.60888671875,
0.431396484375,
0.24658203125,
-0.66748046875,
-0.1494140625,
-0.35595703125,
0.8916015625,
-0.30908203125,
0.89404296875,
-0.7314453125,
-0.384033203125,
-0.011993408203125,
-0.479248046875,
-0.04193115234375,
-0.4013671875,
0.0130767822265625,
0.87255859375,
0.244140625,
0.81201171875,
0.822265625,
-0.6474609375,
0.416259765625,
0.324951171875,
-0.2313232421875,
0.33056640625,
0.287841796875,
0.68212890625,
0.35546875,
0.273193359375,
0.004974365234375,
-0.357177734375,
-0.63427734375,
-0.7236328125,
0.145751953125,
0.6044921875,
-0.2479248046875,
0.278564453125,
-0.2388916015625,
0.1937255859375,
-0.7783203125,
-0.1805419921875,
-0.10076904296875,
-1.0517578125,
-0.33447265625,
0.468505859375,
-0.056488037109375,
0.353271484375,
-0.70361328125,
-0.468017578125,
0.1776123046875,
1.06640625,
-0.130126953125,
0.039398193359375,
0.35302734375,
0.40966796875,
-0.1536865234375,
0.322509765625,
0.1490478515625,
-0.13330078125,
-0.51123046875,
0.5537109375,
-0.583984375,
0.10626220703125,
-0.11065673828125,
0.85107421875,
0.2685546875,
0.2440185546875,
-0.6103515625,
-0.1973876953125,
0.5087890625,
1.2333984375,
-0.18017578125,
0.57763671875,
0.466796875,
0.9150390625,
0.484619140625,
0.72705078125,
0.482177734375,
0.46044921875,
0.75,
0.72509765625,
-0.146240234375,
0.3232421875,
0.2452392578125,
0.4443359375,
0.5810546875,
0.55517578125,
0.112060546875,
0.50048828125,
-0.379150390625,
0.268310546875,
-0.86572265625,
0.2164306640625,
-0.1728515625,
1.185546875,
0.34423828125,
0.521484375,
-0.3427734375,
-0.2388916015625,
0.395263671875,
0.6962890625,
-1.08984375,
-0.78173828125,
-0.06488037109375,
-0.0162353515625,
0.216552734375,
-0.043914794921875,
0.246826171875,
0.332763671875,
0.68798828125,
-0.11981201171875,
-0.237060546875,
-0.34619140625,
-1.12109375,
-0.97314453125,
-0.7998046875,
-0.4990234375,
-0.48876953125,
0.140625,
0.5341796875,
-0.96875,
0.08050537109375,
-0.62109375,
0.08575439453125,
-0.0262298583984375,
-0.720703125,
0.301513671875,
0.1759033203125,
0.9052734375,
-0.833984375,
0.60107421875,
-0.058441162109375,
1.0380859375,
-0.9130859375,
-0.396728515625,
-0.356689453125,
-0.552734375,
0.407470703125,
-0.01120758056640625,
0.25732421875,
0.01052093505859375,
-0.5947265625,
-0.9375,
-0.21240234375,
0.047027587890625,
-0.468505859375,
0.2095947265625,
-0.79052734375,
1.013671875,
0.513671875,
-0.7607421875,
0.38427734375,
1.03515625,
-0.7919921875,
0.375732421875,
0.269775390625,
-0.1436767578125,
-0.63427734375,
1.2431640625,
0.469482421875,
0.364501953125,
-0.60400390625,
-0.6884765625,
-0.1712646484375,
0.330322265625,
0.2132568359375,
-0.7353515625,
-0.03179931640625,
0.95166015625,
-0.16064453125,
-1.376953125,
0.640625,
-0.89794921875,
-0.791015625,
-0.2127685546875,
-0.5966796875,
0.67724609375,
0.6201171875,
0.388916015625,
-0.361328125,
-0.257080078125,
-0.1072998046875,
0.69775390625,
0.1805419921875,
-0.84912109375,
-0.09820556640625,
0.55029296875,
-0.172119140625,
0.04620361328125,
0.30419921875,
-0.470703125,
-0.1776123046875,
0.0165557861328125,
-0.139892578125,
0.857421875,
0.1968994140625,
0.497314453125,
0.2626953125,
0.61669921875,
-0.88134765625,
-0.126220703125,
-0.11932373046875,
0.6015625,
0.261962890625,
0.583984375,
0.5361328125,
-0.1309814453125,
-0.7470703125,
-1.345703125,
0.293701171875,
0.27197265625,
0.57470703125,
-0.79931640625,
0.83154296875,
0.1021728515625,
-0.60986328125,
0.541015625,
-0.72412109375,
0.14697265625,
1.0205078125,
-0.3798828125,
0.81005859375,
-0.8779296875,
-0.140625,
0.0304107666015625,
0.07366943359375,
0.364990234375,
0.45361328125,
0.6708984375,
-0.0904541015625,
-0.059326171875,
-0.413818359375,
-0.220458984375,
0.125244140625,
-0.404052734375,
0.419921875,
-0.301025390625,
-0.330322265625,
-1.09765625,
0.56689453125,
0.54052734375,
0.55908203125,
0.413330078125,
0.54833984375,
0.1171875,
0.3212890625,
0.5771484375,
-0.2010498046875,
0.1236572265625,
-0.5048828125,
0.763671875,
0.054962158203125,
-0.184814453125,
-0.364501953125,
-0.419921875,
0.04852294921875,
0.390869140625,
-0.09088134765625,
-0.2008056640625,
-0.9765625,
0.32421875,
-0.03955078125,
0.7578125,
-0.55517578125,
-0.1873779296875,
-0.0787353515625,
0.387451171875,
0.56298828125,
-0.82177734375,
-0.041900634765625,
-0.86083984375,
0.465576171875,
0.249755859375,
-0.027191162109375,
-0.286865234375,
-0.330810546875,
-0.5390625,
-0.92431640625,
0.712890625,
0.92724609375,
-0.0445556640625,
-0.1796875,
-1.111328125,
0.71533203125,
0.235107421875,
-0.2049560546875,
0.1651611328125,
-0.045135498046875,
0.326904296875,
-0.2315673828125,
0.67626953125,
-0.140380859375,
-0.67822265625,
0.198486328125,
-1.033203125,
0.442626953125,
-0.1400146484375,
0.33203125,
-0.33544921875,
0.06689453125,
-0.0721435546875,
0.34423828125,
-0.239013671875,
0.2802734375,
-0.2269287109375,
0.253662109375,
-1.080078125,
-0.591796875,
0.355224609375,
-0.2208251953125,
-0.13037109375,
1.0185546875,
-0.3662109375,
-0.466064453125,
0.2158203125,
0.6669921875,
-0.36767578125,
0.36572265625,
-0.263671875,
0.27392578125,
-0.407470703125,
-0.2320556640625,
-0.16015625,
-0.359619140625,
0.826171875,
-0.280029296875,
-0.489013671875,
-0.23681640625,
-0.849609375,
0.08367919921875,
-0.0226593017578125,
-0.91015625,
0.57177734375,
0.061126708984375,
-0.397216796875,
-0.1455078125,
-0.1553955078125,
-0.398193359375,
-0.34326171875,
-0.269287109375,
-0.54833984375,
0.151611328125,
0.72412109375,
1.1201171875,
0.19384765625,
-0.366455078125,
-0.1971435546875,
0.1552734375,
-0.08013916015625,
-0.54248046875,
-0.048065185546875,
-0.10028076171875,
-0.1978759765625,
-0.377197265625,
0.353759765625,
0.1431884765625,
0.2509765625,
0.336181640625,
0.345458984375,
0.446044921875,
0.46826171875,
-0.372314453125,
1.234375,
0.08673095703125,
-1.029296875,
-0.66162109375,
0.43310546875,
0.09246826171875,
0.351318359375,
0.191650390625,
-0.74267578125,
-0.751953125,
-0.892578125,
0.195068359375,
-0.71630859375,
-0.294189453125,
-0.86376953125,
-0.50830078125,
-0.73876953125,
0.1832275390625,
-0.4541015625,
-0.515625,
-0.08343505859375,
-1.2822265625,
0.1593017578125,
-0.72900390625,
-0.3974609375,
-0.71142578125,
-0.31591796875,
-0.1737060546875,
1.056640625,
0.10418701171875,
0.408935546875,
-0.1378173828125,
-0.00007021427154541016,
0.195556640625,
-0.00809478759765625,
-0.62158203125,
-0.73779296875,
-0.0860595703125,
0.0204925537109375,
0.04705810546875,
0.004604339599609375,
-0.54296875,
0.84423828125,
-0.7138671875,
0.0221710205078125,
-0.36865234375,
-0.1278076171875,
-0.160888671875,
-0.7822265625,
1.0361328125,
-0.4697265625,
0.170654296875,
-0.28662109375,
0.470458984375,
0.89892578125,
-0.26708984375,
-0.31689453125,
-0.5390625,
-0.482177734375,
-1.2529296875,
0.375,
-0.4609375,
0.25439453125,
-0.71240234375,
-0.73974609375,
1.1591796875,
-0.67724609375,
0.50244140625,
1.2490234375,
0.1627197265625,
0.77783203125,
-0.56494140625,
0.83984375,
0.685546875,
-0.57177734375,
-0.061187744140625,
0.0679931640625,
-0.61083984375,
-0.1331787109375,
-0.31201171875,
-1.1201171875,
-0.81103515625,
0.5185546875,
1.240234375,
-0.474365234375,
0.6611328125,
0.11572265625,
-1.013671875,
-0.53466796875,
0.97021484375,
0.10772705078125,
0.24609375,
0.75244140625,
-0.1859130859375,
-0.39892578125,
0.248046875,
-0.3349609375,
-0.473388671875,
-0.468017578125,
1.1015625,
-0.2509765625,
-0.52783203125,
0.74560546875,
0.84130859375,
-1.146484375,
-0.7255859375,
-0.137451171875,
0.251953125,
-0.2186279296875,
-0.94287109375,
-0.10748291015625,
0.6982421875,
-0.97265625,
0.322265625,
0.347412109375,
-0.365234375,
0.5810546875,
0.1318359375,
0.6005859375,
-0.56787109375,
0.432861328125,
0.58203125,
-0.330078125,
-0.303955078125,
-0.73193359375,
-0.1300048828125,
0.051025390625,
0.0745849609375,
0.80517578125,
-0.355224609375,
0.0950927734375,
0.4111328125,
-0.006786346435546875,
0.806640625,
-0.305419921875,
-0.240234375,
0.272216796875,
-1.1884765625,
-0.7138671875,
-0.21484375,
0.1658935546875,
-0.1578369140625,
0.6015625,
-0.72119140625,
0.0259857177734375,
-0.09881591796875,
0.300537109375,
-0.2626953125,
-0.8212890625,
-0.0120086669921875,
-1.0087890625,
-0.55078125,
-0.7490234375,
-0.63720703125,
0.2493896484375,
0.351318359375,
0.195556640625,
-0.57666015625,
0.263427734375,
0.7998046875,
-0.475830078125,
0.60009765625,
-0.703125,
0.480224609375,
-0.442138671875,
-0.1707763671875,
-0.8681640625,
0.07794189453125,
-0.46337890625,
0.0628662109375,
-0.51513671875,
0.448486328125,
-0.090087890625,
0.5361328125,
-0.0176849365234375,
0.2349853515625,
-0.32177734375,
-0.42041015625,
-0.061767578125,
0.2255859375,
-0.556640625,
0.60498046875,
0.6328125,
0.1322021484375,
-0.07904052734375,
-0.407958984375,
-0.348876953125,
-0.142822265625,
0.7275390625,
0.437255859375,
-0.27783203125,
0.33837890625,
-0.318115234375,
-0.05389404296875,
-1.0478515625,
0.266357421875,
-0.36767578125,
0.0670166015625,
0.0550537109375,
-0.2822265625,
0.64697265625,
1.453125,
-0.422607421875,
0.351318359375,
0.25146484375,
0.203369140625,
0.55224609375,
0.20166015625,
-0.1903076171875,
0.74658203125,
0.053466796875,
-0.277099609375,
-0.142822265625,
0.316650390625,
0.4189453125,
0.144775390625,
-0.257568359375,
-1.037109375,
-1.068359375,
-0.50048828125,
-0.03558349609375,
0.57275390625,
0.279052734375,
-0.66552734375,
-0.295166015625,
-0.14501953125,
-0.485107421875,
0.456298828125,
-1.2666015625,
-0.81640625,
0.1663818359375,
0.11328125,
-0.320556640625,
0.3173828125,
-0.57080078125,
-0.1414794921875,
0.10394287109375,
0.347900390625,
-0.51123046875,
0.415771484375,
-0.01450347900390625,
0.626953125,
-0.0418701171875,
-0.198974609375,
0.141845703125,
0.73291015625,
-0.7490234375,
-0.50439453125,
0.1905517578125,
1.1796875,
-0.00890350341796875,
0.0027942657470703125,
-0.77734375,
0.2216796875,
-0.1107177734375,
0.11859130859375,
-0.380126953125,
0.2088623046875,
-0.299072265625,
0.5498046875,
-1.271484375,
-0.2327880859375,
0.035888671875,
0.240966796875,
0.06658935546875,
-0.4345703125,
-0.51611328125,
0.91455078125,
1.1962890625,
-0.177490234375,
0.1114501953125,
-0.14501953125,
0.6298828125,
0.06011962890625,
-0.031707763671875,
-0.464111328125,
0.426513671875,
0.253173828125,
0.78955078125,
-0.04608154296875,
0.40771484375,
0.8916015625,
0.2196044921875,
-0.272216796875,
0.35791015625,
0.5400390625,
0.1729736328125,
-0.144775390625,
-0.256591796875,
-0.03521728515625,
0.2052001953125,
-0.6953125,
0.376953125,
-0.51318359375,
0.10906982421875,
-0.1025390625,
-0.84033203125,
0.9443359375,
-0.471923828125,
-0.1517333984375,
0.255615234375,
-0.417724609375,
0.367919921875,
0.57763671875,
0.32861328125,
-0.0670166015625,
0.8037109375,
0.7373046875,
0.7685546875,
0.6728515625,
0.453125,
0.358642578125,
-0.609375,
0.1363525390625,
0.322265625,
-0.3154296875,
-0.2017822265625,
-0.376220703125,
-0.92236328125,
0.82080078125,
-0.264892578125,
-0.343017578125,
0.3515625,
-0.94970703125,
-0.0137786865234375,
-0.262451171875,
0.8505859375,
-0.369873046875,
0.47607421875,
0.466064453125,
-0.277099609375,
-0.47265625,
1.0615234375,
0.1639404296875,
0.332763671875,
0.07122802734375,
0.5,
0.436767578125,
1.3017578125,
0.74267578125,
0.038848876953125,
0.498779296875,
0.7578125,
-0.68115234375,
-0.52783203125,
-0.15283203125,
-0.134033203125,
0.0016775131225585938,
-0.623046875,
-0.09027099609375,
-0.65234375,
0.54443359375,
0.1422119140625,
-0.818359375,
-0.455078125,
0.0906982421875,
-0.93603515625,
0.04864501953125,
0.53662109375,
0.323974609375,
0.19140625,
-0.047210693359375,
-0.2763671875,
-0.480224609375,
0.2130126953125,
-0.69921875,
0.273193359375,
-0.73046875,
-0.1796875,
-0.7255859375,
-0.53466796875,
-0.342041015625,
-0.183837890625,
-0.310791015625,
-0.99072265625,
0.7724609375,
0.6240234375,
0.5478515625,
0.431884765625,
-0.3779296875,
0.0941162109375,
0.80615234375,
0.7666015625,
-0.1611328125,
0.8525390625,
0.416748046875,
-0.035125732421875,
0.07421875,
-0.444091796875,
0.2666015625,
-0.032470703125,
0.1925048828125,
-0.446044921875,
0.390869140625,
-0.60400390625,
-1.4482421875,
0.07025146484375,
0.377197265625,
0.288330078125,
-0.34765625,
-1.1455078125,
-0.47314453125,
-0.962890625,
-0.11566162109375,
-0.5439453125,
0.70166015625,
-0.064453125,
0.06866455078125,
-0.35205078125,
-1.15625,
4.34765625,
1.0517578125,
1.1875,
0.256103515625,
0.353759765625,
1.056640625,
0.1785888671875,
-0.7734375,
-0.158935546875,
-0.6259765625,
0.734375,
-0.3251953125,
0.11419677734375,
0.59375,
0.0810546875,
0.771484375,
-0.39599609375,
-0.08111572265625,
0.1474609375,
-0.82666015625,
-0.80712890625,
0.32763671875,
-0.09326171875,
0.2183837890625,
-0.05816650390625,
0.2142333984375,
0.7451171875,
-1.0546875,
-0.164306640625,
-0.2978515625,
0.28466796875,
-0.7998046875,
1.083984375,
-0.2900390625,
0.0125274658203125,
0.70947265625,
0.195556640625,
-0.481201171875,
-0.72314453125,
0.1976318359375,
-0.10845947265625,
0.407958984375,
0.77734375,
-1.0302734375,
-0.05535888671875,
0.43798828125,
-0.446533203125,
0.383544921875,
-0.172119140625,
-0.68798828125,
0.7001953125,
-0.314208984375,
0.319091796875,
-0.419677734375,
-1.0849609375,
0.42578125,
0.206787109375,
0.16943359375,
-0.380859375,
0.32275390625,
0.269775390625,
0.35400390625,
-0.0208740234375,
0.4794921875,
-0.9794921875,
0.335693359375,
-0.004795074462890625,
0.354248046875,
-0.35693359375,
-0.1380615234375,
-0.87451171875,
-0.5009765625,
-0.1932373046875,
-0.2880859375,
0.307373046875,
0.38134765625,
-0.258544921875,
0.5517578125,
0.6455078125,
-0.501953125,
0.2705078125,
-0.276123046875,
-0.05108642578125,
-0.53857421875,
0.375244140625,
0.837890625,
-0.40576171875,
-0.5048828125,
-0.341552734375,
0.5986328125,
0.6435546875,
0.7578125,
0.373046875,
-0.56787109375,
-0.26806640625
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Phoenix has a string s consisting of lowercase Latin letters. He wants to distribute all the letters of his string into k non-empty strings a_1, a_2, ..., a_k such that every letter of s goes to exactly one of the strings a_i. The strings a_i do not need to be substrings of s. Phoenix can distribute letters of s and rearrange the letters within each string a_i however he wants.
For example, if s = baba and k=2, Phoenix may distribute the letters of his string in many ways, such as:
* ba and ba
* a and abb
* ab and ab
* aa and bb
But these ways are invalid:
* baa and ba
* b and ba
* baba and empty string (a_i should be non-empty)
Phoenix wants to distribute the letters of his string s into k strings a_1, a_2, ..., a_k to minimize the lexicographically maximum string among them, i. e. minimize max(a_1, a_2, ..., a_k). Help him find the optimal distribution and print the minimal possible value of max(a_1, a_2, ..., a_k).
String x is lexicographically less than string y if either x is a prefix of y and x ≠ y, or there exists an index i (1 ≤ i ≤ min(|x|, |y|)) such that x_i < y_i and for every j (1 ≤ j < i) x_j = y_j. Here |x| denotes the length of the string x.
Input
The input consists of multiple test cases. The first line contains an integer t (1 ≤ t ≤ 1000) — the number of test cases. Each test case consists of two lines.
The first line of each test case consists of two integers n and k (1 ≤ k ≤ n ≤ 10^5) — the length of string s and the number of non-empty strings, into which Phoenix wants to distribute letters of s, respectively.
The second line of each test case contains a string s of length n consisting only of lowercase Latin letters.
It is guaranteed that the sum of n over all test cases is ≤ 10^5.
Output
Print t answers — one per test case. The i-th answer should be the minimal possible value of max(a_1, a_2, ..., a_k) in the i-th test case.
Example
Input
6
4 2
baba
5 2
baacb
5 3
baacb
5 3
aaaaa
6 4
aaxxzz
7 1
phoenix
Output
ab
abbc
b
aa
x
ehinopx
Note
In the first test case, one optimal solution is to distribute baba into ab and ab.
In the second test case, one optimal solution is to distribute baacb into abbc and a.
In the third test case, one optimal solution is to distribute baacb into ac, ab, and b.
In the fourth test case, one optimal solution is to distribute aaaaa into aa, aa, and a.
In the fifth test case, one optimal solution is to distribute aaxxzz into az, az, x, and x.
In the sixth test case, one optimal solution is to distribute phoenix into ehinopx.
Submitted Solution:
```
import sys,os.path
import math
if __name__ == '__main__':
if(os.path.exists('input.txt')):
sys.stdin = open("input.txt","r")
sys.stdout = open("output.txt","w")
for _ in range(int(input())):
n,k = map(int,input().split())
s = input()
l = [0 for i in range(26)]
flag = True
for i in range(n):
l[ord(s[i])-ord('a')]+=1
for i in range(n-1):
if s[i]!=s[i+1]:
flag = False
break
if flag:
ans = s[0]*(math.ceil(n/k))
print(ans)
else:
f = False
first = 26
for i in range(26):
if l[i]!=0:
first = min(first,i)
if l[i]!=0 and l[i]!=k:
f = True
break
if l[first]<k:
su = 0
for i in range(26):
su+=l[i]
if su>=k:
print(chr(97+i))
break
else:
if not f:
ans = ""
val = math.ceil(l[first]/k)
a = chr(97+first)*val
ans+=a
for i in range(first+1,26):
if l[i]!=0:
val = math.ceil(l[i]/k)
ans+=chr(97+i)*val
else:
ans = ""
ans += chr(97+first)*(l[first]-k+1)
for i in range(first+1,26):
if l[i]!=0:
a = chr(97+i)*l[i]
ans+=a
print(ans)
```
No
| 10,938 | [
0.29248046875,
0.30419921875,
0.43798828125,
0.275390625,
-0.609375,
-0.469970703125,
-0.186279296875,
0.1416015625,
-0.07720947265625,
0.87939453125,
0.9443359375,
0.1571044921875,
0.043212890625,
-0.84912109375,
-0.8251953125,
0.267578125,
-0.70166015625,
-0.52783203125,
-0.367919921875,
-0.26025390625,
0.1336669921875,
0.0865478515625,
-1.58203125,
-0.281005859375,
-0.310302734375,
0.82666015625,
0.1861572265625,
-0.043304443359375,
1.111328125,
0.7841796875,
0.01898193359375,
-0.355712890625,
0.61181640625,
-1.0869140625,
-0.27783203125,
-0.6708984375,
0.85009765625,
-0.418701171875,
-0.4501953125,
-0.7626953125,
0.49267578125,
-0.8076171875,
0.51708984375,
-0.61279296875,
-0.9814453125,
-0.1126708984375,
-0.1331787109375,
-0.41064453125,
-0.5654296875,
-0.373779296875,
0.0968017578125,
-0.38720703125,
0.60693359375,
-0.51318359375,
0.1279296875,
0.23486328125,
0.0335693359375,
-0.05841064453125,
-0.82470703125,
0.1536865234375,
0.1656494140625,
0.315673828125,
-0.380859375,
-0.74755859375,
-0.17724609375,
0.255859375,
-0.077880859375,
-0.010223388671875,
0.1444091796875,
-0.86962890625,
-0.4150390625,
0.21826171875,
-0.38623046875,
-0.5830078125,
-0.48681640625,
0.1240234375,
0.1583251953125,
-0.158203125,
-0.6650390625,
0.7998046875,
0.074951171875,
0.755859375,
0.278564453125,
0.01378631591796875,
-0.71923828125,
-0.48095703125,
0.21044921875,
0.36962890625,
0.1439208984375,
0.1390380859375,
0.08038330078125,
0.434814453125,
-0.63818359375,
0.240234375,
0.392822265625,
0.7294921875,
-0.12445068359375,
0.399169921875,
0.1595458984375,
0.392333984375,
1.1328125,
0.751953125,
-0.43603515625,
1.1767578125,
-0.642578125,
0.1923828125,
-0.2205810546875,
-0.2489013671875,
-0.2142333984375,
-0.380859375,
-0.160400390625,
-0.0200653076171875,
0.3349609375,
0.33251953125,
-0.36962890625,
0.6708984375,
-0.08544921875,
0.765625,
-0.9130859375,
-0.046295166015625,
0.5693359375,
0.06024169921875,
0.5576171875,
-0.1923828125,
0.054931640625,
-0.2259521484375,
-0.59423828125,
0.74560546875,
-0.7216796875,
-0.0679931640625,
0.5927734375,
0.09130859375,
-0.4970703125,
0.408447265625,
0.04827880859375,
0.4482421875,
0.06756591796875,
0.50732421875,
0.89501953125,
-0.1824951171875,
0.68505859375,
-0.1490478515625,
0.04620361328125,
1.515625,
0.1470947265625,
-0.283935546875,
0.5654296875,
0.0716552734375,
-0.58740234375,
0.87841796875,
-0.8251953125,
0.58544921875,
0.06494140625,
0.31787109375,
-0.22216796875,
0.08642578125,
0.0099639892578125,
0.63525390625,
0.4013671875,
0.2425537109375,
-0.638671875,
-0.082763671875,
-0.3427734375,
0.8720703125,
-0.35400390625,
0.8466796875,
-0.74609375,
-0.416015625,
-0.07958984375,
-0.38671875,
-0.0389404296875,
-0.349365234375,
0.058349609375,
0.8896484375,
0.2252197265625,
0.8349609375,
0.8154296875,
-0.669921875,
0.38623046875,
0.33251953125,
-0.213623046875,
0.339111328125,
0.284912109375,
0.6904296875,
0.4306640625,
0.223876953125,
0.004062652587890625,
-0.345703125,
-0.6591796875,
-0.6708984375,
0.175537109375,
0.6083984375,
-0.29052734375,
0.263916015625,
-0.1661376953125,
0.1661376953125,
-0.6904296875,
-0.2259521484375,
-0.05999755859375,
-1.0146484375,
-0.334716796875,
0.412353515625,
-0.09930419921875,
0.2491455078125,
-0.7109375,
-0.44677734375,
0.203857421875,
1.0546875,
-0.11505126953125,
0.057037353515625,
0.432861328125,
0.4228515625,
-0.2364501953125,
0.25439453125,
0.07244873046875,
-0.1439208984375,
-0.53173828125,
0.60888671875,
-0.5625,
0.03643798828125,
-0.10882568359375,
0.90478515625,
0.25390625,
0.2489013671875,
-0.5830078125,
-0.2117919921875,
0.471435546875,
1.310546875,
-0.1634521484375,
0.56103515625,
0.54345703125,
0.88427734375,
0.525390625,
0.78466796875,
0.456298828125,
0.45751953125,
0.74853515625,
0.71484375,
-0.12347412109375,
0.287353515625,
0.19970703125,
0.5009765625,
0.51123046875,
0.54052734375,
0.10540771484375,
0.5380859375,
-0.34033203125,
0.34326171875,
-0.83935546875,
0.2066650390625,
-0.1875,
1.076171875,
0.243896484375,
0.51171875,
-0.364013671875,
-0.327392578125,
0.32763671875,
0.744140625,
-1.08203125,
-0.74755859375,
-0.153076171875,
-0.0219573974609375,
0.2080078125,
-0.00814056396484375,
0.287841796875,
0.348388671875,
0.72119140625,
-0.07415771484375,
-0.254638671875,
-0.327392578125,
-1.146484375,
-0.9599609375,
-0.76318359375,
-0.38232421875,
-0.53466796875,
0.1475830078125,
0.513671875,
-0.984375,
0.06158447265625,
-0.66796875,
0.11029052734375,
-0.06292724609375,
-0.71875,
0.404052734375,
0.1749267578125,
0.875,
-0.82958984375,
0.56591796875,
0.03155517578125,
1.0146484375,
-0.92529296875,
-0.304931640625,
-0.361328125,
-0.498779296875,
0.49853515625,
0.07379150390625,
0.2196044921875,
0.061065673828125,
-0.55810546875,
-0.95361328125,
-0.2308349609375,
0.08447265625,
-0.48095703125,
0.2529296875,
-0.77001953125,
0.9970703125,
0.46484375,
-0.7158203125,
0.369384765625,
1.0166015625,
-0.78515625,
0.399169921875,
0.281005859375,
-0.08807373046875,
-0.662109375,
1.2587890625,
0.40234375,
0.33544921875,
-0.5380859375,
-0.7080078125,
-0.176513671875,
0.2841796875,
0.1531982421875,
-0.77978515625,
0.004367828369140625,
0.9033203125,
-0.12335205078125,
-1.34375,
0.62158203125,
-0.99658203125,
-0.7421875,
-0.256591796875,
-0.626953125,
0.68212890625,
0.619140625,
0.350830078125,
-0.36865234375,
-0.28076171875,
-0.0579833984375,
0.6171875,
0.170654296875,
-0.8515625,
-0.07708740234375,
0.6005859375,
-0.16162109375,
0.032501220703125,
0.261474609375,
-0.46728515625,
-0.2041015625,
-0.01503753662109375,
-0.0958251953125,
0.83251953125,
0.151611328125,
0.4443359375,
0.2364501953125,
0.53955078125,
-0.89404296875,
-0.09698486328125,
-0.162109375,
0.5927734375,
0.331298828125,
0.499267578125,
0.50634765625,
-0.10491943359375,
-0.806640625,
-1.3505859375,
0.33154296875,
0.2479248046875,
0.6103515625,
-0.76904296875,
0.908203125,
0.10980224609375,
-0.57958984375,
0.53759765625,
-0.734375,
0.193115234375,
1.025390625,
-0.363037109375,
0.8837890625,
-0.87646484375,
-0.10198974609375,
0.009765625,
0.0849609375,
0.39697265625,
0.47314453125,
0.650390625,
-0.11785888671875,
-0.10577392578125,
-0.410888671875,
-0.18798828125,
0.08111572265625,
-0.367919921875,
0.364990234375,
-0.300537109375,
-0.357666015625,
-1.1171875,
0.58544921875,
0.6005859375,
0.57861328125,
0.453125,
0.50439453125,
0.138427734375,
0.34765625,
0.5400390625,
-0.1541748046875,
0.1080322265625,
-0.52392578125,
0.76806640625,
0.07684326171875,
-0.11041259765625,
-0.338623046875,
-0.411865234375,
0.0303192138671875,
0.38916015625,
-0.0325927734375,
-0.1688232421875,
-0.98388671875,
0.286376953125,
-0.0621337890625,
0.76904296875,
-0.55224609375,
-0.2215576171875,
-0.07696533203125,
0.33203125,
0.50830078125,
-0.79248046875,
-0.05792236328125,
-0.8466796875,
0.44970703125,
0.308349609375,
-0.0743408203125,
-0.312744140625,
-0.3134765625,
-0.638671875,
-0.88525390625,
0.705078125,
0.96044921875,
-0.012298583984375,
-0.0963134765625,
-1.181640625,
0.65185546875,
0.236328125,
-0.2138671875,
0.1513671875,
-0.050689697265625,
0.408447265625,
-0.22216796875,
0.6982421875,
-0.1162109375,
-0.78271484375,
0.149658203125,
-1.0556640625,
0.479736328125,
-0.2017822265625,
0.403564453125,
-0.448486328125,
0.036651611328125,
-0.053619384765625,
0.353759765625,
-0.294921875,
0.237548828125,
-0.2998046875,
0.259033203125,
-1.1533203125,
-0.54052734375,
0.376220703125,
-0.281982421875,
-0.04962158203125,
1.0556640625,
-0.386962890625,
-0.55322265625,
0.25439453125,
0.71435546875,
-0.2958984375,
0.2890625,
-0.24755859375,
0.277587890625,
-0.419921875,
-0.21240234375,
-0.10723876953125,
-0.389404296875,
0.84033203125,
-0.266357421875,
-0.4765625,
-0.19873046875,
-0.8544921875,
0.0831298828125,
-0.0150909423828125,
-0.9306640625,
0.5478515625,
0.09503173828125,
-0.383056640625,
-0.217529296875,
-0.147216796875,
-0.3857421875,
-0.42431640625,
-0.2476806640625,
-0.51806640625,
0.1678466796875,
0.7763671875,
1.1142578125,
0.138427734375,
-0.40673828125,
-0.1475830078125,
0.181640625,
-0.054595947265625,
-0.5302734375,
-0.00942230224609375,
-0.08856201171875,
-0.1370849609375,
-0.302734375,
0.30908203125,
0.2017822265625,
0.319580078125,
0.43359375,
0.3369140625,
0.420654296875,
0.412841796875,
-0.39453125,
1.212890625,
0.09002685546875,
-0.98681640625,
-0.70556640625,
0.4306640625,
0.07135009765625,
0.385986328125,
0.1055908203125,
-0.76708984375,
-0.7431640625,
-0.92529296875,
0.2257080078125,
-0.642578125,
-0.365478515625,
-0.86474609375,
-0.50927734375,
-0.6611328125,
0.201171875,
-0.421630859375,
-0.51513671875,
-0.08673095703125,
-1.3583984375,
0.223388671875,
-0.708984375,
-0.403076171875,
-0.75732421875,
-0.32177734375,
-0.181884765625,
1.0419921875,
0.1700439453125,
0.37841796875,
-0.18017578125,
-0.029693603515625,
0.238037109375,
-0.06549072265625,
-0.689453125,
-0.68701171875,
-0.129638671875,
-0.046905517578125,
0.00034236907958984375,
0.01239013671875,
-0.54931640625,
0.79931640625,
-0.7490234375,
0.0499267578125,
-0.382568359375,
-0.11102294921875,
-0.17431640625,
-0.7265625,
1.0166015625,
-0.39111328125,
0.155029296875,
-0.24853515625,
0.5029296875,
0.92138671875,
-0.266845703125,
-0.284423828125,
-0.5322265625,
-0.420166015625,
-1.251953125,
0.320068359375,
-0.50146484375,
0.2315673828125,
-0.72412109375,
-0.74951171875,
1.2080078125,
-0.6796875,
0.498779296875,
1.2470703125,
0.126708984375,
0.68603515625,
-0.607421875,
0.85400390625,
0.697265625,
-0.52978515625,
-0.05621337890625,
0.05255126953125,
-0.58203125,
-0.153076171875,
-0.291015625,
-1.1357421875,
-0.77392578125,
0.59814453125,
1.3251953125,
-0.472900390625,
0.75927734375,
0.1346435546875,
-1.06640625,
-0.5556640625,
0.97412109375,
0.0843505859375,
0.316162109375,
0.75146484375,
-0.2493896484375,
-0.394775390625,
0.290771484375,
-0.330810546875,
-0.421630859375,
-0.488525390625,
1.1025390625,
-0.2083740234375,
-0.5234375,
0.69287109375,
0.8701171875,
-1.205078125,
-0.7177734375,
-0.1424560546875,
0.2802734375,
-0.222412109375,
-0.96484375,
-0.07666015625,
0.6416015625,
-0.9150390625,
0.269287109375,
0.3232421875,
-0.334228515625,
0.53955078125,
0.0986328125,
0.5849609375,
-0.62158203125,
0.439697265625,
0.630859375,
-0.40673828125,
-0.31494140625,
-0.7470703125,
-0.1007080078125,
0.034881591796875,
0.08056640625,
0.78369140625,
-0.390380859375,
0.07257080078125,
0.32080078125,
-0.0426025390625,
0.82275390625,
-0.328369140625,
-0.2403564453125,
0.266845703125,
-1.1494140625,
-0.73876953125,
-0.20068359375,
0.2139892578125,
-0.2177734375,
0.56787109375,
-0.72509765625,
-0.01061248779296875,
-0.0433349609375,
0.28955078125,
-0.260986328125,
-0.828125,
-0.071533203125,
-1.041015625,
-0.486328125,
-0.70703125,
-0.6162109375,
0.1712646484375,
0.337890625,
0.2396240234375,
-0.6923828125,
0.28466796875,
0.73486328125,
-0.525390625,
0.673828125,
-0.6474609375,
0.41650390625,
-0.392578125,
-0.2225341796875,
-0.87890625,
0.06317138671875,
-0.44921875,
0.142333984375,
-0.5,
0.451171875,
-0.053466796875,
0.4931640625,
-0.08056640625,
0.2734375,
-0.3544921875,
-0.347900390625,
-0.059234619140625,
0.2291259765625,
-0.5439453125,
0.68115234375,
0.65283203125,
0.1236572265625,
-0.16015625,
-0.398193359375,
-0.359375,
-0.1416015625,
0.7265625,
0.47216796875,
-0.2069091796875,
0.34375,
-0.296142578125,
0.00525665283203125,
-1.080078125,
0.330322265625,
-0.4150390625,
0.0157012939453125,
0.0517578125,
-0.251708984375,
0.634765625,
1.4404296875,
-0.43798828125,
0.361572265625,
0.210205078125,
0.1981201171875,
0.61083984375,
0.2005615234375,
-0.11688232421875,
0.70458984375,
0.06634521484375,
-0.3037109375,
-0.1492919921875,
0.305419921875,
0.48046875,
0.043060302734375,
-0.31787109375,
-1.0068359375,
-1.1083984375,
-0.533203125,
-0.0178375244140625,
0.57080078125,
0.2822265625,
-0.6865234375,
-0.22265625,
-0.158935546875,
-0.46728515625,
0.459716796875,
-1.29296875,
-0.84130859375,
0.1610107421875,
0.136474609375,
-0.4013671875,
0.355224609375,
-0.548828125,
-0.1307373046875,
0.08270263671875,
0.42041015625,
-0.4951171875,
0.391357421875,
0.006916046142578125,
0.62353515625,
-0.052215576171875,
-0.1630859375,
0.1417236328125,
0.72314453125,
-0.720703125,
-0.485595703125,
0.17529296875,
1.177734375,
0.00746917724609375,
0.018341064453125,
-0.75048828125,
0.2978515625,
-0.055877685546875,
0.0299072265625,
-0.42431640625,
0.176025390625,
-0.251953125,
0.58544921875,
-1.2255859375,
-0.1939697265625,
0.0254669189453125,
0.2491455078125,
0.060546875,
-0.434326171875,
-0.5205078125,
0.8876953125,
1.158203125,
-0.1619873046875,
0.1334228515625,
-0.16796875,
0.64208984375,
0.109375,
-0.0667724609375,
-0.376953125,
0.458251953125,
0.31494140625,
0.75830078125,
-0.08563232421875,
0.3720703125,
0.87548828125,
0.2332763671875,
-0.21533203125,
0.371826171875,
0.483642578125,
0.1165771484375,
-0.168701171875,
-0.2352294921875,
-0.02587890625,
0.264892578125,
-0.69287109375,
0.38916015625,
-0.49951171875,
0.06182861328125,
-0.1226806640625,
-0.861328125,
0.95068359375,
-0.450439453125,
-0.2119140625,
0.266845703125,
-0.436767578125,
0.382568359375,
0.5546875,
0.30224609375,
-0.06353759765625,
0.791015625,
0.76318359375,
0.7255859375,
0.70458984375,
0.525390625,
0.3984375,
-0.66943359375,
0.126708984375,
0.29296875,
-0.31103515625,
-0.1793212890625,
-0.33544921875,
-0.97998046875,
0.72412109375,
-0.294677734375,
-0.324462890625,
0.315673828125,
-0.99169921875,
0.04278564453125,
-0.2401123046875,
0.85791015625,
-0.364013671875,
0.423828125,
0.391357421875,
-0.25927734375,
-0.47900390625,
1.060546875,
0.1707763671875,
0.342041015625,
0.10345458984375,
0.48779296875,
0.306640625,
1.3056640625,
0.73779296875,
0.040191650390625,
0.455078125,
0.77783203125,
-0.6806640625,
-0.5146484375,
-0.1763916015625,
-0.181884765625,
0.046356201171875,
-0.61181640625,
-0.1280517578125,
-0.63916015625,
0.53369140625,
0.2169189453125,
-0.86181640625,
-0.4912109375,
0.1007080078125,
-0.90185546875,
0.1488037109375,
0.58154296875,
0.418701171875,
0.279296875,
0.061187744140625,
-0.27734375,
-0.453125,
0.17138671875,
-0.60986328125,
0.281005859375,
-0.7880859375,
-0.1793212890625,
-0.71240234375,
-0.51416015625,
-0.366943359375,
-0.2283935546875,
-0.309814453125,
-0.97216796875,
0.8134765625,
0.67529296875,
0.55859375,
0.415771484375,
-0.356201171875,
0.09625244140625,
0.78125,
0.75244140625,
-0.11322021484375,
0.91162109375,
0.44921875,
-0.12176513671875,
0.1151123046875,
-0.367919921875,
0.204833984375,
-0.07666015625,
0.1922607421875,
-0.40234375,
0.43505859375,
-0.68701171875,
-1.4990234375,
0.017608642578125,
0.373291015625,
0.306640625,
-0.33056640625,
-1.078125,
-0.5673828125,
-0.9775390625,
-0.04779052734375,
-0.57666015625,
0.70556640625,
-0.1361083984375,
0.066650390625,
-0.324951171875,
-1.1474609375,
4.34765625,
1.0810546875,
1.0908203125,
0.2127685546875,
0.424072265625,
1.1025390625,
0.1734619140625,
-0.724609375,
-0.201416015625,
-0.58935546875,
0.7197265625,
-0.318359375,
0.20751953125,
0.5869140625,
0.031463623046875,
0.7900390625,
-0.423095703125,
-0.0855712890625,
0.08056640625,
-0.85400390625,
-0.880859375,
0.28125,
-0.07672119140625,
0.284912109375,
-0.06793212890625,
0.1785888671875,
0.74462890625,
-1.009765625,
-0.2347412109375,
-0.3251953125,
0.28076171875,
-0.81494140625,
1.1591796875,
-0.27685546875,
-0.07061767578125,
0.626953125,
0.210693359375,
-0.427001953125,
-0.65185546875,
0.2119140625,
-0.1064453125,
0.429931640625,
0.71044921875,
-1.005859375,
-0.09442138671875,
0.3935546875,
-0.6044921875,
0.3828125,
-0.19091796875,
-0.71923828125,
0.68603515625,
-0.27978515625,
0.312744140625,
-0.37841796875,
-1.08203125,
0.43212890625,
0.24658203125,
0.255126953125,
-0.355224609375,
0.353515625,
0.19775390625,
0.3408203125,
0.0279083251953125,
0.57275390625,
-1.0419921875,
0.4267578125,
-0.04388427734375,
0.306640625,
-0.34619140625,
-0.1146240234375,
-0.88134765625,
-0.50341796875,
-0.23291015625,
-0.3212890625,
0.32470703125,
0.27294921875,
-0.25390625,
0.552734375,
0.68798828125,
-0.499267578125,
0.302490234375,
-0.27685546875,
-0.0777587890625,
-0.5126953125,
0.438720703125,
0.83447265625,
-0.404541015625,
-0.50244140625,
-0.275146484375,
0.6064453125,
0.6083984375,
0.79638671875,
0.367431640625,
-0.55859375,
-0.248779296875
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Phoenix has a string s consisting of lowercase Latin letters. He wants to distribute all the letters of his string into k non-empty strings a_1, a_2, ..., a_k such that every letter of s goes to exactly one of the strings a_i. The strings a_i do not need to be substrings of s. Phoenix can distribute letters of s and rearrange the letters within each string a_i however he wants.
For example, if s = baba and k=2, Phoenix may distribute the letters of his string in many ways, such as:
* ba and ba
* a and abb
* ab and ab
* aa and bb
But these ways are invalid:
* baa and ba
* b and ba
* baba and empty string (a_i should be non-empty)
Phoenix wants to distribute the letters of his string s into k strings a_1, a_2, ..., a_k to minimize the lexicographically maximum string among them, i. e. minimize max(a_1, a_2, ..., a_k). Help him find the optimal distribution and print the minimal possible value of max(a_1, a_2, ..., a_k).
String x is lexicographically less than string y if either x is a prefix of y and x ≠ y, or there exists an index i (1 ≤ i ≤ min(|x|, |y|)) such that x_i < y_i and for every j (1 ≤ j < i) x_j = y_j. Here |x| denotes the length of the string x.
Input
The input consists of multiple test cases. The first line contains an integer t (1 ≤ t ≤ 1000) — the number of test cases. Each test case consists of two lines.
The first line of each test case consists of two integers n and k (1 ≤ k ≤ n ≤ 10^5) — the length of string s and the number of non-empty strings, into which Phoenix wants to distribute letters of s, respectively.
The second line of each test case contains a string s of length n consisting only of lowercase Latin letters.
It is guaranteed that the sum of n over all test cases is ≤ 10^5.
Output
Print t answers — one per test case. The i-th answer should be the minimal possible value of max(a_1, a_2, ..., a_k) in the i-th test case.
Example
Input
6
4 2
baba
5 2
baacb
5 3
baacb
5 3
aaaaa
6 4
aaxxzz
7 1
phoenix
Output
ab
abbc
b
aa
x
ehinopx
Note
In the first test case, one optimal solution is to distribute baba into ab and ab.
In the second test case, one optimal solution is to distribute baacb into abbc and a.
In the third test case, one optimal solution is to distribute baacb into ac, ab, and b.
In the fourth test case, one optimal solution is to distribute aaaaa into aa, aa, and a.
In the fifth test case, one optimal solution is to distribute aaxxzz into az, az, x, and x.
In the sixth test case, one optimal solution is to distribute phoenix into ehinopx.
Submitted Solution:
```
t = int(input())
for _ in range(t):
n, k = map(int, input().split())
a = sorted(input())
ans = a[k-1]
if(len(set(a[0:k]))>1):
print(ans)
else:
for i in range(k, n):
if(len(set(a[i:]))>1):
ans = ans + a[i]
else :
ans = ans + a[i]
break
print(ans)
```
No
| 10,939 | [
0.29248046875,
0.30419921875,
0.43798828125,
0.275390625,
-0.609375,
-0.469970703125,
-0.186279296875,
0.1416015625,
-0.07720947265625,
0.87939453125,
0.9443359375,
0.1571044921875,
0.043212890625,
-0.84912109375,
-0.8251953125,
0.267578125,
-0.70166015625,
-0.52783203125,
-0.367919921875,
-0.26025390625,
0.1336669921875,
0.0865478515625,
-1.58203125,
-0.281005859375,
-0.310302734375,
0.82666015625,
0.1861572265625,
-0.043304443359375,
1.111328125,
0.7841796875,
0.01898193359375,
-0.355712890625,
0.61181640625,
-1.0869140625,
-0.27783203125,
-0.6708984375,
0.85009765625,
-0.418701171875,
-0.4501953125,
-0.7626953125,
0.49267578125,
-0.8076171875,
0.51708984375,
-0.61279296875,
-0.9814453125,
-0.1126708984375,
-0.1331787109375,
-0.41064453125,
-0.5654296875,
-0.373779296875,
0.0968017578125,
-0.38720703125,
0.60693359375,
-0.51318359375,
0.1279296875,
0.23486328125,
0.0335693359375,
-0.05841064453125,
-0.82470703125,
0.1536865234375,
0.1656494140625,
0.315673828125,
-0.380859375,
-0.74755859375,
-0.17724609375,
0.255859375,
-0.077880859375,
-0.010223388671875,
0.1444091796875,
-0.86962890625,
-0.4150390625,
0.21826171875,
-0.38623046875,
-0.5830078125,
-0.48681640625,
0.1240234375,
0.1583251953125,
-0.158203125,
-0.6650390625,
0.7998046875,
0.074951171875,
0.755859375,
0.278564453125,
0.01378631591796875,
-0.71923828125,
-0.48095703125,
0.21044921875,
0.36962890625,
0.1439208984375,
0.1390380859375,
0.08038330078125,
0.434814453125,
-0.63818359375,
0.240234375,
0.392822265625,
0.7294921875,
-0.12445068359375,
0.399169921875,
0.1595458984375,
0.392333984375,
1.1328125,
0.751953125,
-0.43603515625,
1.1767578125,
-0.642578125,
0.1923828125,
-0.2205810546875,
-0.2489013671875,
-0.2142333984375,
-0.380859375,
-0.160400390625,
-0.0200653076171875,
0.3349609375,
0.33251953125,
-0.36962890625,
0.6708984375,
-0.08544921875,
0.765625,
-0.9130859375,
-0.046295166015625,
0.5693359375,
0.06024169921875,
0.5576171875,
-0.1923828125,
0.054931640625,
-0.2259521484375,
-0.59423828125,
0.74560546875,
-0.7216796875,
-0.0679931640625,
0.5927734375,
0.09130859375,
-0.4970703125,
0.408447265625,
0.04827880859375,
0.4482421875,
0.06756591796875,
0.50732421875,
0.89501953125,
-0.1824951171875,
0.68505859375,
-0.1490478515625,
0.04620361328125,
1.515625,
0.1470947265625,
-0.283935546875,
0.5654296875,
0.0716552734375,
-0.58740234375,
0.87841796875,
-0.8251953125,
0.58544921875,
0.06494140625,
0.31787109375,
-0.22216796875,
0.08642578125,
0.0099639892578125,
0.63525390625,
0.4013671875,
0.2425537109375,
-0.638671875,
-0.082763671875,
-0.3427734375,
0.8720703125,
-0.35400390625,
0.8466796875,
-0.74609375,
-0.416015625,
-0.07958984375,
-0.38671875,
-0.0389404296875,
-0.349365234375,
0.058349609375,
0.8896484375,
0.2252197265625,
0.8349609375,
0.8154296875,
-0.669921875,
0.38623046875,
0.33251953125,
-0.213623046875,
0.339111328125,
0.284912109375,
0.6904296875,
0.4306640625,
0.223876953125,
0.004062652587890625,
-0.345703125,
-0.6591796875,
-0.6708984375,
0.175537109375,
0.6083984375,
-0.29052734375,
0.263916015625,
-0.1661376953125,
0.1661376953125,
-0.6904296875,
-0.2259521484375,
-0.05999755859375,
-1.0146484375,
-0.334716796875,
0.412353515625,
-0.09930419921875,
0.2491455078125,
-0.7109375,
-0.44677734375,
0.203857421875,
1.0546875,
-0.11505126953125,
0.057037353515625,
0.432861328125,
0.4228515625,
-0.2364501953125,
0.25439453125,
0.07244873046875,
-0.1439208984375,
-0.53173828125,
0.60888671875,
-0.5625,
0.03643798828125,
-0.10882568359375,
0.90478515625,
0.25390625,
0.2489013671875,
-0.5830078125,
-0.2117919921875,
0.471435546875,
1.310546875,
-0.1634521484375,
0.56103515625,
0.54345703125,
0.88427734375,
0.525390625,
0.78466796875,
0.456298828125,
0.45751953125,
0.74853515625,
0.71484375,
-0.12347412109375,
0.287353515625,
0.19970703125,
0.5009765625,
0.51123046875,
0.54052734375,
0.10540771484375,
0.5380859375,
-0.34033203125,
0.34326171875,
-0.83935546875,
0.2066650390625,
-0.1875,
1.076171875,
0.243896484375,
0.51171875,
-0.364013671875,
-0.327392578125,
0.32763671875,
0.744140625,
-1.08203125,
-0.74755859375,
-0.153076171875,
-0.0219573974609375,
0.2080078125,
-0.00814056396484375,
0.287841796875,
0.348388671875,
0.72119140625,
-0.07415771484375,
-0.254638671875,
-0.327392578125,
-1.146484375,
-0.9599609375,
-0.76318359375,
-0.38232421875,
-0.53466796875,
0.1475830078125,
0.513671875,
-0.984375,
0.06158447265625,
-0.66796875,
0.11029052734375,
-0.06292724609375,
-0.71875,
0.404052734375,
0.1749267578125,
0.875,
-0.82958984375,
0.56591796875,
0.03155517578125,
1.0146484375,
-0.92529296875,
-0.304931640625,
-0.361328125,
-0.498779296875,
0.49853515625,
0.07379150390625,
0.2196044921875,
0.061065673828125,
-0.55810546875,
-0.95361328125,
-0.2308349609375,
0.08447265625,
-0.48095703125,
0.2529296875,
-0.77001953125,
0.9970703125,
0.46484375,
-0.7158203125,
0.369384765625,
1.0166015625,
-0.78515625,
0.399169921875,
0.281005859375,
-0.08807373046875,
-0.662109375,
1.2587890625,
0.40234375,
0.33544921875,
-0.5380859375,
-0.7080078125,
-0.176513671875,
0.2841796875,
0.1531982421875,
-0.77978515625,
0.004367828369140625,
0.9033203125,
-0.12335205078125,
-1.34375,
0.62158203125,
-0.99658203125,
-0.7421875,
-0.256591796875,
-0.626953125,
0.68212890625,
0.619140625,
0.350830078125,
-0.36865234375,
-0.28076171875,
-0.0579833984375,
0.6171875,
0.170654296875,
-0.8515625,
-0.07708740234375,
0.6005859375,
-0.16162109375,
0.032501220703125,
0.261474609375,
-0.46728515625,
-0.2041015625,
-0.01503753662109375,
-0.0958251953125,
0.83251953125,
0.151611328125,
0.4443359375,
0.2364501953125,
0.53955078125,
-0.89404296875,
-0.09698486328125,
-0.162109375,
0.5927734375,
0.331298828125,
0.499267578125,
0.50634765625,
-0.10491943359375,
-0.806640625,
-1.3505859375,
0.33154296875,
0.2479248046875,
0.6103515625,
-0.76904296875,
0.908203125,
0.10980224609375,
-0.57958984375,
0.53759765625,
-0.734375,
0.193115234375,
1.025390625,
-0.363037109375,
0.8837890625,
-0.87646484375,
-0.10198974609375,
0.009765625,
0.0849609375,
0.39697265625,
0.47314453125,
0.650390625,
-0.11785888671875,
-0.10577392578125,
-0.410888671875,
-0.18798828125,
0.08111572265625,
-0.367919921875,
0.364990234375,
-0.300537109375,
-0.357666015625,
-1.1171875,
0.58544921875,
0.6005859375,
0.57861328125,
0.453125,
0.50439453125,
0.138427734375,
0.34765625,
0.5400390625,
-0.1541748046875,
0.1080322265625,
-0.52392578125,
0.76806640625,
0.07684326171875,
-0.11041259765625,
-0.338623046875,
-0.411865234375,
0.0303192138671875,
0.38916015625,
-0.0325927734375,
-0.1688232421875,
-0.98388671875,
0.286376953125,
-0.0621337890625,
0.76904296875,
-0.55224609375,
-0.2215576171875,
-0.07696533203125,
0.33203125,
0.50830078125,
-0.79248046875,
-0.05792236328125,
-0.8466796875,
0.44970703125,
0.308349609375,
-0.0743408203125,
-0.312744140625,
-0.3134765625,
-0.638671875,
-0.88525390625,
0.705078125,
0.96044921875,
-0.012298583984375,
-0.0963134765625,
-1.181640625,
0.65185546875,
0.236328125,
-0.2138671875,
0.1513671875,
-0.050689697265625,
0.408447265625,
-0.22216796875,
0.6982421875,
-0.1162109375,
-0.78271484375,
0.149658203125,
-1.0556640625,
0.479736328125,
-0.2017822265625,
0.403564453125,
-0.448486328125,
0.036651611328125,
-0.053619384765625,
0.353759765625,
-0.294921875,
0.237548828125,
-0.2998046875,
0.259033203125,
-1.1533203125,
-0.54052734375,
0.376220703125,
-0.281982421875,
-0.04962158203125,
1.0556640625,
-0.386962890625,
-0.55322265625,
0.25439453125,
0.71435546875,
-0.2958984375,
0.2890625,
-0.24755859375,
0.277587890625,
-0.419921875,
-0.21240234375,
-0.10723876953125,
-0.389404296875,
0.84033203125,
-0.266357421875,
-0.4765625,
-0.19873046875,
-0.8544921875,
0.0831298828125,
-0.0150909423828125,
-0.9306640625,
0.5478515625,
0.09503173828125,
-0.383056640625,
-0.217529296875,
-0.147216796875,
-0.3857421875,
-0.42431640625,
-0.2476806640625,
-0.51806640625,
0.1678466796875,
0.7763671875,
1.1142578125,
0.138427734375,
-0.40673828125,
-0.1475830078125,
0.181640625,
-0.054595947265625,
-0.5302734375,
-0.00942230224609375,
-0.08856201171875,
-0.1370849609375,
-0.302734375,
0.30908203125,
0.2017822265625,
0.319580078125,
0.43359375,
0.3369140625,
0.420654296875,
0.412841796875,
-0.39453125,
1.212890625,
0.09002685546875,
-0.98681640625,
-0.70556640625,
0.4306640625,
0.07135009765625,
0.385986328125,
0.1055908203125,
-0.76708984375,
-0.7431640625,
-0.92529296875,
0.2257080078125,
-0.642578125,
-0.365478515625,
-0.86474609375,
-0.50927734375,
-0.6611328125,
0.201171875,
-0.421630859375,
-0.51513671875,
-0.08673095703125,
-1.3583984375,
0.223388671875,
-0.708984375,
-0.403076171875,
-0.75732421875,
-0.32177734375,
-0.181884765625,
1.0419921875,
0.1700439453125,
0.37841796875,
-0.18017578125,
-0.029693603515625,
0.238037109375,
-0.06549072265625,
-0.689453125,
-0.68701171875,
-0.129638671875,
-0.046905517578125,
0.00034236907958984375,
0.01239013671875,
-0.54931640625,
0.79931640625,
-0.7490234375,
0.0499267578125,
-0.382568359375,
-0.11102294921875,
-0.17431640625,
-0.7265625,
1.0166015625,
-0.39111328125,
0.155029296875,
-0.24853515625,
0.5029296875,
0.92138671875,
-0.266845703125,
-0.284423828125,
-0.5322265625,
-0.420166015625,
-1.251953125,
0.320068359375,
-0.50146484375,
0.2315673828125,
-0.72412109375,
-0.74951171875,
1.2080078125,
-0.6796875,
0.498779296875,
1.2470703125,
0.126708984375,
0.68603515625,
-0.607421875,
0.85400390625,
0.697265625,
-0.52978515625,
-0.05621337890625,
0.05255126953125,
-0.58203125,
-0.153076171875,
-0.291015625,
-1.1357421875,
-0.77392578125,
0.59814453125,
1.3251953125,
-0.472900390625,
0.75927734375,
0.1346435546875,
-1.06640625,
-0.5556640625,
0.97412109375,
0.0843505859375,
0.316162109375,
0.75146484375,
-0.2493896484375,
-0.394775390625,
0.290771484375,
-0.330810546875,
-0.421630859375,
-0.488525390625,
1.1025390625,
-0.2083740234375,
-0.5234375,
0.69287109375,
0.8701171875,
-1.205078125,
-0.7177734375,
-0.1424560546875,
0.2802734375,
-0.222412109375,
-0.96484375,
-0.07666015625,
0.6416015625,
-0.9150390625,
0.269287109375,
0.3232421875,
-0.334228515625,
0.53955078125,
0.0986328125,
0.5849609375,
-0.62158203125,
0.439697265625,
0.630859375,
-0.40673828125,
-0.31494140625,
-0.7470703125,
-0.1007080078125,
0.034881591796875,
0.08056640625,
0.78369140625,
-0.390380859375,
0.07257080078125,
0.32080078125,
-0.0426025390625,
0.82275390625,
-0.328369140625,
-0.2403564453125,
0.266845703125,
-1.1494140625,
-0.73876953125,
-0.20068359375,
0.2139892578125,
-0.2177734375,
0.56787109375,
-0.72509765625,
-0.01061248779296875,
-0.0433349609375,
0.28955078125,
-0.260986328125,
-0.828125,
-0.071533203125,
-1.041015625,
-0.486328125,
-0.70703125,
-0.6162109375,
0.1712646484375,
0.337890625,
0.2396240234375,
-0.6923828125,
0.28466796875,
0.73486328125,
-0.525390625,
0.673828125,
-0.6474609375,
0.41650390625,
-0.392578125,
-0.2225341796875,
-0.87890625,
0.06317138671875,
-0.44921875,
0.142333984375,
-0.5,
0.451171875,
-0.053466796875,
0.4931640625,
-0.08056640625,
0.2734375,
-0.3544921875,
-0.347900390625,
-0.059234619140625,
0.2291259765625,
-0.5439453125,
0.68115234375,
0.65283203125,
0.1236572265625,
-0.16015625,
-0.398193359375,
-0.359375,
-0.1416015625,
0.7265625,
0.47216796875,
-0.2069091796875,
0.34375,
-0.296142578125,
0.00525665283203125,
-1.080078125,
0.330322265625,
-0.4150390625,
0.0157012939453125,
0.0517578125,
-0.251708984375,
0.634765625,
1.4404296875,
-0.43798828125,
0.361572265625,
0.210205078125,
0.1981201171875,
0.61083984375,
0.2005615234375,
-0.11688232421875,
0.70458984375,
0.06634521484375,
-0.3037109375,
-0.1492919921875,
0.305419921875,
0.48046875,
0.043060302734375,
-0.31787109375,
-1.0068359375,
-1.1083984375,
-0.533203125,
-0.0178375244140625,
0.57080078125,
0.2822265625,
-0.6865234375,
-0.22265625,
-0.158935546875,
-0.46728515625,
0.459716796875,
-1.29296875,
-0.84130859375,
0.1610107421875,
0.136474609375,
-0.4013671875,
0.355224609375,
-0.548828125,
-0.1307373046875,
0.08270263671875,
0.42041015625,
-0.4951171875,
0.391357421875,
0.006916046142578125,
0.62353515625,
-0.052215576171875,
-0.1630859375,
0.1417236328125,
0.72314453125,
-0.720703125,
-0.485595703125,
0.17529296875,
1.177734375,
0.00746917724609375,
0.018341064453125,
-0.75048828125,
0.2978515625,
-0.055877685546875,
0.0299072265625,
-0.42431640625,
0.176025390625,
-0.251953125,
0.58544921875,
-1.2255859375,
-0.1939697265625,
0.0254669189453125,
0.2491455078125,
0.060546875,
-0.434326171875,
-0.5205078125,
0.8876953125,
1.158203125,
-0.1619873046875,
0.1334228515625,
-0.16796875,
0.64208984375,
0.109375,
-0.0667724609375,
-0.376953125,
0.458251953125,
0.31494140625,
0.75830078125,
-0.08563232421875,
0.3720703125,
0.87548828125,
0.2332763671875,
-0.21533203125,
0.371826171875,
0.483642578125,
0.1165771484375,
-0.168701171875,
-0.2352294921875,
-0.02587890625,
0.264892578125,
-0.69287109375,
0.38916015625,
-0.49951171875,
0.06182861328125,
-0.1226806640625,
-0.861328125,
0.95068359375,
-0.450439453125,
-0.2119140625,
0.266845703125,
-0.436767578125,
0.382568359375,
0.5546875,
0.30224609375,
-0.06353759765625,
0.791015625,
0.76318359375,
0.7255859375,
0.70458984375,
0.525390625,
0.3984375,
-0.66943359375,
0.126708984375,
0.29296875,
-0.31103515625,
-0.1793212890625,
-0.33544921875,
-0.97998046875,
0.72412109375,
-0.294677734375,
-0.324462890625,
0.315673828125,
-0.99169921875,
0.04278564453125,
-0.2401123046875,
0.85791015625,
-0.364013671875,
0.423828125,
0.391357421875,
-0.25927734375,
-0.47900390625,
1.060546875,
0.1707763671875,
0.342041015625,
0.10345458984375,
0.48779296875,
0.306640625,
1.3056640625,
0.73779296875,
0.040191650390625,
0.455078125,
0.77783203125,
-0.6806640625,
-0.5146484375,
-0.1763916015625,
-0.181884765625,
0.046356201171875,
-0.61181640625,
-0.1280517578125,
-0.63916015625,
0.53369140625,
0.2169189453125,
-0.86181640625,
-0.4912109375,
0.1007080078125,
-0.90185546875,
0.1488037109375,
0.58154296875,
0.418701171875,
0.279296875,
0.061187744140625,
-0.27734375,
-0.453125,
0.17138671875,
-0.60986328125,
0.281005859375,
-0.7880859375,
-0.1793212890625,
-0.71240234375,
-0.51416015625,
-0.366943359375,
-0.2283935546875,
-0.309814453125,
-0.97216796875,
0.8134765625,
0.67529296875,
0.55859375,
0.415771484375,
-0.356201171875,
0.09625244140625,
0.78125,
0.75244140625,
-0.11322021484375,
0.91162109375,
0.44921875,
-0.12176513671875,
0.1151123046875,
-0.367919921875,
0.204833984375,
-0.07666015625,
0.1922607421875,
-0.40234375,
0.43505859375,
-0.68701171875,
-1.4990234375,
0.017608642578125,
0.373291015625,
0.306640625,
-0.33056640625,
-1.078125,
-0.5673828125,
-0.9775390625,
-0.04779052734375,
-0.57666015625,
0.70556640625,
-0.1361083984375,
0.066650390625,
-0.324951171875,
-1.1474609375,
4.34765625,
1.0810546875,
1.0908203125,
0.2127685546875,
0.424072265625,
1.1025390625,
0.1734619140625,
-0.724609375,
-0.201416015625,
-0.58935546875,
0.7197265625,
-0.318359375,
0.20751953125,
0.5869140625,
0.031463623046875,
0.7900390625,
-0.423095703125,
-0.0855712890625,
0.08056640625,
-0.85400390625,
-0.880859375,
0.28125,
-0.07672119140625,
0.284912109375,
-0.06793212890625,
0.1785888671875,
0.74462890625,
-1.009765625,
-0.2347412109375,
-0.3251953125,
0.28076171875,
-0.81494140625,
1.1591796875,
-0.27685546875,
-0.07061767578125,
0.626953125,
0.210693359375,
-0.427001953125,
-0.65185546875,
0.2119140625,
-0.1064453125,
0.429931640625,
0.71044921875,
-1.005859375,
-0.09442138671875,
0.3935546875,
-0.6044921875,
0.3828125,
-0.19091796875,
-0.71923828125,
0.68603515625,
-0.27978515625,
0.312744140625,
-0.37841796875,
-1.08203125,
0.43212890625,
0.24658203125,
0.255126953125,
-0.355224609375,
0.353515625,
0.19775390625,
0.3408203125,
0.0279083251953125,
0.57275390625,
-1.0419921875,
0.4267578125,
-0.04388427734375,
0.306640625,
-0.34619140625,
-0.1146240234375,
-0.88134765625,
-0.50341796875,
-0.23291015625,
-0.3212890625,
0.32470703125,
0.27294921875,
-0.25390625,
0.552734375,
0.68798828125,
-0.499267578125,
0.302490234375,
-0.27685546875,
-0.0777587890625,
-0.5126953125,
0.438720703125,
0.83447265625,
-0.404541015625,
-0.50244140625,
-0.275146484375,
0.6064453125,
0.6083984375,
0.79638671875,
0.367431640625,
-0.55859375,
-0.248779296875
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Phoenix has a string s consisting of lowercase Latin letters. He wants to distribute all the letters of his string into k non-empty strings a_1, a_2, ..., a_k such that every letter of s goes to exactly one of the strings a_i. The strings a_i do not need to be substrings of s. Phoenix can distribute letters of s and rearrange the letters within each string a_i however he wants.
For example, if s = baba and k=2, Phoenix may distribute the letters of his string in many ways, such as:
* ba and ba
* a and abb
* ab and ab
* aa and bb
But these ways are invalid:
* baa and ba
* b and ba
* baba and empty string (a_i should be non-empty)
Phoenix wants to distribute the letters of his string s into k strings a_1, a_2, ..., a_k to minimize the lexicographically maximum string among them, i. e. minimize max(a_1, a_2, ..., a_k). Help him find the optimal distribution and print the minimal possible value of max(a_1, a_2, ..., a_k).
String x is lexicographically less than string y if either x is a prefix of y and x ≠ y, or there exists an index i (1 ≤ i ≤ min(|x|, |y|)) such that x_i < y_i and for every j (1 ≤ j < i) x_j = y_j. Here |x| denotes the length of the string x.
Input
The input consists of multiple test cases. The first line contains an integer t (1 ≤ t ≤ 1000) — the number of test cases. Each test case consists of two lines.
The first line of each test case consists of two integers n and k (1 ≤ k ≤ n ≤ 10^5) — the length of string s and the number of non-empty strings, into which Phoenix wants to distribute letters of s, respectively.
The second line of each test case contains a string s of length n consisting only of lowercase Latin letters.
It is guaranteed that the sum of n over all test cases is ≤ 10^5.
Output
Print t answers — one per test case. The i-th answer should be the minimal possible value of max(a_1, a_2, ..., a_k) in the i-th test case.
Example
Input
6
4 2
baba
5 2
baacb
5 3
baacb
5 3
aaaaa
6 4
aaxxzz
7 1
phoenix
Output
ab
abbc
b
aa
x
ehinopx
Note
In the first test case, one optimal solution is to distribute baba into ab and ab.
In the second test case, one optimal solution is to distribute baacb into abbc and a.
In the third test case, one optimal solution is to distribute baacb into ac, ab, and b.
In the fourth test case, one optimal solution is to distribute aaaaa into aa, aa, and a.
In the fifth test case, one optimal solution is to distribute aaxxzz into az, az, x, and x.
In the sixth test case, one optimal solution is to distribute phoenix into ehinopx.
Submitted Solution:
```
import sys
try:
sys.stdin = open('input.txt', 'r')
sys.stdout = open('output.txt', 'w')
except:
pass
for _ in range(int(input())):
n,k = [int(x) for x in input().split()]
s = str(input())
s = "".join(sorted(s))
if k==n: print(s[n-1]); continue
if s[0]!=s[k-1]: print(s[k-1]); continue
print(s[0],end="")
if s[k]==s[n-1]:
print(k,n-1)
for _ in range(int((n-k)/k)): print(s[k],end="")
if (n-k)%k: print(s[k],end="")
print()
else:
print(s[k:])
```
No
| 10,940 | [
0.29248046875,
0.30419921875,
0.43798828125,
0.275390625,
-0.609375,
-0.469970703125,
-0.186279296875,
0.1416015625,
-0.07720947265625,
0.87939453125,
0.9443359375,
0.1571044921875,
0.043212890625,
-0.84912109375,
-0.8251953125,
0.267578125,
-0.70166015625,
-0.52783203125,
-0.367919921875,
-0.26025390625,
0.1336669921875,
0.0865478515625,
-1.58203125,
-0.281005859375,
-0.310302734375,
0.82666015625,
0.1861572265625,
-0.043304443359375,
1.111328125,
0.7841796875,
0.01898193359375,
-0.355712890625,
0.61181640625,
-1.0869140625,
-0.27783203125,
-0.6708984375,
0.85009765625,
-0.418701171875,
-0.4501953125,
-0.7626953125,
0.49267578125,
-0.8076171875,
0.51708984375,
-0.61279296875,
-0.9814453125,
-0.1126708984375,
-0.1331787109375,
-0.41064453125,
-0.5654296875,
-0.373779296875,
0.0968017578125,
-0.38720703125,
0.60693359375,
-0.51318359375,
0.1279296875,
0.23486328125,
0.0335693359375,
-0.05841064453125,
-0.82470703125,
0.1536865234375,
0.1656494140625,
0.315673828125,
-0.380859375,
-0.74755859375,
-0.17724609375,
0.255859375,
-0.077880859375,
-0.010223388671875,
0.1444091796875,
-0.86962890625,
-0.4150390625,
0.21826171875,
-0.38623046875,
-0.5830078125,
-0.48681640625,
0.1240234375,
0.1583251953125,
-0.158203125,
-0.6650390625,
0.7998046875,
0.074951171875,
0.755859375,
0.278564453125,
0.01378631591796875,
-0.71923828125,
-0.48095703125,
0.21044921875,
0.36962890625,
0.1439208984375,
0.1390380859375,
0.08038330078125,
0.434814453125,
-0.63818359375,
0.240234375,
0.392822265625,
0.7294921875,
-0.12445068359375,
0.399169921875,
0.1595458984375,
0.392333984375,
1.1328125,
0.751953125,
-0.43603515625,
1.1767578125,
-0.642578125,
0.1923828125,
-0.2205810546875,
-0.2489013671875,
-0.2142333984375,
-0.380859375,
-0.160400390625,
-0.0200653076171875,
0.3349609375,
0.33251953125,
-0.36962890625,
0.6708984375,
-0.08544921875,
0.765625,
-0.9130859375,
-0.046295166015625,
0.5693359375,
0.06024169921875,
0.5576171875,
-0.1923828125,
0.054931640625,
-0.2259521484375,
-0.59423828125,
0.74560546875,
-0.7216796875,
-0.0679931640625,
0.5927734375,
0.09130859375,
-0.4970703125,
0.408447265625,
0.04827880859375,
0.4482421875,
0.06756591796875,
0.50732421875,
0.89501953125,
-0.1824951171875,
0.68505859375,
-0.1490478515625,
0.04620361328125,
1.515625,
0.1470947265625,
-0.283935546875,
0.5654296875,
0.0716552734375,
-0.58740234375,
0.87841796875,
-0.8251953125,
0.58544921875,
0.06494140625,
0.31787109375,
-0.22216796875,
0.08642578125,
0.0099639892578125,
0.63525390625,
0.4013671875,
0.2425537109375,
-0.638671875,
-0.082763671875,
-0.3427734375,
0.8720703125,
-0.35400390625,
0.8466796875,
-0.74609375,
-0.416015625,
-0.07958984375,
-0.38671875,
-0.0389404296875,
-0.349365234375,
0.058349609375,
0.8896484375,
0.2252197265625,
0.8349609375,
0.8154296875,
-0.669921875,
0.38623046875,
0.33251953125,
-0.213623046875,
0.339111328125,
0.284912109375,
0.6904296875,
0.4306640625,
0.223876953125,
0.004062652587890625,
-0.345703125,
-0.6591796875,
-0.6708984375,
0.175537109375,
0.6083984375,
-0.29052734375,
0.263916015625,
-0.1661376953125,
0.1661376953125,
-0.6904296875,
-0.2259521484375,
-0.05999755859375,
-1.0146484375,
-0.334716796875,
0.412353515625,
-0.09930419921875,
0.2491455078125,
-0.7109375,
-0.44677734375,
0.203857421875,
1.0546875,
-0.11505126953125,
0.057037353515625,
0.432861328125,
0.4228515625,
-0.2364501953125,
0.25439453125,
0.07244873046875,
-0.1439208984375,
-0.53173828125,
0.60888671875,
-0.5625,
0.03643798828125,
-0.10882568359375,
0.90478515625,
0.25390625,
0.2489013671875,
-0.5830078125,
-0.2117919921875,
0.471435546875,
1.310546875,
-0.1634521484375,
0.56103515625,
0.54345703125,
0.88427734375,
0.525390625,
0.78466796875,
0.456298828125,
0.45751953125,
0.74853515625,
0.71484375,
-0.12347412109375,
0.287353515625,
0.19970703125,
0.5009765625,
0.51123046875,
0.54052734375,
0.10540771484375,
0.5380859375,
-0.34033203125,
0.34326171875,
-0.83935546875,
0.2066650390625,
-0.1875,
1.076171875,
0.243896484375,
0.51171875,
-0.364013671875,
-0.327392578125,
0.32763671875,
0.744140625,
-1.08203125,
-0.74755859375,
-0.153076171875,
-0.0219573974609375,
0.2080078125,
-0.00814056396484375,
0.287841796875,
0.348388671875,
0.72119140625,
-0.07415771484375,
-0.254638671875,
-0.327392578125,
-1.146484375,
-0.9599609375,
-0.76318359375,
-0.38232421875,
-0.53466796875,
0.1475830078125,
0.513671875,
-0.984375,
0.06158447265625,
-0.66796875,
0.11029052734375,
-0.06292724609375,
-0.71875,
0.404052734375,
0.1749267578125,
0.875,
-0.82958984375,
0.56591796875,
0.03155517578125,
1.0146484375,
-0.92529296875,
-0.304931640625,
-0.361328125,
-0.498779296875,
0.49853515625,
0.07379150390625,
0.2196044921875,
0.061065673828125,
-0.55810546875,
-0.95361328125,
-0.2308349609375,
0.08447265625,
-0.48095703125,
0.2529296875,
-0.77001953125,
0.9970703125,
0.46484375,
-0.7158203125,
0.369384765625,
1.0166015625,
-0.78515625,
0.399169921875,
0.281005859375,
-0.08807373046875,
-0.662109375,
1.2587890625,
0.40234375,
0.33544921875,
-0.5380859375,
-0.7080078125,
-0.176513671875,
0.2841796875,
0.1531982421875,
-0.77978515625,
0.004367828369140625,
0.9033203125,
-0.12335205078125,
-1.34375,
0.62158203125,
-0.99658203125,
-0.7421875,
-0.256591796875,
-0.626953125,
0.68212890625,
0.619140625,
0.350830078125,
-0.36865234375,
-0.28076171875,
-0.0579833984375,
0.6171875,
0.170654296875,
-0.8515625,
-0.07708740234375,
0.6005859375,
-0.16162109375,
0.032501220703125,
0.261474609375,
-0.46728515625,
-0.2041015625,
-0.01503753662109375,
-0.0958251953125,
0.83251953125,
0.151611328125,
0.4443359375,
0.2364501953125,
0.53955078125,
-0.89404296875,
-0.09698486328125,
-0.162109375,
0.5927734375,
0.331298828125,
0.499267578125,
0.50634765625,
-0.10491943359375,
-0.806640625,
-1.3505859375,
0.33154296875,
0.2479248046875,
0.6103515625,
-0.76904296875,
0.908203125,
0.10980224609375,
-0.57958984375,
0.53759765625,
-0.734375,
0.193115234375,
1.025390625,
-0.363037109375,
0.8837890625,
-0.87646484375,
-0.10198974609375,
0.009765625,
0.0849609375,
0.39697265625,
0.47314453125,
0.650390625,
-0.11785888671875,
-0.10577392578125,
-0.410888671875,
-0.18798828125,
0.08111572265625,
-0.367919921875,
0.364990234375,
-0.300537109375,
-0.357666015625,
-1.1171875,
0.58544921875,
0.6005859375,
0.57861328125,
0.453125,
0.50439453125,
0.138427734375,
0.34765625,
0.5400390625,
-0.1541748046875,
0.1080322265625,
-0.52392578125,
0.76806640625,
0.07684326171875,
-0.11041259765625,
-0.338623046875,
-0.411865234375,
0.0303192138671875,
0.38916015625,
-0.0325927734375,
-0.1688232421875,
-0.98388671875,
0.286376953125,
-0.0621337890625,
0.76904296875,
-0.55224609375,
-0.2215576171875,
-0.07696533203125,
0.33203125,
0.50830078125,
-0.79248046875,
-0.05792236328125,
-0.8466796875,
0.44970703125,
0.308349609375,
-0.0743408203125,
-0.312744140625,
-0.3134765625,
-0.638671875,
-0.88525390625,
0.705078125,
0.96044921875,
-0.012298583984375,
-0.0963134765625,
-1.181640625,
0.65185546875,
0.236328125,
-0.2138671875,
0.1513671875,
-0.050689697265625,
0.408447265625,
-0.22216796875,
0.6982421875,
-0.1162109375,
-0.78271484375,
0.149658203125,
-1.0556640625,
0.479736328125,
-0.2017822265625,
0.403564453125,
-0.448486328125,
0.036651611328125,
-0.053619384765625,
0.353759765625,
-0.294921875,
0.237548828125,
-0.2998046875,
0.259033203125,
-1.1533203125,
-0.54052734375,
0.376220703125,
-0.281982421875,
-0.04962158203125,
1.0556640625,
-0.386962890625,
-0.55322265625,
0.25439453125,
0.71435546875,
-0.2958984375,
0.2890625,
-0.24755859375,
0.277587890625,
-0.419921875,
-0.21240234375,
-0.10723876953125,
-0.389404296875,
0.84033203125,
-0.266357421875,
-0.4765625,
-0.19873046875,
-0.8544921875,
0.0831298828125,
-0.0150909423828125,
-0.9306640625,
0.5478515625,
0.09503173828125,
-0.383056640625,
-0.217529296875,
-0.147216796875,
-0.3857421875,
-0.42431640625,
-0.2476806640625,
-0.51806640625,
0.1678466796875,
0.7763671875,
1.1142578125,
0.138427734375,
-0.40673828125,
-0.1475830078125,
0.181640625,
-0.054595947265625,
-0.5302734375,
-0.00942230224609375,
-0.08856201171875,
-0.1370849609375,
-0.302734375,
0.30908203125,
0.2017822265625,
0.319580078125,
0.43359375,
0.3369140625,
0.420654296875,
0.412841796875,
-0.39453125,
1.212890625,
0.09002685546875,
-0.98681640625,
-0.70556640625,
0.4306640625,
0.07135009765625,
0.385986328125,
0.1055908203125,
-0.76708984375,
-0.7431640625,
-0.92529296875,
0.2257080078125,
-0.642578125,
-0.365478515625,
-0.86474609375,
-0.50927734375,
-0.6611328125,
0.201171875,
-0.421630859375,
-0.51513671875,
-0.08673095703125,
-1.3583984375,
0.223388671875,
-0.708984375,
-0.403076171875,
-0.75732421875,
-0.32177734375,
-0.181884765625,
1.0419921875,
0.1700439453125,
0.37841796875,
-0.18017578125,
-0.029693603515625,
0.238037109375,
-0.06549072265625,
-0.689453125,
-0.68701171875,
-0.129638671875,
-0.046905517578125,
0.00034236907958984375,
0.01239013671875,
-0.54931640625,
0.79931640625,
-0.7490234375,
0.0499267578125,
-0.382568359375,
-0.11102294921875,
-0.17431640625,
-0.7265625,
1.0166015625,
-0.39111328125,
0.155029296875,
-0.24853515625,
0.5029296875,
0.92138671875,
-0.266845703125,
-0.284423828125,
-0.5322265625,
-0.420166015625,
-1.251953125,
0.320068359375,
-0.50146484375,
0.2315673828125,
-0.72412109375,
-0.74951171875,
1.2080078125,
-0.6796875,
0.498779296875,
1.2470703125,
0.126708984375,
0.68603515625,
-0.607421875,
0.85400390625,
0.697265625,
-0.52978515625,
-0.05621337890625,
0.05255126953125,
-0.58203125,
-0.153076171875,
-0.291015625,
-1.1357421875,
-0.77392578125,
0.59814453125,
1.3251953125,
-0.472900390625,
0.75927734375,
0.1346435546875,
-1.06640625,
-0.5556640625,
0.97412109375,
0.0843505859375,
0.316162109375,
0.75146484375,
-0.2493896484375,
-0.394775390625,
0.290771484375,
-0.330810546875,
-0.421630859375,
-0.488525390625,
1.1025390625,
-0.2083740234375,
-0.5234375,
0.69287109375,
0.8701171875,
-1.205078125,
-0.7177734375,
-0.1424560546875,
0.2802734375,
-0.222412109375,
-0.96484375,
-0.07666015625,
0.6416015625,
-0.9150390625,
0.269287109375,
0.3232421875,
-0.334228515625,
0.53955078125,
0.0986328125,
0.5849609375,
-0.62158203125,
0.439697265625,
0.630859375,
-0.40673828125,
-0.31494140625,
-0.7470703125,
-0.1007080078125,
0.034881591796875,
0.08056640625,
0.78369140625,
-0.390380859375,
0.07257080078125,
0.32080078125,
-0.0426025390625,
0.82275390625,
-0.328369140625,
-0.2403564453125,
0.266845703125,
-1.1494140625,
-0.73876953125,
-0.20068359375,
0.2139892578125,
-0.2177734375,
0.56787109375,
-0.72509765625,
-0.01061248779296875,
-0.0433349609375,
0.28955078125,
-0.260986328125,
-0.828125,
-0.071533203125,
-1.041015625,
-0.486328125,
-0.70703125,
-0.6162109375,
0.1712646484375,
0.337890625,
0.2396240234375,
-0.6923828125,
0.28466796875,
0.73486328125,
-0.525390625,
0.673828125,
-0.6474609375,
0.41650390625,
-0.392578125,
-0.2225341796875,
-0.87890625,
0.06317138671875,
-0.44921875,
0.142333984375,
-0.5,
0.451171875,
-0.053466796875,
0.4931640625,
-0.08056640625,
0.2734375,
-0.3544921875,
-0.347900390625,
-0.059234619140625,
0.2291259765625,
-0.5439453125,
0.68115234375,
0.65283203125,
0.1236572265625,
-0.16015625,
-0.398193359375,
-0.359375,
-0.1416015625,
0.7265625,
0.47216796875,
-0.2069091796875,
0.34375,
-0.296142578125,
0.00525665283203125,
-1.080078125,
0.330322265625,
-0.4150390625,
0.0157012939453125,
0.0517578125,
-0.251708984375,
0.634765625,
1.4404296875,
-0.43798828125,
0.361572265625,
0.210205078125,
0.1981201171875,
0.61083984375,
0.2005615234375,
-0.11688232421875,
0.70458984375,
0.06634521484375,
-0.3037109375,
-0.1492919921875,
0.305419921875,
0.48046875,
0.043060302734375,
-0.31787109375,
-1.0068359375,
-1.1083984375,
-0.533203125,
-0.0178375244140625,
0.57080078125,
0.2822265625,
-0.6865234375,
-0.22265625,
-0.158935546875,
-0.46728515625,
0.459716796875,
-1.29296875,
-0.84130859375,
0.1610107421875,
0.136474609375,
-0.4013671875,
0.355224609375,
-0.548828125,
-0.1307373046875,
0.08270263671875,
0.42041015625,
-0.4951171875,
0.391357421875,
0.006916046142578125,
0.62353515625,
-0.052215576171875,
-0.1630859375,
0.1417236328125,
0.72314453125,
-0.720703125,
-0.485595703125,
0.17529296875,
1.177734375,
0.00746917724609375,
0.018341064453125,
-0.75048828125,
0.2978515625,
-0.055877685546875,
0.0299072265625,
-0.42431640625,
0.176025390625,
-0.251953125,
0.58544921875,
-1.2255859375,
-0.1939697265625,
0.0254669189453125,
0.2491455078125,
0.060546875,
-0.434326171875,
-0.5205078125,
0.8876953125,
1.158203125,
-0.1619873046875,
0.1334228515625,
-0.16796875,
0.64208984375,
0.109375,
-0.0667724609375,
-0.376953125,
0.458251953125,
0.31494140625,
0.75830078125,
-0.08563232421875,
0.3720703125,
0.87548828125,
0.2332763671875,
-0.21533203125,
0.371826171875,
0.483642578125,
0.1165771484375,
-0.168701171875,
-0.2352294921875,
-0.02587890625,
0.264892578125,
-0.69287109375,
0.38916015625,
-0.49951171875,
0.06182861328125,
-0.1226806640625,
-0.861328125,
0.95068359375,
-0.450439453125,
-0.2119140625,
0.266845703125,
-0.436767578125,
0.382568359375,
0.5546875,
0.30224609375,
-0.06353759765625,
0.791015625,
0.76318359375,
0.7255859375,
0.70458984375,
0.525390625,
0.3984375,
-0.66943359375,
0.126708984375,
0.29296875,
-0.31103515625,
-0.1793212890625,
-0.33544921875,
-0.97998046875,
0.72412109375,
-0.294677734375,
-0.324462890625,
0.315673828125,
-0.99169921875,
0.04278564453125,
-0.2401123046875,
0.85791015625,
-0.364013671875,
0.423828125,
0.391357421875,
-0.25927734375,
-0.47900390625,
1.060546875,
0.1707763671875,
0.342041015625,
0.10345458984375,
0.48779296875,
0.306640625,
1.3056640625,
0.73779296875,
0.040191650390625,
0.455078125,
0.77783203125,
-0.6806640625,
-0.5146484375,
-0.1763916015625,
-0.181884765625,
0.046356201171875,
-0.61181640625,
-0.1280517578125,
-0.63916015625,
0.53369140625,
0.2169189453125,
-0.86181640625,
-0.4912109375,
0.1007080078125,
-0.90185546875,
0.1488037109375,
0.58154296875,
0.418701171875,
0.279296875,
0.061187744140625,
-0.27734375,
-0.453125,
0.17138671875,
-0.60986328125,
0.281005859375,
-0.7880859375,
-0.1793212890625,
-0.71240234375,
-0.51416015625,
-0.366943359375,
-0.2283935546875,
-0.309814453125,
-0.97216796875,
0.8134765625,
0.67529296875,
0.55859375,
0.415771484375,
-0.356201171875,
0.09625244140625,
0.78125,
0.75244140625,
-0.11322021484375,
0.91162109375,
0.44921875,
-0.12176513671875,
0.1151123046875,
-0.367919921875,
0.204833984375,
-0.07666015625,
0.1922607421875,
-0.40234375,
0.43505859375,
-0.68701171875,
-1.4990234375,
0.017608642578125,
0.373291015625,
0.306640625,
-0.33056640625,
-1.078125,
-0.5673828125,
-0.9775390625,
-0.04779052734375,
-0.57666015625,
0.70556640625,
-0.1361083984375,
0.066650390625,
-0.324951171875,
-1.1474609375,
4.34765625,
1.0810546875,
1.0908203125,
0.2127685546875,
0.424072265625,
1.1025390625,
0.1734619140625,
-0.724609375,
-0.201416015625,
-0.58935546875,
0.7197265625,
-0.318359375,
0.20751953125,
0.5869140625,
0.031463623046875,
0.7900390625,
-0.423095703125,
-0.0855712890625,
0.08056640625,
-0.85400390625,
-0.880859375,
0.28125,
-0.07672119140625,
0.284912109375,
-0.06793212890625,
0.1785888671875,
0.74462890625,
-1.009765625,
-0.2347412109375,
-0.3251953125,
0.28076171875,
-0.81494140625,
1.1591796875,
-0.27685546875,
-0.07061767578125,
0.626953125,
0.210693359375,
-0.427001953125,
-0.65185546875,
0.2119140625,
-0.1064453125,
0.429931640625,
0.71044921875,
-1.005859375,
-0.09442138671875,
0.3935546875,
-0.6044921875,
0.3828125,
-0.19091796875,
-0.71923828125,
0.68603515625,
-0.27978515625,
0.312744140625,
-0.37841796875,
-1.08203125,
0.43212890625,
0.24658203125,
0.255126953125,
-0.355224609375,
0.353515625,
0.19775390625,
0.3408203125,
0.0279083251953125,
0.57275390625,
-1.0419921875,
0.4267578125,
-0.04388427734375,
0.306640625,
-0.34619140625,
-0.1146240234375,
-0.88134765625,
-0.50341796875,
-0.23291015625,
-0.3212890625,
0.32470703125,
0.27294921875,
-0.25390625,
0.552734375,
0.68798828125,
-0.499267578125,
0.302490234375,
-0.27685546875,
-0.0777587890625,
-0.5126953125,
0.438720703125,
0.83447265625,
-0.404541015625,
-0.50244140625,
-0.275146484375,
0.6064453125,
0.6083984375,
0.79638671875,
0.367431640625,
-0.55859375,
-0.248779296875
] | 0 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Phoenix has a string s consisting of lowercase Latin letters. He wants to distribute all the letters of his string into k non-empty strings a_1, a_2, ..., a_k such that every letter of s goes to exactly one of the strings a_i. The strings a_i do not need to be substrings of s. Phoenix can distribute letters of s and rearrange the letters within each string a_i however he wants.
For example, if s = baba and k=2, Phoenix may distribute the letters of his string in many ways, such as:
* ba and ba
* a and abb
* ab and ab
* aa and bb
But these ways are invalid:
* baa and ba
* b and ba
* baba and empty string (a_i should be non-empty)
Phoenix wants to distribute the letters of his string s into k strings a_1, a_2, ..., a_k to minimize the lexicographically maximum string among them, i. e. minimize max(a_1, a_2, ..., a_k). Help him find the optimal distribution and print the minimal possible value of max(a_1, a_2, ..., a_k).
String x is lexicographically less than string y if either x is a prefix of y and x ≠ y, or there exists an index i (1 ≤ i ≤ min(|x|, |y|)) such that x_i < y_i and for every j (1 ≤ j < i) x_j = y_j. Here |x| denotes the length of the string x.
Input
The input consists of multiple test cases. The first line contains an integer t (1 ≤ t ≤ 1000) — the number of test cases. Each test case consists of two lines.
The first line of each test case consists of two integers n and k (1 ≤ k ≤ n ≤ 10^5) — the length of string s and the number of non-empty strings, into which Phoenix wants to distribute letters of s, respectively.
The second line of each test case contains a string s of length n consisting only of lowercase Latin letters.
It is guaranteed that the sum of n over all test cases is ≤ 10^5.
Output
Print t answers — one per test case. The i-th answer should be the minimal possible value of max(a_1, a_2, ..., a_k) in the i-th test case.
Example
Input
6
4 2
baba
5 2
baacb
5 3
baacb
5 3
aaaaa
6 4
aaxxzz
7 1
phoenix
Output
ab
abbc
b
aa
x
ehinopx
Note
In the first test case, one optimal solution is to distribute baba into ab and ab.
In the second test case, one optimal solution is to distribute baacb into abbc and a.
In the third test case, one optimal solution is to distribute baacb into ac, ab, and b.
In the fourth test case, one optimal solution is to distribute aaaaa into aa, aa, and a.
In the fifth test case, one optimal solution is to distribute aaxxzz into az, az, x, and x.
In the sixth test case, one optimal solution is to distribute phoenix into ehinopx.
Submitted Solution:
```
def solve():
N, K = [int(el) for el in input().split()]
s = input()
arr = ['' for _ in range(K)]
ind = -1
for ch in sorted(s):
ind = (ind + 1) % K
arr[ind] += ch
arr.sort()
return arr[-1]
for t in range(1, int(input()) + 1):
print(solve())
```
No
| 10,941 | [
0.29248046875,
0.30419921875,
0.43798828125,
0.275390625,
-0.609375,
-0.469970703125,
-0.186279296875,
0.1416015625,
-0.07720947265625,
0.87939453125,
0.9443359375,
0.1571044921875,
0.043212890625,
-0.84912109375,
-0.8251953125,
0.267578125,
-0.70166015625,
-0.52783203125,
-0.367919921875,
-0.26025390625,
0.1336669921875,
0.0865478515625,
-1.58203125,
-0.281005859375,
-0.310302734375,
0.82666015625,
0.1861572265625,
-0.043304443359375,
1.111328125,
0.7841796875,
0.01898193359375,
-0.355712890625,
0.61181640625,
-1.0869140625,
-0.27783203125,
-0.6708984375,
0.85009765625,
-0.418701171875,
-0.4501953125,
-0.7626953125,
0.49267578125,
-0.8076171875,
0.51708984375,
-0.61279296875,
-0.9814453125,
-0.1126708984375,
-0.1331787109375,
-0.41064453125,
-0.5654296875,
-0.373779296875,
0.0968017578125,
-0.38720703125,
0.60693359375,
-0.51318359375,
0.1279296875,
0.23486328125,
0.0335693359375,
-0.05841064453125,
-0.82470703125,
0.1536865234375,
0.1656494140625,
0.315673828125,
-0.380859375,
-0.74755859375,
-0.17724609375,
0.255859375,
-0.077880859375,
-0.010223388671875,
0.1444091796875,
-0.86962890625,
-0.4150390625,
0.21826171875,
-0.38623046875,
-0.5830078125,
-0.48681640625,
0.1240234375,
0.1583251953125,
-0.158203125,
-0.6650390625,
0.7998046875,
0.074951171875,
0.755859375,
0.278564453125,
0.01378631591796875,
-0.71923828125,
-0.48095703125,
0.21044921875,
0.36962890625,
0.1439208984375,
0.1390380859375,
0.08038330078125,
0.434814453125,
-0.63818359375,
0.240234375,
0.392822265625,
0.7294921875,
-0.12445068359375,
0.399169921875,
0.1595458984375,
0.392333984375,
1.1328125,
0.751953125,
-0.43603515625,
1.1767578125,
-0.642578125,
0.1923828125,
-0.2205810546875,
-0.2489013671875,
-0.2142333984375,
-0.380859375,
-0.160400390625,
-0.0200653076171875,
0.3349609375,
0.33251953125,
-0.36962890625,
0.6708984375,
-0.08544921875,
0.765625,
-0.9130859375,
-0.046295166015625,
0.5693359375,
0.06024169921875,
0.5576171875,
-0.1923828125,
0.054931640625,
-0.2259521484375,
-0.59423828125,
0.74560546875,
-0.7216796875,
-0.0679931640625,
0.5927734375,
0.09130859375,
-0.4970703125,
0.408447265625,
0.04827880859375,
0.4482421875,
0.06756591796875,
0.50732421875,
0.89501953125,
-0.1824951171875,
0.68505859375,
-0.1490478515625,
0.04620361328125,
1.515625,
0.1470947265625,
-0.283935546875,
0.5654296875,
0.0716552734375,
-0.58740234375,
0.87841796875,
-0.8251953125,
0.58544921875,
0.06494140625,
0.31787109375,
-0.22216796875,
0.08642578125,
0.0099639892578125,
0.63525390625,
0.4013671875,
0.2425537109375,
-0.638671875,
-0.082763671875,
-0.3427734375,
0.8720703125,
-0.35400390625,
0.8466796875,
-0.74609375,
-0.416015625,
-0.07958984375,
-0.38671875,
-0.0389404296875,
-0.349365234375,
0.058349609375,
0.8896484375,
0.2252197265625,
0.8349609375,
0.8154296875,
-0.669921875,
0.38623046875,
0.33251953125,
-0.213623046875,
0.339111328125,
0.284912109375,
0.6904296875,
0.4306640625,
0.223876953125,
0.004062652587890625,
-0.345703125,
-0.6591796875,
-0.6708984375,
0.175537109375,
0.6083984375,
-0.29052734375,
0.263916015625,
-0.1661376953125,
0.1661376953125,
-0.6904296875,
-0.2259521484375,
-0.05999755859375,
-1.0146484375,
-0.334716796875,
0.412353515625,
-0.09930419921875,
0.2491455078125,
-0.7109375,
-0.44677734375,
0.203857421875,
1.0546875,
-0.11505126953125,
0.057037353515625,
0.432861328125,
0.4228515625,
-0.2364501953125,
0.25439453125,
0.07244873046875,
-0.1439208984375,
-0.53173828125,
0.60888671875,
-0.5625,
0.03643798828125,
-0.10882568359375,
0.90478515625,
0.25390625,
0.2489013671875,
-0.5830078125,
-0.2117919921875,
0.471435546875,
1.310546875,
-0.1634521484375,
0.56103515625,
0.54345703125,
0.88427734375,
0.525390625,
0.78466796875,
0.456298828125,
0.45751953125,
0.74853515625,
0.71484375,
-0.12347412109375,
0.287353515625,
0.19970703125,
0.5009765625,
0.51123046875,
0.54052734375,
0.10540771484375,
0.5380859375,
-0.34033203125,
0.34326171875,
-0.83935546875,
0.2066650390625,
-0.1875,
1.076171875,
0.243896484375,
0.51171875,
-0.364013671875,
-0.327392578125,
0.32763671875,
0.744140625,
-1.08203125,
-0.74755859375,
-0.153076171875,
-0.0219573974609375,
0.2080078125,
-0.00814056396484375,
0.287841796875,
0.348388671875,
0.72119140625,
-0.07415771484375,
-0.254638671875,
-0.327392578125,
-1.146484375,
-0.9599609375,
-0.76318359375,
-0.38232421875,
-0.53466796875,
0.1475830078125,
0.513671875,
-0.984375,
0.06158447265625,
-0.66796875,
0.11029052734375,
-0.06292724609375,
-0.71875,
0.404052734375,
0.1749267578125,
0.875,
-0.82958984375,
0.56591796875,
0.03155517578125,
1.0146484375,
-0.92529296875,
-0.304931640625,
-0.361328125,
-0.498779296875,
0.49853515625,
0.07379150390625,
0.2196044921875,
0.061065673828125,
-0.55810546875,
-0.95361328125,
-0.2308349609375,
0.08447265625,
-0.48095703125,
0.2529296875,
-0.77001953125,
0.9970703125,
0.46484375,
-0.7158203125,
0.369384765625,
1.0166015625,
-0.78515625,
0.399169921875,
0.281005859375,
-0.08807373046875,
-0.662109375,
1.2587890625,
0.40234375,
0.33544921875,
-0.5380859375,
-0.7080078125,
-0.176513671875,
0.2841796875,
0.1531982421875,
-0.77978515625,
0.004367828369140625,
0.9033203125,
-0.12335205078125,
-1.34375,
0.62158203125,
-0.99658203125,
-0.7421875,
-0.256591796875,
-0.626953125,
0.68212890625,
0.619140625,
0.350830078125,
-0.36865234375,
-0.28076171875,
-0.0579833984375,
0.6171875,
0.170654296875,
-0.8515625,
-0.07708740234375,
0.6005859375,
-0.16162109375,
0.032501220703125,
0.261474609375,
-0.46728515625,
-0.2041015625,
-0.01503753662109375,
-0.0958251953125,
0.83251953125,
0.151611328125,
0.4443359375,
0.2364501953125,
0.53955078125,
-0.89404296875,
-0.09698486328125,
-0.162109375,
0.5927734375,
0.331298828125,
0.499267578125,
0.50634765625,
-0.10491943359375,
-0.806640625,
-1.3505859375,
0.33154296875,
0.2479248046875,
0.6103515625,
-0.76904296875,
0.908203125,
0.10980224609375,
-0.57958984375,
0.53759765625,
-0.734375,
0.193115234375,
1.025390625,
-0.363037109375,
0.8837890625,
-0.87646484375,
-0.10198974609375,
0.009765625,
0.0849609375,
0.39697265625,
0.47314453125,
0.650390625,
-0.11785888671875,
-0.10577392578125,
-0.410888671875,
-0.18798828125,
0.08111572265625,
-0.367919921875,
0.364990234375,
-0.300537109375,
-0.357666015625,
-1.1171875,
0.58544921875,
0.6005859375,
0.57861328125,
0.453125,
0.50439453125,
0.138427734375,
0.34765625,
0.5400390625,
-0.1541748046875,
0.1080322265625,
-0.52392578125,
0.76806640625,
0.07684326171875,
-0.11041259765625,
-0.338623046875,
-0.411865234375,
0.0303192138671875,
0.38916015625,
-0.0325927734375,
-0.1688232421875,
-0.98388671875,
0.286376953125,
-0.0621337890625,
0.76904296875,
-0.55224609375,
-0.2215576171875,
-0.07696533203125,
0.33203125,
0.50830078125,
-0.79248046875,
-0.05792236328125,
-0.8466796875,
0.44970703125,
0.308349609375,
-0.0743408203125,
-0.312744140625,
-0.3134765625,
-0.638671875,
-0.88525390625,
0.705078125,
0.96044921875,
-0.012298583984375,
-0.0963134765625,
-1.181640625,
0.65185546875,
0.236328125,
-0.2138671875,
0.1513671875,
-0.050689697265625,
0.408447265625,
-0.22216796875,
0.6982421875,
-0.1162109375,
-0.78271484375,
0.149658203125,
-1.0556640625,
0.479736328125,
-0.2017822265625,
0.403564453125,
-0.448486328125,
0.036651611328125,
-0.053619384765625,
0.353759765625,
-0.294921875,
0.237548828125,
-0.2998046875,
0.259033203125,
-1.1533203125,
-0.54052734375,
0.376220703125,
-0.281982421875,
-0.04962158203125,
1.0556640625,
-0.386962890625,
-0.55322265625,
0.25439453125,
0.71435546875,
-0.2958984375,
0.2890625,
-0.24755859375,
0.277587890625,
-0.419921875,
-0.21240234375,
-0.10723876953125,
-0.389404296875,
0.84033203125,
-0.266357421875,
-0.4765625,
-0.19873046875,
-0.8544921875,
0.0831298828125,
-0.0150909423828125,
-0.9306640625,
0.5478515625,
0.09503173828125,
-0.383056640625,
-0.217529296875,
-0.147216796875,
-0.3857421875,
-0.42431640625,
-0.2476806640625,
-0.51806640625,
0.1678466796875,
0.7763671875,
1.1142578125,
0.138427734375,
-0.40673828125,
-0.1475830078125,
0.181640625,
-0.054595947265625,
-0.5302734375,
-0.00942230224609375,
-0.08856201171875,
-0.1370849609375,
-0.302734375,
0.30908203125,
0.2017822265625,
0.319580078125,
0.43359375,
0.3369140625,
0.420654296875,
0.412841796875,
-0.39453125,
1.212890625,
0.09002685546875,
-0.98681640625,
-0.70556640625,
0.4306640625,
0.07135009765625,
0.385986328125,
0.1055908203125,
-0.76708984375,
-0.7431640625,
-0.92529296875,
0.2257080078125,
-0.642578125,
-0.365478515625,
-0.86474609375,
-0.50927734375,
-0.6611328125,
0.201171875,
-0.421630859375,
-0.51513671875,
-0.08673095703125,
-1.3583984375,
0.223388671875,
-0.708984375,
-0.403076171875,
-0.75732421875,
-0.32177734375,
-0.181884765625,
1.0419921875,
0.1700439453125,
0.37841796875,
-0.18017578125,
-0.029693603515625,
0.238037109375,
-0.06549072265625,
-0.689453125,
-0.68701171875,
-0.129638671875,
-0.046905517578125,
0.00034236907958984375,
0.01239013671875,
-0.54931640625,
0.79931640625,
-0.7490234375,
0.0499267578125,
-0.382568359375,
-0.11102294921875,
-0.17431640625,
-0.7265625,
1.0166015625,
-0.39111328125,
0.155029296875,
-0.24853515625,
0.5029296875,
0.92138671875,
-0.266845703125,
-0.284423828125,
-0.5322265625,
-0.420166015625,
-1.251953125,
0.320068359375,
-0.50146484375,
0.2315673828125,
-0.72412109375,
-0.74951171875,
1.2080078125,
-0.6796875,
0.498779296875,
1.2470703125,
0.126708984375,
0.68603515625,
-0.607421875,
0.85400390625,
0.697265625,
-0.52978515625,
-0.05621337890625,
0.05255126953125,
-0.58203125,
-0.153076171875,
-0.291015625,
-1.1357421875,
-0.77392578125,
0.59814453125,
1.3251953125,
-0.472900390625,
0.75927734375,
0.1346435546875,
-1.06640625,
-0.5556640625,
0.97412109375,
0.0843505859375,
0.316162109375,
0.75146484375,
-0.2493896484375,
-0.394775390625,
0.290771484375,
-0.330810546875,
-0.421630859375,
-0.488525390625,
1.1025390625,
-0.2083740234375,
-0.5234375,
0.69287109375,
0.8701171875,
-1.205078125,
-0.7177734375,
-0.1424560546875,
0.2802734375,
-0.222412109375,
-0.96484375,
-0.07666015625,
0.6416015625,
-0.9150390625,
0.269287109375,
0.3232421875,
-0.334228515625,
0.53955078125,
0.0986328125,
0.5849609375,
-0.62158203125,
0.439697265625,
0.630859375,
-0.40673828125,
-0.31494140625,
-0.7470703125,
-0.1007080078125,
0.034881591796875,
0.08056640625,
0.78369140625,
-0.390380859375,
0.07257080078125,
0.32080078125,
-0.0426025390625,
0.82275390625,
-0.328369140625,
-0.2403564453125,
0.266845703125,
-1.1494140625,
-0.73876953125,
-0.20068359375,
0.2139892578125,
-0.2177734375,
0.56787109375,
-0.72509765625,
-0.01061248779296875,
-0.0433349609375,
0.28955078125,
-0.260986328125,
-0.828125,
-0.071533203125,
-1.041015625,
-0.486328125,
-0.70703125,
-0.6162109375,
0.1712646484375,
0.337890625,
0.2396240234375,
-0.6923828125,
0.28466796875,
0.73486328125,
-0.525390625,
0.673828125,
-0.6474609375,
0.41650390625,
-0.392578125,
-0.2225341796875,
-0.87890625,
0.06317138671875,
-0.44921875,
0.142333984375,
-0.5,
0.451171875,
-0.053466796875,
0.4931640625,
-0.08056640625,
0.2734375,
-0.3544921875,
-0.347900390625,
-0.059234619140625,
0.2291259765625,
-0.5439453125,
0.68115234375,
0.65283203125,
0.1236572265625,
-0.16015625,
-0.398193359375,
-0.359375,
-0.1416015625,
0.7265625,
0.47216796875,
-0.2069091796875,
0.34375,
-0.296142578125,
0.00525665283203125,
-1.080078125,
0.330322265625,
-0.4150390625,
0.0157012939453125,
0.0517578125,
-0.251708984375,
0.634765625,
1.4404296875,
-0.43798828125,
0.361572265625,
0.210205078125,
0.1981201171875,
0.61083984375,
0.2005615234375,
-0.11688232421875,
0.70458984375,
0.06634521484375,
-0.3037109375,
-0.1492919921875,
0.305419921875,
0.48046875,
0.043060302734375,
-0.31787109375,
-1.0068359375,
-1.1083984375,
-0.533203125,
-0.0178375244140625,
0.57080078125,
0.2822265625,
-0.6865234375,
-0.22265625,
-0.158935546875,
-0.46728515625,
0.459716796875,
-1.29296875,
-0.84130859375,
0.1610107421875,
0.136474609375,
-0.4013671875,
0.355224609375,
-0.548828125,
-0.1307373046875,
0.08270263671875,
0.42041015625,
-0.4951171875,
0.391357421875,
0.006916046142578125,
0.62353515625,
-0.052215576171875,
-0.1630859375,
0.1417236328125,
0.72314453125,
-0.720703125,
-0.485595703125,
0.17529296875,
1.177734375,
0.00746917724609375,
0.018341064453125,
-0.75048828125,
0.2978515625,
-0.055877685546875,
0.0299072265625,
-0.42431640625,
0.176025390625,
-0.251953125,
0.58544921875,
-1.2255859375,
-0.1939697265625,
0.0254669189453125,
0.2491455078125,
0.060546875,
-0.434326171875,
-0.5205078125,
0.8876953125,
1.158203125,
-0.1619873046875,
0.1334228515625,
-0.16796875,
0.64208984375,
0.109375,
-0.0667724609375,
-0.376953125,
0.458251953125,
0.31494140625,
0.75830078125,
-0.08563232421875,
0.3720703125,
0.87548828125,
0.2332763671875,
-0.21533203125,
0.371826171875,
0.483642578125,
0.1165771484375,
-0.168701171875,
-0.2352294921875,
-0.02587890625,
0.264892578125,
-0.69287109375,
0.38916015625,
-0.49951171875,
0.06182861328125,
-0.1226806640625,
-0.861328125,
0.95068359375,
-0.450439453125,
-0.2119140625,
0.266845703125,
-0.436767578125,
0.382568359375,
0.5546875,
0.30224609375,
-0.06353759765625,
0.791015625,
0.76318359375,
0.7255859375,
0.70458984375,
0.525390625,
0.3984375,
-0.66943359375,
0.126708984375,
0.29296875,
-0.31103515625,
-0.1793212890625,
-0.33544921875,
-0.97998046875,
0.72412109375,
-0.294677734375,
-0.324462890625,
0.315673828125,
-0.99169921875,
0.04278564453125,
-0.2401123046875,
0.85791015625,
-0.364013671875,
0.423828125,
0.391357421875,
-0.25927734375,
-0.47900390625,
1.060546875,
0.1707763671875,
0.342041015625,
0.10345458984375,
0.48779296875,
0.306640625,
1.3056640625,
0.73779296875,
0.040191650390625,
0.455078125,
0.77783203125,
-0.6806640625,
-0.5146484375,
-0.1763916015625,
-0.181884765625,
0.046356201171875,
-0.61181640625,
-0.1280517578125,
-0.63916015625,
0.53369140625,
0.2169189453125,
-0.86181640625,
-0.4912109375,
0.1007080078125,
-0.90185546875,
0.1488037109375,
0.58154296875,
0.418701171875,
0.279296875,
0.061187744140625,
-0.27734375,
-0.453125,
0.17138671875,
-0.60986328125,
0.281005859375,
-0.7880859375,
-0.1793212890625,
-0.71240234375,
-0.51416015625,
-0.366943359375,
-0.2283935546875,
-0.309814453125,
-0.97216796875,
0.8134765625,
0.67529296875,
0.55859375,
0.415771484375,
-0.356201171875,
0.09625244140625,
0.78125,
0.75244140625,
-0.11322021484375,
0.91162109375,
0.44921875,
-0.12176513671875,
0.1151123046875,
-0.367919921875,
0.204833984375,
-0.07666015625,
0.1922607421875,
-0.40234375,
0.43505859375,
-0.68701171875,
-1.4990234375,
0.017608642578125,
0.373291015625,
0.306640625,
-0.33056640625,
-1.078125,
-0.5673828125,
-0.9775390625,
-0.04779052734375,
-0.57666015625,
0.70556640625,
-0.1361083984375,
0.066650390625,
-0.324951171875,
-1.1474609375,
4.34765625,
1.0810546875,
1.0908203125,
0.2127685546875,
0.424072265625,
1.1025390625,
0.1734619140625,
-0.724609375,
-0.201416015625,
-0.58935546875,
0.7197265625,
-0.318359375,
0.20751953125,
0.5869140625,
0.031463623046875,
0.7900390625,
-0.423095703125,
-0.0855712890625,
0.08056640625,
-0.85400390625,
-0.880859375,
0.28125,
-0.07672119140625,
0.284912109375,
-0.06793212890625,
0.1785888671875,
0.74462890625,
-1.009765625,
-0.2347412109375,
-0.3251953125,
0.28076171875,
-0.81494140625,
1.1591796875,
-0.27685546875,
-0.07061767578125,
0.626953125,
0.210693359375,
-0.427001953125,
-0.65185546875,
0.2119140625,
-0.1064453125,
0.429931640625,
0.71044921875,
-1.005859375,
-0.09442138671875,
0.3935546875,
-0.6044921875,
0.3828125,
-0.19091796875,
-0.71923828125,
0.68603515625,
-0.27978515625,
0.312744140625,
-0.37841796875,
-1.08203125,
0.43212890625,
0.24658203125,
0.255126953125,
-0.355224609375,
0.353515625,
0.19775390625,
0.3408203125,
0.0279083251953125,
0.57275390625,
-1.0419921875,
0.4267578125,
-0.04388427734375,
0.306640625,
-0.34619140625,
-0.1146240234375,
-0.88134765625,
-0.50341796875,
-0.23291015625,
-0.3212890625,
0.32470703125,
0.27294921875,
-0.25390625,
0.552734375,
0.68798828125,
-0.499267578125,
0.302490234375,
-0.27685546875,
-0.0777587890625,
-0.5126953125,
0.438720703125,
0.83447265625,
-0.404541015625,
-0.50244140625,
-0.275146484375,
0.6064453125,
0.6083984375,
0.79638671875,
0.367431640625,
-0.55859375,
-0.248779296875
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
You are given the strings a and b, consisting of lowercase Latin letters. You can do any number of the following operations in any order:
* if |a| > 0 (the length of the string a is greater than zero), delete the first character of the string a, that is, replace a with a_2 a_3 … a_n;
* if |a| > 0, delete the last character of the string a, that is, replace a with a_1 a_2 … a_{n-1};
* if |b| > 0 (the length of the string b is greater than zero), delete the first character of the string b, that is, replace b with b_2 b_3 … b_n;
* if |b| > 0, delete the last character of the string b, that is, replace b with b_1 b_2 … b_{n-1}.
Note that after each of the operations, the string a or b may become empty.
For example, if a="hello" and b="icpc", then you can apply the following sequence of operations:
* delete the first character of the string a ⇒ a="ello" and b="icpc";
* delete the first character of the string b ⇒ a="ello" and b="cpc";
* delete the first character of the string b ⇒ a="ello" and b="pc";
* delete the last character of the string a ⇒ a="ell" and b="pc";
* delete the last character of the string b ⇒ a="ell" and b="p".
For the given strings a and b, find the minimum number of operations for which you can make the strings a and b equal. Note that empty strings are also equal.
Input
The first line contains a single integer t (1 ≤ t ≤ 100). Then t test cases follow.
The first line of each test case contains the string a (1 ≤ |a| ≤ 20), consisting of lowercase Latin letters.
The second line of each test case contains the string b (1 ≤ |b| ≤ 20), consisting of lowercase Latin letters.
Output
For each test case, output the minimum number of operations that can make the strings a and b equal.
Example
Input
5
a
a
abcd
bc
hello
codeforces
hello
helo
dhjakjsnasjhfksafasd
adjsnasjhfksvdafdser
Output
0
2
13
3
20
Tags: brute force, implementation, strings
Correct Solution:
```
t=int(input())
for _ in range(t):
a=str(input())
b=str(input())
x=len(a)
y=len(b)
if x>y:
mini=0
for i in range(y):
for j in range(i+1,y+1):
s=b[i:j]
l=j-i
p=0
for k in range(l,x+1):
if a[p:k]==s:
mini=max(mini,k-p)
p+=1
print(x+y-(2*mini))
else:
mini=0
for i in range(x):
for j in range(i+1,x+1):
s=a[i:j]
l=j-i
p=0
for k in range(l,y+1):
if b[p:k]==s:
mini=max(mini,k-p)
p+=1
print(x+y-(2*mini))
```
| 10,990 | [
0.12445068359375,
-0.07989501953125,
0.2379150390625,
0.296630859375,
-0.6728515625,
-0.69482421875,
0.05621337890625,
-0.08648681640625,
0.1641845703125,
0.87548828125,
0.802734375,
0.11700439453125,
-0.09735107421875,
-1.1005859375,
-0.86767578125,
-0.07867431640625,
-0.7392578125,
-0.67431640625,
-0.25830078125,
-0.1875,
-0.2015380859375,
0.1728515625,
-1.2939453125,
-0.58837890625,
-0.423095703125,
1.0126953125,
0.33984375,
-0.335205078125,
0.759765625,
1.095703125,
-0.5703125,
-0.33154296875,
0.52001953125,
-0.94921875,
-0.288330078125,
-0.77685546875,
0.51318359375,
-0.71826171875,
-0.01317596435546875,
-0.363037109375,
0.353759765625,
-0.55224609375,
0.36474609375,
-0.6337890625,
-1.31640625,
-0.19775390625,
-0.239501953125,
0.0621337890625,
-0.2607421875,
-0.316650390625,
0.1553955078125,
-0.349365234375,
0.611328125,
-0.208984375,
-0.014007568359375,
0.05792236328125,
0.2259521484375,
-0.269775390625,
-0.64111328125,
0.244873046875,
0.026947021484375,
0.19482421875,
-0.08404541015625,
-0.41015625,
-0.13916015625,
0.2587890625,
-0.2474365234375,
0.1087646484375,
-0.2110595703125,
-0.619140625,
-0.1397705078125,
0.109130859375,
-0.397216796875,
-0.8037109375,
-0.007793426513671875,
0.181884765625,
0.127197265625,
-0.57177734375,
-0.86328125,
0.728515625,
-0.31494140625,
0.935546875,
0.48876953125,
0.324462890625,
-0.70458984375,
-0.61767578125,
0.1474609375,
0.56982421875,
0.160400390625,
0.0794677734375,
-0.64990234375,
0.763671875,
-0.87548828125,
0.2117919921875,
0.436279296875,
0.69677734375,
-0.09930419921875,
0.1055908203125,
0.19921875,
-0.180419921875,
0.8056640625,
0.908203125,
-0.375244140625,
1.259765625,
-0.6552734375,
0.023040771484375,
0.30126953125,
0.12548828125,
-0.04815673828125,
-0.25341796875,
-0.157470703125,
-0.2291259765625,
0.63916015625,
0.040069580078125,
-0.658203125,
0.79150390625,
-0.277587890625,
0.1053466796875,
-0.806640625,
0.267822265625,
0.63720703125,
0.031646728515625,
0.72607421875,
-0.006610870361328125,
-0.235595703125,
-0.1956787109375,
-0.70556640625,
1.2724609375,
-0.28857421875,
-0.21826171875,
0.372314453125,
0.064208984375,
-0.11480712890625,
0.240478515625,
-0.30615234375,
0.88525390625,
-0.11297607421875,
0.66796875,
0.69580078125,
-0.580078125,
0.4228515625,
0.0036716461181640625,
-0.097900390625,
1.646484375,
0.62255859375,
0.287841796875,
0.94091796875,
0.302490234375,
-0.387451171875,
0.4892578125,
-0.68310546875,
0.6201171875,
0.388427734375,
0.216064453125,
-0.13916015625,
-0.052764892578125,
0.04595947265625,
0.213623046875,
0.0006022453308105469,
0.1263427734375,
-0.5419921875,
0.08935546875,
-0.281494140625,
0.7158203125,
-0.1976318359375,
0.94873046875,
-0.472900390625,
-0.261474609375,
0.07977294921875,
-0.038604736328125,
0.1046142578125,
-0.5126953125,
-0.1990966796875,
0.9267578125,
0.57275390625,
0.92822265625,
0.51806640625,
-0.17822265625,
0.3369140625,
0.466064453125,
-0.327880859375,
0.30322265625,
0.423095703125,
0.83837890625,
0.1767578125,
0.171875,
0.367431640625,
-0.2459716796875,
-0.60400390625,
-0.6240234375,
0.422607421875,
0.329345703125,
-0.568359375,
0.62158203125,
0.17236328125,
0.434326171875,
-0.82568359375,
-0.0013341903686523438,
-0.37841796875,
-1.3203125,
-0.478759765625,
0.65283203125,
-0.283935546875,
0.4970703125,
-0.724609375,
-0.7333984375,
0.50048828125,
1.1201171875,
-0.07379150390625,
0.498046875,
0.7373046875,
-0.0654296875,
-0.2408447265625,
0.51904296875,
0.126953125,
-0.09942626953125,
-0.430908203125,
0.5849609375,
-0.43994140625,
-0.109130859375,
0.2373046875,
0.42041015625,
0.240234375,
0.8544921875,
0.06805419921875,
-0.317138671875,
0.283447265625,
1.02734375,
-0.00914764404296875,
0.31689453125,
0.385986328125,
0.986328125,
0.615234375,
0.58837890625,
0.4990234375,
-0.047119140625,
1.1171875,
1.0869140625,
-0.044586181640625,
0.2239990234375,
0.1588134765625,
0.75341796875,
0.61181640625,
0.475830078125,
0.57958984375,
0.188720703125,
-0.1629638671875,
0.035888671875,
-0.496337890625,
0.1514892578125,
-0.2861328125,
0.658203125,
0.350341796875,
0.72900390625,
-0.51416015625,
-0.4755859375,
0.2841796875,
0.751953125,
-0.88427734375,
-0.36083984375,
-0.275390625,
-0.045623779296875,
0.260009765625,
-0.22607421875,
0.583984375,
0.11346435546875,
0.479248046875,
0.31689453125,
0.076171875,
-0.63671875,
-0.65576171875,
-0.77880859375,
-0.732421875,
-0.49560546875,
-0.880859375,
-0.1602783203125,
0.394287109375,
-0.95361328125,
0.192626953125,
-0.60400390625,
-0.278564453125,
0.1983642578125,
-0.70751953125,
0.75634765625,
-0.0380859375,
0.10858154296875,
-0.8310546875,
0.451416015625,
0.10296630859375,
0.97705078125,
-0.92626953125,
-0.123779296875,
-0.423828125,
-0.7548828125,
-0.07525634765625,
-0.015625,
0.7529296875,
0.15966796875,
-0.63134765625,
-0.73486328125,
-0.61376953125,
-0.07525634765625,
-0.68017578125,
0.485107421875,
-0.79736328125,
0.81396484375,
0.69287109375,
-0.6767578125,
0.6259765625,
0.96044921875,
-0.9150390625,
0.630859375,
0.1689453125,
0.227294921875,
-0.8876953125,
1.185546875,
0.40478515625,
0.357421875,
-0.60302734375,
-0.5595703125,
0.04010009765625,
-0.2061767578125,
0.409423828125,
-0.302978515625,
-0.01226806640625,
0.64599609375,
-0.2215576171875,
-0.93701171875,
0.52685546875,
-0.82666015625,
-0.14501953125,
-0.413818359375,
-0.43212890625,
0.81982421875,
0.83447265625,
0.275634765625,
-0.2130126953125,
-0.07293701171875,
-0.400146484375,
0.71875,
0.469970703125,
-0.92919921875,
-0.276611328125,
0.8798828125,
-0.10296630859375,
0.1353759765625,
0.10211181640625,
-0.38720703125,
-0.448974609375,
0.05908203125,
0.381103515625,
0.78662109375,
0.107421875,
0.64111328125,
0.56982421875,
0.5244140625,
-0.91845703125,
-0.1304931640625,
-0.18603515625,
0.69921875,
0.390625,
0.60498046875,
0.210693359375,
-0.11859130859375,
-0.4150390625,
-1.25390625,
0.225830078125,
0.3017578125,
0.2203369140625,
-0.56982421875,
0.611328125,
0.181396484375,
-0.68603515625,
0.5263671875,
-1.0009765625,
0.08050537109375,
1.0771484375,
-0.27587890625,
1.064453125,
-0.6025390625,
0.281005859375,
-0.29248046875,
-0.188232421875,
0.1622314453125,
0.53662109375,
0.5859375,
-0.417236328125,
-0.1688232421875,
-0.470703125,
-0.303466796875,
0.026214599609375,
-0.50439453125,
0.493896484375,
-0.2047119140625,
-0.1756591796875,
-0.8759765625,
0.2230224609375,
0.9609375,
0.71875,
0.368896484375,
0.2003173828125,
0.298095703125,
-0.032562255859375,
0.498046875,
-0.50634765625,
0.398681640625,
-0.40673828125,
0.64599609375,
0.08551025390625,
0.08123779296875,
-0.48291015625,
-0.21484375,
0.006488800048828125,
0.139404296875,
0.06500244140625,
-0.2607421875,
-0.9453125,
0.41064453125,
0.06610107421875,
0.51416015625,
-0.8837890625,
-0.2176513671875,
-0.583984375,
0.50244140625,
0.402099609375,
-0.85205078125,
-0.00347900390625,
-0.443359375,
0.5478515625,
0.3447265625,
-0.16552734375,
-0.55078125,
-0.712890625,
-0.82861328125,
-0.376220703125,
0.546875,
0.861328125,
-0.210205078125,
0.45947265625,
-1.1171875,
0.48486328125,
0.1693115234375,
-0.6044921875,
0.2044677734375,
-0.0653076171875,
0.4228515625,
0.266357421875,
0.7421875,
-0.1912841796875,
-0.6689453125,
-0.22412109375,
-1.4375,
0.6943359375,
-0.76513671875,
0.8056640625,
0.241943359375,
-0.16162109375,
0.2076416015625,
0.233642578125,
-0.4375,
0.0200958251953125,
-0.342529296875,
-0.05609130859375,
-1.1376953125,
-0.6298828125,
0.7919921875,
-0.1351318359375,
-0.283935546875,
0.91943359375,
0.045989990234375,
-0.1904296875,
0.11541748046875,
0.5439453125,
-0.2493896484375,
0.43896484375,
-0.51171875,
0.462646484375,
-0.7041015625,
-0.81005859375,
-0.0775146484375,
-0.477783203125,
0.73876953125,
-0.26171875,
-0.58544921875,
-0.336669921875,
-1.228515625,
-0.08489990234375,
0.23046875,
-0.51123046875,
0.0269012451171875,
0.251953125,
0.0233154296875,
-0.268798828125,
-0.078125,
-0.05963134765625,
-0.2388916015625,
-0.61669921875,
-0.640625,
0.377197265625,
0.126708984375,
0.86083984375,
0.198974609375,
-0.18798828125,
0.0011835098266601562,
-0.037017822265625,
-0.2060546875,
-0.419677734375,
-0.28515625,
-0.480224609375,
-0.19580078125,
-0.467041015625,
0.6318359375,
0.04827880859375,
0.33251953125,
0.60205078125,
0.18505859375,
0.339599609375,
0.156005859375,
-0.64892578125,
1.06640625,
-0.07305908203125,
-0.666015625,
-0.58642578125,
0.264404296875,
0.168212890625,
0.568359375,
0.40576171875,
-0.814453125,
-0.5078125,
-1.0654296875,
0.35546875,
-0.90380859375,
-0.428955078125,
-1.23828125,
-0.442626953125,
-0.51171875,
0.472412109375,
-0.150390625,
-0.67919921875,
0.05419921875,
-1.0693359375,
0.4443359375,
-0.5888671875,
-0.2279052734375,
-0.6767578125,
-0.7890625,
-0.307373046875,
1.0009765625,
0.583984375,
0.36083984375,
0.34716796875,
-0.28369140625,
0.4609375,
0.1112060546875,
-0.7734375,
-0.251708984375,
-0.3125,
0.12139892578125,
-0.28662109375,
-0.28125,
-0.7099609375,
0.71533203125,
-0.81787109375,
0.6767578125,
-0.271728515625,
-0.09027099609375,
-0.018798828125,
-0.52001953125,
1.0341796875,
-0.34228515625,
-0.1126708984375,
-0.33837890625,
0.6474609375,
0.498779296875,
-0.55419921875,
-0.323486328125,
-0.7080078125,
-0.72021484375,
-1.08203125,
0.50390625,
-0.46044921875,
0.004062652587890625,
-0.92236328125,
-0.0286712646484375,
1.2841796875,
-0.4052734375,
0.312255859375,
0.931640625,
-0.09307861328125,
0.339599609375,
-0.8505859375,
1.0810546875,
0.38720703125,
-0.7421875,
0.420166015625,
0.568359375,
-0.65966796875,
-0.120361328125,
-0.29833984375,
-1.029296875,
-0.8583984375,
0.572265625,
1.513671875,
-0.343994140625,
0.7041015625,
0.01087188720703125,
-1.1474609375,
-0.58056640625,
0.6259765625,
0.146484375,
0.41357421875,
1.0087890625,
-0.1505126953125,
-0.11346435546875,
0.54443359375,
-0.3330078125,
-0.2476806640625,
-0.293701171875,
1.044921875,
-0.1629638671875,
-0.63818359375,
0.9697265625,
1.1318359375,
-1.158203125,
-0.875,
-0.1605224609375,
0.1971435546875,
-0.424560546875,
-1.009765625,
-0.02203369140625,
0.943359375,
-0.493896484375,
0.03729248046875,
-0.011871337890625,
-0.31103515625,
0.4287109375,
0.0985107421875,
0.5009765625,
-0.46142578125,
0.447998046875,
0.3974609375,
-0.54052734375,
-0.2489013671875,
-0.9443359375,
-0.47509765625,
-0.1864013671875,
0.09051513671875,
1.1123046875,
-0.2384033203125,
-0.156005859375,
0.395263671875,
-0.2330322265625,
0.7578125,
-0.41455078125,
-0.0638427734375,
0.4033203125,
-0.77587890625,
-0.5625,
0.171142578125,
0.07012939453125,
-0.01666259765625,
0.375244140625,
-0.85400390625,
0.0167388916015625,
-0.027557373046875,
0.60693359375,
-0.256591796875,
-0.51416015625,
-0.44140625,
-1.3525390625,
-0.499755859375,
-0.48388671875,
-0.775390625,
-0.1737060546875,
0.27734375,
0.2239990234375,
-0.4814453125,
0.289794921875,
0.401123046875,
-0.4248046875,
0.7939453125,
-0.40283203125,
0.496337890625,
-0.320556640625,
-0.394775390625,
-0.439453125,
0.0726318359375,
-0.5888671875,
-0.467529296875,
-0.5205078125,
0.26513671875,
-0.162109375,
0.348876953125,
-0.382080078125,
0.58447265625,
-0.303955078125,
-0.6494140625,
-0.0280914306640625,
0.1490478515625,
-0.09088134765625,
1.080078125,
0.6416015625,
0.325439453125,
0.133544921875,
-0.55078125,
-0.1309814453125,
-0.216796875,
0.388427734375,
0.59814453125,
-0.453857421875,
-0.376708984375,
-0.499755859375,
0.240478515625,
-1.14453125,
0.444091796875,
-0.515625,
0.058990478515625,
0.16845703125,
0.06439208984375,
0.455078125,
1.1982421875,
-0.6435546875,
0.391357421875,
-0.1605224609375,
0.03851318359375,
0.2001953125,
-0.1380615234375,
0.2685546875,
0.53076171875,
-0.073486328125,
-0.0038585662841796875,
-0.36572265625,
0.26904296875,
0.06365966796875,
0.59423828125,
-0.25830078125,
-0.857421875,
-0.99609375,
-0.44580078125,
0.289306640625,
0.224853515625,
0.340576171875,
-0.55078125,
0.032623291015625,
0.1502685546875,
-0.98291015625,
0.4716796875,
-0.90576171875,
-1.16796875,
0.1051025390625,
-0.11029052734375,
-0.42333984375,
-0.0843505859375,
-0.45166015625,
-0.443115234375,
-0.251953125,
0.501953125,
-0.393798828125,
0.552734375,
0.08416748046875,
0.68408203125,
0.038055419921875,
-0.295654296875,
0.2374267578125,
0.822265625,
-0.6142578125,
-0.466552734375,
0.173095703125,
0.92236328125,
0.08306884765625,
-0.355712890625,
-0.4814453125,
0.064208984375,
0.2200927734375,
0.21484375,
-0.10491943359375,
0.164794921875,
-0.17138671875,
0.5458984375,
-1.38671875,
-0.39306640625,
-0.397705078125,
0.467529296875,
-0.0009136199951171875,
-0.490966796875,
-0.366455078125,
1.521484375,
1.0107421875,
-0.489013671875,
0.486083984375,
-0.05902099609375,
0.34912109375,
0.21044921875,
0.217041015625,
-0.332763671875,
0.6064453125,
0.6689453125,
0.494384765625,
-0.499755859375,
0.2374267578125,
0.87890625,
0.07501220703125,
-0.1572265625,
0.373779296875,
0.16259765625,
-0.006633758544921875,
-0.00531005859375,
-0.350341796875,
-0.71435546875,
0.10504150390625,
-0.400390625,
0.5625,
-0.61767578125,
-0.09356689453125,
-0.1844482421875,
-0.7109375,
0.888671875,
-0.35205078125,
0.0938720703125,
0.52001953125,
-0.391357421875,
0.141845703125,
0.62841796875,
-0.22265625,
0.005817413330078125,
0.69482421875,
0.49853515625,
0.2139892578125,
0.60302734375,
0.361328125,
0.6630859375,
-0.78271484375,
0.04656982421875,
0.09515380859375,
-0.0261688232421875,
-0.334228515625,
-0.489990234375,
-1.275390625,
0.83203125,
-0.248291015625,
-0.5966796875,
0.458251953125,
-0.732421875,
0.036956787109375,
-0.366943359375,
0.69921875,
-0.337646484375,
0.326171875,
0.53173828125,
-0.272216796875,
-0.9677734375,
1.10546875,
0.0782470703125,
0.362060546875,
0.05517578125,
1.2900390625,
0.33203125,
1.447265625,
0.389404296875,
-0.5556640625,
0.372802734375,
0.59765625,
-0.4375,
-0.74267578125,
-0.82373046875,
-0.1717529296875,
-0.206787109375,
-0.60498046875,
-0.381103515625,
0.04656982421875,
0.62548828125,
0.2305908203125,
-0.7177734375,
-0.22021484375,
0.278564453125,
-1.146484375,
0.61181640625,
0.039581298828125,
0.052703857421875,
0.65869140625,
-0.2188720703125,
-0.0360107421875,
-0.775390625,
0.11199951171875,
-0.79443359375,
0.4326171875,
-0.59765625,
-0.473876953125,
-1.0029296875,
-0.5185546875,
-0.2017822265625,
-0.08447265625,
-0.5107421875,
-0.8681640625,
0.50927734375,
0.54638671875,
0.4140625,
0.60986328125,
-0.0229949951171875,
0.455078125,
0.7197265625,
0.81396484375,
0.14404296875,
0.9306640625,
0.276611328125,
-0.01500701904296875,
0.273681640625,
-0.323486328125,
0.53515625,
0.033294677734375,
0.55712890625,
-0.462158203125,
0.0105438232421875,
-0.54150390625,
-1.3095703125,
0.309326171875,
0.92626953125,
0.1343994140625,
-0.380859375,
-0.984375,
-0.1539306640625,
-1.0078125,
-0.1312255859375,
-0.67822265625,
0.876953125,
-0.57470703125,
-0.1273193359375,
-0.053375244140625,
-1.0400390625,
4.2265625,
0.9619140625,
1.0283203125,
0.57275390625,
0.06396484375,
0.85693359375,
0.11114501953125,
-0.7431640625,
-0.41943359375,
-0.21630859375,
0.56103515625,
0.0248260498046875,
-0.24072265625,
0.89013671875,
0.2159423828125,
0.693359375,
-0.1785888671875,
-0.25146484375,
0.1456298828125,
-0.7412109375,
-0.91796875,
0.284423828125,
0.064208984375,
0.431884765625,
-0.164794921875,
0.2149658203125,
0.42333984375,
-0.96142578125,
0.1614990234375,
-0.73095703125,
-0.1341552734375,
-0.556640625,
0.6923828125,
0.08917236328125,
-0.339599609375,
0.7763671875,
-0.2001953125,
-0.68896484375,
-0.14453125,
0.165283203125,
-0.08367919921875,
0.1962890625,
0.68408203125,
-0.845703125,
-0.1290283203125,
0.5126953125,
-0.86572265625,
0.74658203125,
0.329833984375,
-0.771484375,
1.046875,
-0.44482421875,
0.51318359375,
-0.31103515625,
-0.77001953125,
0.275146484375,
0.251220703125,
0.057098388671875,
-0.50537109375,
0.7978515625,
0.273193359375,
0.55517578125,
0.050445556640625,
0.296142578125,
-1.3720703125,
0.45703125,
-0.18798828125,
0.78369140625,
-0.74267578125,
-0.208251953125,
-0.48388671875,
-0.30224609375,
-0.29345703125,
-0.412109375,
1.01953125,
0.08343505859375,
0.04168701171875,
0.6513671875,
0.247314453125,
-0.40087890625,
0.55712890625,
-0.07586669921875,
-0.52734375,
-0.409423828125,
0.7861328125,
1.14453125,
-0.196533203125,
-0.421142578125,
-0.01324462890625,
0.53564453125,
0.60009765625,
0.31591796875,
0.1890869140625,
-0.77978515625,
-0.15966796875
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
You are given the strings a and b, consisting of lowercase Latin letters. You can do any number of the following operations in any order:
* if |a| > 0 (the length of the string a is greater than zero), delete the first character of the string a, that is, replace a with a_2 a_3 … a_n;
* if |a| > 0, delete the last character of the string a, that is, replace a with a_1 a_2 … a_{n-1};
* if |b| > 0 (the length of the string b is greater than zero), delete the first character of the string b, that is, replace b with b_2 b_3 … b_n;
* if |b| > 0, delete the last character of the string b, that is, replace b with b_1 b_2 … b_{n-1}.
Note that after each of the operations, the string a or b may become empty.
For example, if a="hello" and b="icpc", then you can apply the following sequence of operations:
* delete the first character of the string a ⇒ a="ello" and b="icpc";
* delete the first character of the string b ⇒ a="ello" and b="cpc";
* delete the first character of the string b ⇒ a="ello" and b="pc";
* delete the last character of the string a ⇒ a="ell" and b="pc";
* delete the last character of the string b ⇒ a="ell" and b="p".
For the given strings a and b, find the minimum number of operations for which you can make the strings a and b equal. Note that empty strings are also equal.
Input
The first line contains a single integer t (1 ≤ t ≤ 100). Then t test cases follow.
The first line of each test case contains the string a (1 ≤ |a| ≤ 20), consisting of lowercase Latin letters.
The second line of each test case contains the string b (1 ≤ |b| ≤ 20), consisting of lowercase Latin letters.
Output
For each test case, output the minimum number of operations that can make the strings a and b equal.
Example
Input
5
a
a
abcd
bc
hello
codeforces
hello
helo
dhjakjsnasjhfksafasd
adjsnasjhfksvdafdser
Output
0
2
13
3
20
Tags: brute force, implementation, strings
Correct Solution:
```
for i in range(int(input())):
a=list(input())
b=list(input())
a1=len(a)
b1=len(b)
if a1>b1:
a1,b1=b1,a1
a,b=b,a
s=[]
for i in range(a1):
for j in range(i+1,a1+1):
s.append(a[i:j])
s1=0
for i in range(b1):
for j in range(i+1,i+1+a1):
t=b[i:j]
if t in s:
s1=max(s1,len(t))
s1=a1+b1-s1-s1
print(s1)
```
| 10,991 | [
0.12445068359375,
-0.07989501953125,
0.2379150390625,
0.296630859375,
-0.6728515625,
-0.69482421875,
0.05621337890625,
-0.08648681640625,
0.1641845703125,
0.87548828125,
0.802734375,
0.11700439453125,
-0.09735107421875,
-1.1005859375,
-0.86767578125,
-0.07867431640625,
-0.7392578125,
-0.67431640625,
-0.25830078125,
-0.1875,
-0.2015380859375,
0.1728515625,
-1.2939453125,
-0.58837890625,
-0.423095703125,
1.0126953125,
0.33984375,
-0.335205078125,
0.759765625,
1.095703125,
-0.5703125,
-0.33154296875,
0.52001953125,
-0.94921875,
-0.288330078125,
-0.77685546875,
0.51318359375,
-0.71826171875,
-0.01317596435546875,
-0.363037109375,
0.353759765625,
-0.55224609375,
0.36474609375,
-0.6337890625,
-1.31640625,
-0.19775390625,
-0.239501953125,
0.0621337890625,
-0.2607421875,
-0.316650390625,
0.1553955078125,
-0.349365234375,
0.611328125,
-0.208984375,
-0.014007568359375,
0.05792236328125,
0.2259521484375,
-0.269775390625,
-0.64111328125,
0.244873046875,
0.026947021484375,
0.19482421875,
-0.08404541015625,
-0.41015625,
-0.13916015625,
0.2587890625,
-0.2474365234375,
0.1087646484375,
-0.2110595703125,
-0.619140625,
-0.1397705078125,
0.109130859375,
-0.397216796875,
-0.8037109375,
-0.007793426513671875,
0.181884765625,
0.127197265625,
-0.57177734375,
-0.86328125,
0.728515625,
-0.31494140625,
0.935546875,
0.48876953125,
0.324462890625,
-0.70458984375,
-0.61767578125,
0.1474609375,
0.56982421875,
0.160400390625,
0.0794677734375,
-0.64990234375,
0.763671875,
-0.87548828125,
0.2117919921875,
0.436279296875,
0.69677734375,
-0.09930419921875,
0.1055908203125,
0.19921875,
-0.180419921875,
0.8056640625,
0.908203125,
-0.375244140625,
1.259765625,
-0.6552734375,
0.023040771484375,
0.30126953125,
0.12548828125,
-0.04815673828125,
-0.25341796875,
-0.157470703125,
-0.2291259765625,
0.63916015625,
0.040069580078125,
-0.658203125,
0.79150390625,
-0.277587890625,
0.1053466796875,
-0.806640625,
0.267822265625,
0.63720703125,
0.031646728515625,
0.72607421875,
-0.006610870361328125,
-0.235595703125,
-0.1956787109375,
-0.70556640625,
1.2724609375,
-0.28857421875,
-0.21826171875,
0.372314453125,
0.064208984375,
-0.11480712890625,
0.240478515625,
-0.30615234375,
0.88525390625,
-0.11297607421875,
0.66796875,
0.69580078125,
-0.580078125,
0.4228515625,
0.0036716461181640625,
-0.097900390625,
1.646484375,
0.62255859375,
0.287841796875,
0.94091796875,
0.302490234375,
-0.387451171875,
0.4892578125,
-0.68310546875,
0.6201171875,
0.388427734375,
0.216064453125,
-0.13916015625,
-0.052764892578125,
0.04595947265625,
0.213623046875,
0.0006022453308105469,
0.1263427734375,
-0.5419921875,
0.08935546875,
-0.281494140625,
0.7158203125,
-0.1976318359375,
0.94873046875,
-0.472900390625,
-0.261474609375,
0.07977294921875,
-0.038604736328125,
0.1046142578125,
-0.5126953125,
-0.1990966796875,
0.9267578125,
0.57275390625,
0.92822265625,
0.51806640625,
-0.17822265625,
0.3369140625,
0.466064453125,
-0.327880859375,
0.30322265625,
0.423095703125,
0.83837890625,
0.1767578125,
0.171875,
0.367431640625,
-0.2459716796875,
-0.60400390625,
-0.6240234375,
0.422607421875,
0.329345703125,
-0.568359375,
0.62158203125,
0.17236328125,
0.434326171875,
-0.82568359375,
-0.0013341903686523438,
-0.37841796875,
-1.3203125,
-0.478759765625,
0.65283203125,
-0.283935546875,
0.4970703125,
-0.724609375,
-0.7333984375,
0.50048828125,
1.1201171875,
-0.07379150390625,
0.498046875,
0.7373046875,
-0.0654296875,
-0.2408447265625,
0.51904296875,
0.126953125,
-0.09942626953125,
-0.430908203125,
0.5849609375,
-0.43994140625,
-0.109130859375,
0.2373046875,
0.42041015625,
0.240234375,
0.8544921875,
0.06805419921875,
-0.317138671875,
0.283447265625,
1.02734375,
-0.00914764404296875,
0.31689453125,
0.385986328125,
0.986328125,
0.615234375,
0.58837890625,
0.4990234375,
-0.047119140625,
1.1171875,
1.0869140625,
-0.044586181640625,
0.2239990234375,
0.1588134765625,
0.75341796875,
0.61181640625,
0.475830078125,
0.57958984375,
0.188720703125,
-0.1629638671875,
0.035888671875,
-0.496337890625,
0.1514892578125,
-0.2861328125,
0.658203125,
0.350341796875,
0.72900390625,
-0.51416015625,
-0.4755859375,
0.2841796875,
0.751953125,
-0.88427734375,
-0.36083984375,
-0.275390625,
-0.045623779296875,
0.260009765625,
-0.22607421875,
0.583984375,
0.11346435546875,
0.479248046875,
0.31689453125,
0.076171875,
-0.63671875,
-0.65576171875,
-0.77880859375,
-0.732421875,
-0.49560546875,
-0.880859375,
-0.1602783203125,
0.394287109375,
-0.95361328125,
0.192626953125,
-0.60400390625,
-0.278564453125,
0.1983642578125,
-0.70751953125,
0.75634765625,
-0.0380859375,
0.10858154296875,
-0.8310546875,
0.451416015625,
0.10296630859375,
0.97705078125,
-0.92626953125,
-0.123779296875,
-0.423828125,
-0.7548828125,
-0.07525634765625,
-0.015625,
0.7529296875,
0.15966796875,
-0.63134765625,
-0.73486328125,
-0.61376953125,
-0.07525634765625,
-0.68017578125,
0.485107421875,
-0.79736328125,
0.81396484375,
0.69287109375,
-0.6767578125,
0.6259765625,
0.96044921875,
-0.9150390625,
0.630859375,
0.1689453125,
0.227294921875,
-0.8876953125,
1.185546875,
0.40478515625,
0.357421875,
-0.60302734375,
-0.5595703125,
0.04010009765625,
-0.2061767578125,
0.409423828125,
-0.302978515625,
-0.01226806640625,
0.64599609375,
-0.2215576171875,
-0.93701171875,
0.52685546875,
-0.82666015625,
-0.14501953125,
-0.413818359375,
-0.43212890625,
0.81982421875,
0.83447265625,
0.275634765625,
-0.2130126953125,
-0.07293701171875,
-0.400146484375,
0.71875,
0.469970703125,
-0.92919921875,
-0.276611328125,
0.8798828125,
-0.10296630859375,
0.1353759765625,
0.10211181640625,
-0.38720703125,
-0.448974609375,
0.05908203125,
0.381103515625,
0.78662109375,
0.107421875,
0.64111328125,
0.56982421875,
0.5244140625,
-0.91845703125,
-0.1304931640625,
-0.18603515625,
0.69921875,
0.390625,
0.60498046875,
0.210693359375,
-0.11859130859375,
-0.4150390625,
-1.25390625,
0.225830078125,
0.3017578125,
0.2203369140625,
-0.56982421875,
0.611328125,
0.181396484375,
-0.68603515625,
0.5263671875,
-1.0009765625,
0.08050537109375,
1.0771484375,
-0.27587890625,
1.064453125,
-0.6025390625,
0.281005859375,
-0.29248046875,
-0.188232421875,
0.1622314453125,
0.53662109375,
0.5859375,
-0.417236328125,
-0.1688232421875,
-0.470703125,
-0.303466796875,
0.026214599609375,
-0.50439453125,
0.493896484375,
-0.2047119140625,
-0.1756591796875,
-0.8759765625,
0.2230224609375,
0.9609375,
0.71875,
0.368896484375,
0.2003173828125,
0.298095703125,
-0.032562255859375,
0.498046875,
-0.50634765625,
0.398681640625,
-0.40673828125,
0.64599609375,
0.08551025390625,
0.08123779296875,
-0.48291015625,
-0.21484375,
0.006488800048828125,
0.139404296875,
0.06500244140625,
-0.2607421875,
-0.9453125,
0.41064453125,
0.06610107421875,
0.51416015625,
-0.8837890625,
-0.2176513671875,
-0.583984375,
0.50244140625,
0.402099609375,
-0.85205078125,
-0.00347900390625,
-0.443359375,
0.5478515625,
0.3447265625,
-0.16552734375,
-0.55078125,
-0.712890625,
-0.82861328125,
-0.376220703125,
0.546875,
0.861328125,
-0.210205078125,
0.45947265625,
-1.1171875,
0.48486328125,
0.1693115234375,
-0.6044921875,
0.2044677734375,
-0.0653076171875,
0.4228515625,
0.266357421875,
0.7421875,
-0.1912841796875,
-0.6689453125,
-0.22412109375,
-1.4375,
0.6943359375,
-0.76513671875,
0.8056640625,
0.241943359375,
-0.16162109375,
0.2076416015625,
0.233642578125,
-0.4375,
0.0200958251953125,
-0.342529296875,
-0.05609130859375,
-1.1376953125,
-0.6298828125,
0.7919921875,
-0.1351318359375,
-0.283935546875,
0.91943359375,
0.045989990234375,
-0.1904296875,
0.11541748046875,
0.5439453125,
-0.2493896484375,
0.43896484375,
-0.51171875,
0.462646484375,
-0.7041015625,
-0.81005859375,
-0.0775146484375,
-0.477783203125,
0.73876953125,
-0.26171875,
-0.58544921875,
-0.336669921875,
-1.228515625,
-0.08489990234375,
0.23046875,
-0.51123046875,
0.0269012451171875,
0.251953125,
0.0233154296875,
-0.268798828125,
-0.078125,
-0.05963134765625,
-0.2388916015625,
-0.61669921875,
-0.640625,
0.377197265625,
0.126708984375,
0.86083984375,
0.198974609375,
-0.18798828125,
0.0011835098266601562,
-0.037017822265625,
-0.2060546875,
-0.419677734375,
-0.28515625,
-0.480224609375,
-0.19580078125,
-0.467041015625,
0.6318359375,
0.04827880859375,
0.33251953125,
0.60205078125,
0.18505859375,
0.339599609375,
0.156005859375,
-0.64892578125,
1.06640625,
-0.07305908203125,
-0.666015625,
-0.58642578125,
0.264404296875,
0.168212890625,
0.568359375,
0.40576171875,
-0.814453125,
-0.5078125,
-1.0654296875,
0.35546875,
-0.90380859375,
-0.428955078125,
-1.23828125,
-0.442626953125,
-0.51171875,
0.472412109375,
-0.150390625,
-0.67919921875,
0.05419921875,
-1.0693359375,
0.4443359375,
-0.5888671875,
-0.2279052734375,
-0.6767578125,
-0.7890625,
-0.307373046875,
1.0009765625,
0.583984375,
0.36083984375,
0.34716796875,
-0.28369140625,
0.4609375,
0.1112060546875,
-0.7734375,
-0.251708984375,
-0.3125,
0.12139892578125,
-0.28662109375,
-0.28125,
-0.7099609375,
0.71533203125,
-0.81787109375,
0.6767578125,
-0.271728515625,
-0.09027099609375,
-0.018798828125,
-0.52001953125,
1.0341796875,
-0.34228515625,
-0.1126708984375,
-0.33837890625,
0.6474609375,
0.498779296875,
-0.55419921875,
-0.323486328125,
-0.7080078125,
-0.72021484375,
-1.08203125,
0.50390625,
-0.46044921875,
0.004062652587890625,
-0.92236328125,
-0.0286712646484375,
1.2841796875,
-0.4052734375,
0.312255859375,
0.931640625,
-0.09307861328125,
0.339599609375,
-0.8505859375,
1.0810546875,
0.38720703125,
-0.7421875,
0.420166015625,
0.568359375,
-0.65966796875,
-0.120361328125,
-0.29833984375,
-1.029296875,
-0.8583984375,
0.572265625,
1.513671875,
-0.343994140625,
0.7041015625,
0.01087188720703125,
-1.1474609375,
-0.58056640625,
0.6259765625,
0.146484375,
0.41357421875,
1.0087890625,
-0.1505126953125,
-0.11346435546875,
0.54443359375,
-0.3330078125,
-0.2476806640625,
-0.293701171875,
1.044921875,
-0.1629638671875,
-0.63818359375,
0.9697265625,
1.1318359375,
-1.158203125,
-0.875,
-0.1605224609375,
0.1971435546875,
-0.424560546875,
-1.009765625,
-0.02203369140625,
0.943359375,
-0.493896484375,
0.03729248046875,
-0.011871337890625,
-0.31103515625,
0.4287109375,
0.0985107421875,
0.5009765625,
-0.46142578125,
0.447998046875,
0.3974609375,
-0.54052734375,
-0.2489013671875,
-0.9443359375,
-0.47509765625,
-0.1864013671875,
0.09051513671875,
1.1123046875,
-0.2384033203125,
-0.156005859375,
0.395263671875,
-0.2330322265625,
0.7578125,
-0.41455078125,
-0.0638427734375,
0.4033203125,
-0.77587890625,
-0.5625,
0.171142578125,
0.07012939453125,
-0.01666259765625,
0.375244140625,
-0.85400390625,
0.0167388916015625,
-0.027557373046875,
0.60693359375,
-0.256591796875,
-0.51416015625,
-0.44140625,
-1.3525390625,
-0.499755859375,
-0.48388671875,
-0.775390625,
-0.1737060546875,
0.27734375,
0.2239990234375,
-0.4814453125,
0.289794921875,
0.401123046875,
-0.4248046875,
0.7939453125,
-0.40283203125,
0.496337890625,
-0.320556640625,
-0.394775390625,
-0.439453125,
0.0726318359375,
-0.5888671875,
-0.467529296875,
-0.5205078125,
0.26513671875,
-0.162109375,
0.348876953125,
-0.382080078125,
0.58447265625,
-0.303955078125,
-0.6494140625,
-0.0280914306640625,
0.1490478515625,
-0.09088134765625,
1.080078125,
0.6416015625,
0.325439453125,
0.133544921875,
-0.55078125,
-0.1309814453125,
-0.216796875,
0.388427734375,
0.59814453125,
-0.453857421875,
-0.376708984375,
-0.499755859375,
0.240478515625,
-1.14453125,
0.444091796875,
-0.515625,
0.058990478515625,
0.16845703125,
0.06439208984375,
0.455078125,
1.1982421875,
-0.6435546875,
0.391357421875,
-0.1605224609375,
0.03851318359375,
0.2001953125,
-0.1380615234375,
0.2685546875,
0.53076171875,
-0.073486328125,
-0.0038585662841796875,
-0.36572265625,
0.26904296875,
0.06365966796875,
0.59423828125,
-0.25830078125,
-0.857421875,
-0.99609375,
-0.44580078125,
0.289306640625,
0.224853515625,
0.340576171875,
-0.55078125,
0.032623291015625,
0.1502685546875,
-0.98291015625,
0.4716796875,
-0.90576171875,
-1.16796875,
0.1051025390625,
-0.11029052734375,
-0.42333984375,
-0.0843505859375,
-0.45166015625,
-0.443115234375,
-0.251953125,
0.501953125,
-0.393798828125,
0.552734375,
0.08416748046875,
0.68408203125,
0.038055419921875,
-0.295654296875,
0.2374267578125,
0.822265625,
-0.6142578125,
-0.466552734375,
0.173095703125,
0.92236328125,
0.08306884765625,
-0.355712890625,
-0.4814453125,
0.064208984375,
0.2200927734375,
0.21484375,
-0.10491943359375,
0.164794921875,
-0.17138671875,
0.5458984375,
-1.38671875,
-0.39306640625,
-0.397705078125,
0.467529296875,
-0.0009136199951171875,
-0.490966796875,
-0.366455078125,
1.521484375,
1.0107421875,
-0.489013671875,
0.486083984375,
-0.05902099609375,
0.34912109375,
0.21044921875,
0.217041015625,
-0.332763671875,
0.6064453125,
0.6689453125,
0.494384765625,
-0.499755859375,
0.2374267578125,
0.87890625,
0.07501220703125,
-0.1572265625,
0.373779296875,
0.16259765625,
-0.006633758544921875,
-0.00531005859375,
-0.350341796875,
-0.71435546875,
0.10504150390625,
-0.400390625,
0.5625,
-0.61767578125,
-0.09356689453125,
-0.1844482421875,
-0.7109375,
0.888671875,
-0.35205078125,
0.0938720703125,
0.52001953125,
-0.391357421875,
0.141845703125,
0.62841796875,
-0.22265625,
0.005817413330078125,
0.69482421875,
0.49853515625,
0.2139892578125,
0.60302734375,
0.361328125,
0.6630859375,
-0.78271484375,
0.04656982421875,
0.09515380859375,
-0.0261688232421875,
-0.334228515625,
-0.489990234375,
-1.275390625,
0.83203125,
-0.248291015625,
-0.5966796875,
0.458251953125,
-0.732421875,
0.036956787109375,
-0.366943359375,
0.69921875,
-0.337646484375,
0.326171875,
0.53173828125,
-0.272216796875,
-0.9677734375,
1.10546875,
0.0782470703125,
0.362060546875,
0.05517578125,
1.2900390625,
0.33203125,
1.447265625,
0.389404296875,
-0.5556640625,
0.372802734375,
0.59765625,
-0.4375,
-0.74267578125,
-0.82373046875,
-0.1717529296875,
-0.206787109375,
-0.60498046875,
-0.381103515625,
0.04656982421875,
0.62548828125,
0.2305908203125,
-0.7177734375,
-0.22021484375,
0.278564453125,
-1.146484375,
0.61181640625,
0.039581298828125,
0.052703857421875,
0.65869140625,
-0.2188720703125,
-0.0360107421875,
-0.775390625,
0.11199951171875,
-0.79443359375,
0.4326171875,
-0.59765625,
-0.473876953125,
-1.0029296875,
-0.5185546875,
-0.2017822265625,
-0.08447265625,
-0.5107421875,
-0.8681640625,
0.50927734375,
0.54638671875,
0.4140625,
0.60986328125,
-0.0229949951171875,
0.455078125,
0.7197265625,
0.81396484375,
0.14404296875,
0.9306640625,
0.276611328125,
-0.01500701904296875,
0.273681640625,
-0.323486328125,
0.53515625,
0.033294677734375,
0.55712890625,
-0.462158203125,
0.0105438232421875,
-0.54150390625,
-1.3095703125,
0.309326171875,
0.92626953125,
0.1343994140625,
-0.380859375,
-0.984375,
-0.1539306640625,
-1.0078125,
-0.1312255859375,
-0.67822265625,
0.876953125,
-0.57470703125,
-0.1273193359375,
-0.053375244140625,
-1.0400390625,
4.2265625,
0.9619140625,
1.0283203125,
0.57275390625,
0.06396484375,
0.85693359375,
0.11114501953125,
-0.7431640625,
-0.41943359375,
-0.21630859375,
0.56103515625,
0.0248260498046875,
-0.24072265625,
0.89013671875,
0.2159423828125,
0.693359375,
-0.1785888671875,
-0.25146484375,
0.1456298828125,
-0.7412109375,
-0.91796875,
0.284423828125,
0.064208984375,
0.431884765625,
-0.164794921875,
0.2149658203125,
0.42333984375,
-0.96142578125,
0.1614990234375,
-0.73095703125,
-0.1341552734375,
-0.556640625,
0.6923828125,
0.08917236328125,
-0.339599609375,
0.7763671875,
-0.2001953125,
-0.68896484375,
-0.14453125,
0.165283203125,
-0.08367919921875,
0.1962890625,
0.68408203125,
-0.845703125,
-0.1290283203125,
0.5126953125,
-0.86572265625,
0.74658203125,
0.329833984375,
-0.771484375,
1.046875,
-0.44482421875,
0.51318359375,
-0.31103515625,
-0.77001953125,
0.275146484375,
0.251220703125,
0.057098388671875,
-0.50537109375,
0.7978515625,
0.273193359375,
0.55517578125,
0.050445556640625,
0.296142578125,
-1.3720703125,
0.45703125,
-0.18798828125,
0.78369140625,
-0.74267578125,
-0.208251953125,
-0.48388671875,
-0.30224609375,
-0.29345703125,
-0.412109375,
1.01953125,
0.08343505859375,
0.04168701171875,
0.6513671875,
0.247314453125,
-0.40087890625,
0.55712890625,
-0.07586669921875,
-0.52734375,
-0.409423828125,
0.7861328125,
1.14453125,
-0.196533203125,
-0.421142578125,
-0.01324462890625,
0.53564453125,
0.60009765625,
0.31591796875,
0.1890869140625,
-0.77978515625,
-0.15966796875
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
You are given the strings a and b, consisting of lowercase Latin letters. You can do any number of the following operations in any order:
* if |a| > 0 (the length of the string a is greater than zero), delete the first character of the string a, that is, replace a with a_2 a_3 … a_n;
* if |a| > 0, delete the last character of the string a, that is, replace a with a_1 a_2 … a_{n-1};
* if |b| > 0 (the length of the string b is greater than zero), delete the first character of the string b, that is, replace b with b_2 b_3 … b_n;
* if |b| > 0, delete the last character of the string b, that is, replace b with b_1 b_2 … b_{n-1}.
Note that after each of the operations, the string a or b may become empty.
For example, if a="hello" and b="icpc", then you can apply the following sequence of operations:
* delete the first character of the string a ⇒ a="ello" and b="icpc";
* delete the first character of the string b ⇒ a="ello" and b="cpc";
* delete the first character of the string b ⇒ a="ello" and b="pc";
* delete the last character of the string a ⇒ a="ell" and b="pc";
* delete the last character of the string b ⇒ a="ell" and b="p".
For the given strings a and b, find the minimum number of operations for which you can make the strings a and b equal. Note that empty strings are also equal.
Input
The first line contains a single integer t (1 ≤ t ≤ 100). Then t test cases follow.
The first line of each test case contains the string a (1 ≤ |a| ≤ 20), consisting of lowercase Latin letters.
The second line of each test case contains the string b (1 ≤ |b| ≤ 20), consisting of lowercase Latin letters.
Output
For each test case, output the minimum number of operations that can make the strings a and b equal.
Example
Input
5
a
a
abcd
bc
hello
codeforces
hello
helo
dhjakjsnasjhfksafasd
adjsnasjhfksvdafdser
Output
0
2
13
3
20
Tags: brute force, implementation, strings
Correct Solution:
```
def getCharNGram(n,s):
charGram = [''.join(s[i:i+n]) for i in range(len(s)-n+1)]
return charGram
t = int(input())
for _ in range(t):
A = input()
B = input()
if len(A) < len(B):
ans = len(B)+len(A)
for i in range(1,len(A)+1):
check = getCharNGram(i, A)
for c in check:
if c in B:
ans = min(ans, len(B)-i+len(A)-i)
else:
ans = len(A)+len(B)
for i in range(1,len(B)+1):
check = getCharNGram(i, B)
#print(check)
for c in check:
if c in A:
ans = min(ans, len(A)-len(c)+len(B)-i)
print(ans)
```
| 10,992 | [
0.12445068359375,
-0.07989501953125,
0.2379150390625,
0.296630859375,
-0.6728515625,
-0.69482421875,
0.05621337890625,
-0.08648681640625,
0.1641845703125,
0.87548828125,
0.802734375,
0.11700439453125,
-0.09735107421875,
-1.1005859375,
-0.86767578125,
-0.07867431640625,
-0.7392578125,
-0.67431640625,
-0.25830078125,
-0.1875,
-0.2015380859375,
0.1728515625,
-1.2939453125,
-0.58837890625,
-0.423095703125,
1.0126953125,
0.33984375,
-0.335205078125,
0.759765625,
1.095703125,
-0.5703125,
-0.33154296875,
0.52001953125,
-0.94921875,
-0.288330078125,
-0.77685546875,
0.51318359375,
-0.71826171875,
-0.01317596435546875,
-0.363037109375,
0.353759765625,
-0.55224609375,
0.36474609375,
-0.6337890625,
-1.31640625,
-0.19775390625,
-0.239501953125,
0.0621337890625,
-0.2607421875,
-0.316650390625,
0.1553955078125,
-0.349365234375,
0.611328125,
-0.208984375,
-0.014007568359375,
0.05792236328125,
0.2259521484375,
-0.269775390625,
-0.64111328125,
0.244873046875,
0.026947021484375,
0.19482421875,
-0.08404541015625,
-0.41015625,
-0.13916015625,
0.2587890625,
-0.2474365234375,
0.1087646484375,
-0.2110595703125,
-0.619140625,
-0.1397705078125,
0.109130859375,
-0.397216796875,
-0.8037109375,
-0.007793426513671875,
0.181884765625,
0.127197265625,
-0.57177734375,
-0.86328125,
0.728515625,
-0.31494140625,
0.935546875,
0.48876953125,
0.324462890625,
-0.70458984375,
-0.61767578125,
0.1474609375,
0.56982421875,
0.160400390625,
0.0794677734375,
-0.64990234375,
0.763671875,
-0.87548828125,
0.2117919921875,
0.436279296875,
0.69677734375,
-0.09930419921875,
0.1055908203125,
0.19921875,
-0.180419921875,
0.8056640625,
0.908203125,
-0.375244140625,
1.259765625,
-0.6552734375,
0.023040771484375,
0.30126953125,
0.12548828125,
-0.04815673828125,
-0.25341796875,
-0.157470703125,
-0.2291259765625,
0.63916015625,
0.040069580078125,
-0.658203125,
0.79150390625,
-0.277587890625,
0.1053466796875,
-0.806640625,
0.267822265625,
0.63720703125,
0.031646728515625,
0.72607421875,
-0.006610870361328125,
-0.235595703125,
-0.1956787109375,
-0.70556640625,
1.2724609375,
-0.28857421875,
-0.21826171875,
0.372314453125,
0.064208984375,
-0.11480712890625,
0.240478515625,
-0.30615234375,
0.88525390625,
-0.11297607421875,
0.66796875,
0.69580078125,
-0.580078125,
0.4228515625,
0.0036716461181640625,
-0.097900390625,
1.646484375,
0.62255859375,
0.287841796875,
0.94091796875,
0.302490234375,
-0.387451171875,
0.4892578125,
-0.68310546875,
0.6201171875,
0.388427734375,
0.216064453125,
-0.13916015625,
-0.052764892578125,
0.04595947265625,
0.213623046875,
0.0006022453308105469,
0.1263427734375,
-0.5419921875,
0.08935546875,
-0.281494140625,
0.7158203125,
-0.1976318359375,
0.94873046875,
-0.472900390625,
-0.261474609375,
0.07977294921875,
-0.038604736328125,
0.1046142578125,
-0.5126953125,
-0.1990966796875,
0.9267578125,
0.57275390625,
0.92822265625,
0.51806640625,
-0.17822265625,
0.3369140625,
0.466064453125,
-0.327880859375,
0.30322265625,
0.423095703125,
0.83837890625,
0.1767578125,
0.171875,
0.367431640625,
-0.2459716796875,
-0.60400390625,
-0.6240234375,
0.422607421875,
0.329345703125,
-0.568359375,
0.62158203125,
0.17236328125,
0.434326171875,
-0.82568359375,
-0.0013341903686523438,
-0.37841796875,
-1.3203125,
-0.478759765625,
0.65283203125,
-0.283935546875,
0.4970703125,
-0.724609375,
-0.7333984375,
0.50048828125,
1.1201171875,
-0.07379150390625,
0.498046875,
0.7373046875,
-0.0654296875,
-0.2408447265625,
0.51904296875,
0.126953125,
-0.09942626953125,
-0.430908203125,
0.5849609375,
-0.43994140625,
-0.109130859375,
0.2373046875,
0.42041015625,
0.240234375,
0.8544921875,
0.06805419921875,
-0.317138671875,
0.283447265625,
1.02734375,
-0.00914764404296875,
0.31689453125,
0.385986328125,
0.986328125,
0.615234375,
0.58837890625,
0.4990234375,
-0.047119140625,
1.1171875,
1.0869140625,
-0.044586181640625,
0.2239990234375,
0.1588134765625,
0.75341796875,
0.61181640625,
0.475830078125,
0.57958984375,
0.188720703125,
-0.1629638671875,
0.035888671875,
-0.496337890625,
0.1514892578125,
-0.2861328125,
0.658203125,
0.350341796875,
0.72900390625,
-0.51416015625,
-0.4755859375,
0.2841796875,
0.751953125,
-0.88427734375,
-0.36083984375,
-0.275390625,
-0.045623779296875,
0.260009765625,
-0.22607421875,
0.583984375,
0.11346435546875,
0.479248046875,
0.31689453125,
0.076171875,
-0.63671875,
-0.65576171875,
-0.77880859375,
-0.732421875,
-0.49560546875,
-0.880859375,
-0.1602783203125,
0.394287109375,
-0.95361328125,
0.192626953125,
-0.60400390625,
-0.278564453125,
0.1983642578125,
-0.70751953125,
0.75634765625,
-0.0380859375,
0.10858154296875,
-0.8310546875,
0.451416015625,
0.10296630859375,
0.97705078125,
-0.92626953125,
-0.123779296875,
-0.423828125,
-0.7548828125,
-0.07525634765625,
-0.015625,
0.7529296875,
0.15966796875,
-0.63134765625,
-0.73486328125,
-0.61376953125,
-0.07525634765625,
-0.68017578125,
0.485107421875,
-0.79736328125,
0.81396484375,
0.69287109375,
-0.6767578125,
0.6259765625,
0.96044921875,
-0.9150390625,
0.630859375,
0.1689453125,
0.227294921875,
-0.8876953125,
1.185546875,
0.40478515625,
0.357421875,
-0.60302734375,
-0.5595703125,
0.04010009765625,
-0.2061767578125,
0.409423828125,
-0.302978515625,
-0.01226806640625,
0.64599609375,
-0.2215576171875,
-0.93701171875,
0.52685546875,
-0.82666015625,
-0.14501953125,
-0.413818359375,
-0.43212890625,
0.81982421875,
0.83447265625,
0.275634765625,
-0.2130126953125,
-0.07293701171875,
-0.400146484375,
0.71875,
0.469970703125,
-0.92919921875,
-0.276611328125,
0.8798828125,
-0.10296630859375,
0.1353759765625,
0.10211181640625,
-0.38720703125,
-0.448974609375,
0.05908203125,
0.381103515625,
0.78662109375,
0.107421875,
0.64111328125,
0.56982421875,
0.5244140625,
-0.91845703125,
-0.1304931640625,
-0.18603515625,
0.69921875,
0.390625,
0.60498046875,
0.210693359375,
-0.11859130859375,
-0.4150390625,
-1.25390625,
0.225830078125,
0.3017578125,
0.2203369140625,
-0.56982421875,
0.611328125,
0.181396484375,
-0.68603515625,
0.5263671875,
-1.0009765625,
0.08050537109375,
1.0771484375,
-0.27587890625,
1.064453125,
-0.6025390625,
0.281005859375,
-0.29248046875,
-0.188232421875,
0.1622314453125,
0.53662109375,
0.5859375,
-0.417236328125,
-0.1688232421875,
-0.470703125,
-0.303466796875,
0.026214599609375,
-0.50439453125,
0.493896484375,
-0.2047119140625,
-0.1756591796875,
-0.8759765625,
0.2230224609375,
0.9609375,
0.71875,
0.368896484375,
0.2003173828125,
0.298095703125,
-0.032562255859375,
0.498046875,
-0.50634765625,
0.398681640625,
-0.40673828125,
0.64599609375,
0.08551025390625,
0.08123779296875,
-0.48291015625,
-0.21484375,
0.006488800048828125,
0.139404296875,
0.06500244140625,
-0.2607421875,
-0.9453125,
0.41064453125,
0.06610107421875,
0.51416015625,
-0.8837890625,
-0.2176513671875,
-0.583984375,
0.50244140625,
0.402099609375,
-0.85205078125,
-0.00347900390625,
-0.443359375,
0.5478515625,
0.3447265625,
-0.16552734375,
-0.55078125,
-0.712890625,
-0.82861328125,
-0.376220703125,
0.546875,
0.861328125,
-0.210205078125,
0.45947265625,
-1.1171875,
0.48486328125,
0.1693115234375,
-0.6044921875,
0.2044677734375,
-0.0653076171875,
0.4228515625,
0.266357421875,
0.7421875,
-0.1912841796875,
-0.6689453125,
-0.22412109375,
-1.4375,
0.6943359375,
-0.76513671875,
0.8056640625,
0.241943359375,
-0.16162109375,
0.2076416015625,
0.233642578125,
-0.4375,
0.0200958251953125,
-0.342529296875,
-0.05609130859375,
-1.1376953125,
-0.6298828125,
0.7919921875,
-0.1351318359375,
-0.283935546875,
0.91943359375,
0.045989990234375,
-0.1904296875,
0.11541748046875,
0.5439453125,
-0.2493896484375,
0.43896484375,
-0.51171875,
0.462646484375,
-0.7041015625,
-0.81005859375,
-0.0775146484375,
-0.477783203125,
0.73876953125,
-0.26171875,
-0.58544921875,
-0.336669921875,
-1.228515625,
-0.08489990234375,
0.23046875,
-0.51123046875,
0.0269012451171875,
0.251953125,
0.0233154296875,
-0.268798828125,
-0.078125,
-0.05963134765625,
-0.2388916015625,
-0.61669921875,
-0.640625,
0.377197265625,
0.126708984375,
0.86083984375,
0.198974609375,
-0.18798828125,
0.0011835098266601562,
-0.037017822265625,
-0.2060546875,
-0.419677734375,
-0.28515625,
-0.480224609375,
-0.19580078125,
-0.467041015625,
0.6318359375,
0.04827880859375,
0.33251953125,
0.60205078125,
0.18505859375,
0.339599609375,
0.156005859375,
-0.64892578125,
1.06640625,
-0.07305908203125,
-0.666015625,
-0.58642578125,
0.264404296875,
0.168212890625,
0.568359375,
0.40576171875,
-0.814453125,
-0.5078125,
-1.0654296875,
0.35546875,
-0.90380859375,
-0.428955078125,
-1.23828125,
-0.442626953125,
-0.51171875,
0.472412109375,
-0.150390625,
-0.67919921875,
0.05419921875,
-1.0693359375,
0.4443359375,
-0.5888671875,
-0.2279052734375,
-0.6767578125,
-0.7890625,
-0.307373046875,
1.0009765625,
0.583984375,
0.36083984375,
0.34716796875,
-0.28369140625,
0.4609375,
0.1112060546875,
-0.7734375,
-0.251708984375,
-0.3125,
0.12139892578125,
-0.28662109375,
-0.28125,
-0.7099609375,
0.71533203125,
-0.81787109375,
0.6767578125,
-0.271728515625,
-0.09027099609375,
-0.018798828125,
-0.52001953125,
1.0341796875,
-0.34228515625,
-0.1126708984375,
-0.33837890625,
0.6474609375,
0.498779296875,
-0.55419921875,
-0.323486328125,
-0.7080078125,
-0.72021484375,
-1.08203125,
0.50390625,
-0.46044921875,
0.004062652587890625,
-0.92236328125,
-0.0286712646484375,
1.2841796875,
-0.4052734375,
0.312255859375,
0.931640625,
-0.09307861328125,
0.339599609375,
-0.8505859375,
1.0810546875,
0.38720703125,
-0.7421875,
0.420166015625,
0.568359375,
-0.65966796875,
-0.120361328125,
-0.29833984375,
-1.029296875,
-0.8583984375,
0.572265625,
1.513671875,
-0.343994140625,
0.7041015625,
0.01087188720703125,
-1.1474609375,
-0.58056640625,
0.6259765625,
0.146484375,
0.41357421875,
1.0087890625,
-0.1505126953125,
-0.11346435546875,
0.54443359375,
-0.3330078125,
-0.2476806640625,
-0.293701171875,
1.044921875,
-0.1629638671875,
-0.63818359375,
0.9697265625,
1.1318359375,
-1.158203125,
-0.875,
-0.1605224609375,
0.1971435546875,
-0.424560546875,
-1.009765625,
-0.02203369140625,
0.943359375,
-0.493896484375,
0.03729248046875,
-0.011871337890625,
-0.31103515625,
0.4287109375,
0.0985107421875,
0.5009765625,
-0.46142578125,
0.447998046875,
0.3974609375,
-0.54052734375,
-0.2489013671875,
-0.9443359375,
-0.47509765625,
-0.1864013671875,
0.09051513671875,
1.1123046875,
-0.2384033203125,
-0.156005859375,
0.395263671875,
-0.2330322265625,
0.7578125,
-0.41455078125,
-0.0638427734375,
0.4033203125,
-0.77587890625,
-0.5625,
0.171142578125,
0.07012939453125,
-0.01666259765625,
0.375244140625,
-0.85400390625,
0.0167388916015625,
-0.027557373046875,
0.60693359375,
-0.256591796875,
-0.51416015625,
-0.44140625,
-1.3525390625,
-0.499755859375,
-0.48388671875,
-0.775390625,
-0.1737060546875,
0.27734375,
0.2239990234375,
-0.4814453125,
0.289794921875,
0.401123046875,
-0.4248046875,
0.7939453125,
-0.40283203125,
0.496337890625,
-0.320556640625,
-0.394775390625,
-0.439453125,
0.0726318359375,
-0.5888671875,
-0.467529296875,
-0.5205078125,
0.26513671875,
-0.162109375,
0.348876953125,
-0.382080078125,
0.58447265625,
-0.303955078125,
-0.6494140625,
-0.0280914306640625,
0.1490478515625,
-0.09088134765625,
1.080078125,
0.6416015625,
0.325439453125,
0.133544921875,
-0.55078125,
-0.1309814453125,
-0.216796875,
0.388427734375,
0.59814453125,
-0.453857421875,
-0.376708984375,
-0.499755859375,
0.240478515625,
-1.14453125,
0.444091796875,
-0.515625,
0.058990478515625,
0.16845703125,
0.06439208984375,
0.455078125,
1.1982421875,
-0.6435546875,
0.391357421875,
-0.1605224609375,
0.03851318359375,
0.2001953125,
-0.1380615234375,
0.2685546875,
0.53076171875,
-0.073486328125,
-0.0038585662841796875,
-0.36572265625,
0.26904296875,
0.06365966796875,
0.59423828125,
-0.25830078125,
-0.857421875,
-0.99609375,
-0.44580078125,
0.289306640625,
0.224853515625,
0.340576171875,
-0.55078125,
0.032623291015625,
0.1502685546875,
-0.98291015625,
0.4716796875,
-0.90576171875,
-1.16796875,
0.1051025390625,
-0.11029052734375,
-0.42333984375,
-0.0843505859375,
-0.45166015625,
-0.443115234375,
-0.251953125,
0.501953125,
-0.393798828125,
0.552734375,
0.08416748046875,
0.68408203125,
0.038055419921875,
-0.295654296875,
0.2374267578125,
0.822265625,
-0.6142578125,
-0.466552734375,
0.173095703125,
0.92236328125,
0.08306884765625,
-0.355712890625,
-0.4814453125,
0.064208984375,
0.2200927734375,
0.21484375,
-0.10491943359375,
0.164794921875,
-0.17138671875,
0.5458984375,
-1.38671875,
-0.39306640625,
-0.397705078125,
0.467529296875,
-0.0009136199951171875,
-0.490966796875,
-0.366455078125,
1.521484375,
1.0107421875,
-0.489013671875,
0.486083984375,
-0.05902099609375,
0.34912109375,
0.21044921875,
0.217041015625,
-0.332763671875,
0.6064453125,
0.6689453125,
0.494384765625,
-0.499755859375,
0.2374267578125,
0.87890625,
0.07501220703125,
-0.1572265625,
0.373779296875,
0.16259765625,
-0.006633758544921875,
-0.00531005859375,
-0.350341796875,
-0.71435546875,
0.10504150390625,
-0.400390625,
0.5625,
-0.61767578125,
-0.09356689453125,
-0.1844482421875,
-0.7109375,
0.888671875,
-0.35205078125,
0.0938720703125,
0.52001953125,
-0.391357421875,
0.141845703125,
0.62841796875,
-0.22265625,
0.005817413330078125,
0.69482421875,
0.49853515625,
0.2139892578125,
0.60302734375,
0.361328125,
0.6630859375,
-0.78271484375,
0.04656982421875,
0.09515380859375,
-0.0261688232421875,
-0.334228515625,
-0.489990234375,
-1.275390625,
0.83203125,
-0.248291015625,
-0.5966796875,
0.458251953125,
-0.732421875,
0.036956787109375,
-0.366943359375,
0.69921875,
-0.337646484375,
0.326171875,
0.53173828125,
-0.272216796875,
-0.9677734375,
1.10546875,
0.0782470703125,
0.362060546875,
0.05517578125,
1.2900390625,
0.33203125,
1.447265625,
0.389404296875,
-0.5556640625,
0.372802734375,
0.59765625,
-0.4375,
-0.74267578125,
-0.82373046875,
-0.1717529296875,
-0.206787109375,
-0.60498046875,
-0.381103515625,
0.04656982421875,
0.62548828125,
0.2305908203125,
-0.7177734375,
-0.22021484375,
0.278564453125,
-1.146484375,
0.61181640625,
0.039581298828125,
0.052703857421875,
0.65869140625,
-0.2188720703125,
-0.0360107421875,
-0.775390625,
0.11199951171875,
-0.79443359375,
0.4326171875,
-0.59765625,
-0.473876953125,
-1.0029296875,
-0.5185546875,
-0.2017822265625,
-0.08447265625,
-0.5107421875,
-0.8681640625,
0.50927734375,
0.54638671875,
0.4140625,
0.60986328125,
-0.0229949951171875,
0.455078125,
0.7197265625,
0.81396484375,
0.14404296875,
0.9306640625,
0.276611328125,
-0.01500701904296875,
0.273681640625,
-0.323486328125,
0.53515625,
0.033294677734375,
0.55712890625,
-0.462158203125,
0.0105438232421875,
-0.54150390625,
-1.3095703125,
0.309326171875,
0.92626953125,
0.1343994140625,
-0.380859375,
-0.984375,
-0.1539306640625,
-1.0078125,
-0.1312255859375,
-0.67822265625,
0.876953125,
-0.57470703125,
-0.1273193359375,
-0.053375244140625,
-1.0400390625,
4.2265625,
0.9619140625,
1.0283203125,
0.57275390625,
0.06396484375,
0.85693359375,
0.11114501953125,
-0.7431640625,
-0.41943359375,
-0.21630859375,
0.56103515625,
0.0248260498046875,
-0.24072265625,
0.89013671875,
0.2159423828125,
0.693359375,
-0.1785888671875,
-0.25146484375,
0.1456298828125,
-0.7412109375,
-0.91796875,
0.284423828125,
0.064208984375,
0.431884765625,
-0.164794921875,
0.2149658203125,
0.42333984375,
-0.96142578125,
0.1614990234375,
-0.73095703125,
-0.1341552734375,
-0.556640625,
0.6923828125,
0.08917236328125,
-0.339599609375,
0.7763671875,
-0.2001953125,
-0.68896484375,
-0.14453125,
0.165283203125,
-0.08367919921875,
0.1962890625,
0.68408203125,
-0.845703125,
-0.1290283203125,
0.5126953125,
-0.86572265625,
0.74658203125,
0.329833984375,
-0.771484375,
1.046875,
-0.44482421875,
0.51318359375,
-0.31103515625,
-0.77001953125,
0.275146484375,
0.251220703125,
0.057098388671875,
-0.50537109375,
0.7978515625,
0.273193359375,
0.55517578125,
0.050445556640625,
0.296142578125,
-1.3720703125,
0.45703125,
-0.18798828125,
0.78369140625,
-0.74267578125,
-0.208251953125,
-0.48388671875,
-0.30224609375,
-0.29345703125,
-0.412109375,
1.01953125,
0.08343505859375,
0.04168701171875,
0.6513671875,
0.247314453125,
-0.40087890625,
0.55712890625,
-0.07586669921875,
-0.52734375,
-0.409423828125,
0.7861328125,
1.14453125,
-0.196533203125,
-0.421142578125,
-0.01324462890625,
0.53564453125,
0.60009765625,
0.31591796875,
0.1890869140625,
-0.77978515625,
-0.15966796875
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
You are given the strings a and b, consisting of lowercase Latin letters. You can do any number of the following operations in any order:
* if |a| > 0 (the length of the string a is greater than zero), delete the first character of the string a, that is, replace a with a_2 a_3 … a_n;
* if |a| > 0, delete the last character of the string a, that is, replace a with a_1 a_2 … a_{n-1};
* if |b| > 0 (the length of the string b is greater than zero), delete the first character of the string b, that is, replace b with b_2 b_3 … b_n;
* if |b| > 0, delete the last character of the string b, that is, replace b with b_1 b_2 … b_{n-1}.
Note that after each of the operations, the string a or b may become empty.
For example, if a="hello" and b="icpc", then you can apply the following sequence of operations:
* delete the first character of the string a ⇒ a="ello" and b="icpc";
* delete the first character of the string b ⇒ a="ello" and b="cpc";
* delete the first character of the string b ⇒ a="ello" and b="pc";
* delete the last character of the string a ⇒ a="ell" and b="pc";
* delete the last character of the string b ⇒ a="ell" and b="p".
For the given strings a and b, find the minimum number of operations for which you can make the strings a and b equal. Note that empty strings are also equal.
Input
The first line contains a single integer t (1 ≤ t ≤ 100). Then t test cases follow.
The first line of each test case contains the string a (1 ≤ |a| ≤ 20), consisting of lowercase Latin letters.
The second line of each test case contains the string b (1 ≤ |b| ≤ 20), consisting of lowercase Latin letters.
Output
For each test case, output the minimum number of operations that can make the strings a and b equal.
Example
Input
5
a
a
abcd
bc
hello
codeforces
hello
helo
dhjakjsnasjhfksafasd
adjsnasjhfksvdafdser
Output
0
2
13
3
20
Tags: brute force, implementation, strings
Correct Solution:
```
T = int(input())
for _ in range(T):
a = input()
b = input()
out = len(a) + len(b)
for i in range(len(a)):
for j in range(len(a), i, -1):
if a[i:j] in b:
out = min(out, len(a)+len(b)-2*(j-i))
print(out)
```
| 10,993 | [
0.12445068359375,
-0.07989501953125,
0.2379150390625,
0.296630859375,
-0.6728515625,
-0.69482421875,
0.05621337890625,
-0.08648681640625,
0.1641845703125,
0.87548828125,
0.802734375,
0.11700439453125,
-0.09735107421875,
-1.1005859375,
-0.86767578125,
-0.07867431640625,
-0.7392578125,
-0.67431640625,
-0.25830078125,
-0.1875,
-0.2015380859375,
0.1728515625,
-1.2939453125,
-0.58837890625,
-0.423095703125,
1.0126953125,
0.33984375,
-0.335205078125,
0.759765625,
1.095703125,
-0.5703125,
-0.33154296875,
0.52001953125,
-0.94921875,
-0.288330078125,
-0.77685546875,
0.51318359375,
-0.71826171875,
-0.01317596435546875,
-0.363037109375,
0.353759765625,
-0.55224609375,
0.36474609375,
-0.6337890625,
-1.31640625,
-0.19775390625,
-0.239501953125,
0.0621337890625,
-0.2607421875,
-0.316650390625,
0.1553955078125,
-0.349365234375,
0.611328125,
-0.208984375,
-0.014007568359375,
0.05792236328125,
0.2259521484375,
-0.269775390625,
-0.64111328125,
0.244873046875,
0.026947021484375,
0.19482421875,
-0.08404541015625,
-0.41015625,
-0.13916015625,
0.2587890625,
-0.2474365234375,
0.1087646484375,
-0.2110595703125,
-0.619140625,
-0.1397705078125,
0.109130859375,
-0.397216796875,
-0.8037109375,
-0.007793426513671875,
0.181884765625,
0.127197265625,
-0.57177734375,
-0.86328125,
0.728515625,
-0.31494140625,
0.935546875,
0.48876953125,
0.324462890625,
-0.70458984375,
-0.61767578125,
0.1474609375,
0.56982421875,
0.160400390625,
0.0794677734375,
-0.64990234375,
0.763671875,
-0.87548828125,
0.2117919921875,
0.436279296875,
0.69677734375,
-0.09930419921875,
0.1055908203125,
0.19921875,
-0.180419921875,
0.8056640625,
0.908203125,
-0.375244140625,
1.259765625,
-0.6552734375,
0.023040771484375,
0.30126953125,
0.12548828125,
-0.04815673828125,
-0.25341796875,
-0.157470703125,
-0.2291259765625,
0.63916015625,
0.040069580078125,
-0.658203125,
0.79150390625,
-0.277587890625,
0.1053466796875,
-0.806640625,
0.267822265625,
0.63720703125,
0.031646728515625,
0.72607421875,
-0.006610870361328125,
-0.235595703125,
-0.1956787109375,
-0.70556640625,
1.2724609375,
-0.28857421875,
-0.21826171875,
0.372314453125,
0.064208984375,
-0.11480712890625,
0.240478515625,
-0.30615234375,
0.88525390625,
-0.11297607421875,
0.66796875,
0.69580078125,
-0.580078125,
0.4228515625,
0.0036716461181640625,
-0.097900390625,
1.646484375,
0.62255859375,
0.287841796875,
0.94091796875,
0.302490234375,
-0.387451171875,
0.4892578125,
-0.68310546875,
0.6201171875,
0.388427734375,
0.216064453125,
-0.13916015625,
-0.052764892578125,
0.04595947265625,
0.213623046875,
0.0006022453308105469,
0.1263427734375,
-0.5419921875,
0.08935546875,
-0.281494140625,
0.7158203125,
-0.1976318359375,
0.94873046875,
-0.472900390625,
-0.261474609375,
0.07977294921875,
-0.038604736328125,
0.1046142578125,
-0.5126953125,
-0.1990966796875,
0.9267578125,
0.57275390625,
0.92822265625,
0.51806640625,
-0.17822265625,
0.3369140625,
0.466064453125,
-0.327880859375,
0.30322265625,
0.423095703125,
0.83837890625,
0.1767578125,
0.171875,
0.367431640625,
-0.2459716796875,
-0.60400390625,
-0.6240234375,
0.422607421875,
0.329345703125,
-0.568359375,
0.62158203125,
0.17236328125,
0.434326171875,
-0.82568359375,
-0.0013341903686523438,
-0.37841796875,
-1.3203125,
-0.478759765625,
0.65283203125,
-0.283935546875,
0.4970703125,
-0.724609375,
-0.7333984375,
0.50048828125,
1.1201171875,
-0.07379150390625,
0.498046875,
0.7373046875,
-0.0654296875,
-0.2408447265625,
0.51904296875,
0.126953125,
-0.09942626953125,
-0.430908203125,
0.5849609375,
-0.43994140625,
-0.109130859375,
0.2373046875,
0.42041015625,
0.240234375,
0.8544921875,
0.06805419921875,
-0.317138671875,
0.283447265625,
1.02734375,
-0.00914764404296875,
0.31689453125,
0.385986328125,
0.986328125,
0.615234375,
0.58837890625,
0.4990234375,
-0.047119140625,
1.1171875,
1.0869140625,
-0.044586181640625,
0.2239990234375,
0.1588134765625,
0.75341796875,
0.61181640625,
0.475830078125,
0.57958984375,
0.188720703125,
-0.1629638671875,
0.035888671875,
-0.496337890625,
0.1514892578125,
-0.2861328125,
0.658203125,
0.350341796875,
0.72900390625,
-0.51416015625,
-0.4755859375,
0.2841796875,
0.751953125,
-0.88427734375,
-0.36083984375,
-0.275390625,
-0.045623779296875,
0.260009765625,
-0.22607421875,
0.583984375,
0.11346435546875,
0.479248046875,
0.31689453125,
0.076171875,
-0.63671875,
-0.65576171875,
-0.77880859375,
-0.732421875,
-0.49560546875,
-0.880859375,
-0.1602783203125,
0.394287109375,
-0.95361328125,
0.192626953125,
-0.60400390625,
-0.278564453125,
0.1983642578125,
-0.70751953125,
0.75634765625,
-0.0380859375,
0.10858154296875,
-0.8310546875,
0.451416015625,
0.10296630859375,
0.97705078125,
-0.92626953125,
-0.123779296875,
-0.423828125,
-0.7548828125,
-0.07525634765625,
-0.015625,
0.7529296875,
0.15966796875,
-0.63134765625,
-0.73486328125,
-0.61376953125,
-0.07525634765625,
-0.68017578125,
0.485107421875,
-0.79736328125,
0.81396484375,
0.69287109375,
-0.6767578125,
0.6259765625,
0.96044921875,
-0.9150390625,
0.630859375,
0.1689453125,
0.227294921875,
-0.8876953125,
1.185546875,
0.40478515625,
0.357421875,
-0.60302734375,
-0.5595703125,
0.04010009765625,
-0.2061767578125,
0.409423828125,
-0.302978515625,
-0.01226806640625,
0.64599609375,
-0.2215576171875,
-0.93701171875,
0.52685546875,
-0.82666015625,
-0.14501953125,
-0.413818359375,
-0.43212890625,
0.81982421875,
0.83447265625,
0.275634765625,
-0.2130126953125,
-0.07293701171875,
-0.400146484375,
0.71875,
0.469970703125,
-0.92919921875,
-0.276611328125,
0.8798828125,
-0.10296630859375,
0.1353759765625,
0.10211181640625,
-0.38720703125,
-0.448974609375,
0.05908203125,
0.381103515625,
0.78662109375,
0.107421875,
0.64111328125,
0.56982421875,
0.5244140625,
-0.91845703125,
-0.1304931640625,
-0.18603515625,
0.69921875,
0.390625,
0.60498046875,
0.210693359375,
-0.11859130859375,
-0.4150390625,
-1.25390625,
0.225830078125,
0.3017578125,
0.2203369140625,
-0.56982421875,
0.611328125,
0.181396484375,
-0.68603515625,
0.5263671875,
-1.0009765625,
0.08050537109375,
1.0771484375,
-0.27587890625,
1.064453125,
-0.6025390625,
0.281005859375,
-0.29248046875,
-0.188232421875,
0.1622314453125,
0.53662109375,
0.5859375,
-0.417236328125,
-0.1688232421875,
-0.470703125,
-0.303466796875,
0.026214599609375,
-0.50439453125,
0.493896484375,
-0.2047119140625,
-0.1756591796875,
-0.8759765625,
0.2230224609375,
0.9609375,
0.71875,
0.368896484375,
0.2003173828125,
0.298095703125,
-0.032562255859375,
0.498046875,
-0.50634765625,
0.398681640625,
-0.40673828125,
0.64599609375,
0.08551025390625,
0.08123779296875,
-0.48291015625,
-0.21484375,
0.006488800048828125,
0.139404296875,
0.06500244140625,
-0.2607421875,
-0.9453125,
0.41064453125,
0.06610107421875,
0.51416015625,
-0.8837890625,
-0.2176513671875,
-0.583984375,
0.50244140625,
0.402099609375,
-0.85205078125,
-0.00347900390625,
-0.443359375,
0.5478515625,
0.3447265625,
-0.16552734375,
-0.55078125,
-0.712890625,
-0.82861328125,
-0.376220703125,
0.546875,
0.861328125,
-0.210205078125,
0.45947265625,
-1.1171875,
0.48486328125,
0.1693115234375,
-0.6044921875,
0.2044677734375,
-0.0653076171875,
0.4228515625,
0.266357421875,
0.7421875,
-0.1912841796875,
-0.6689453125,
-0.22412109375,
-1.4375,
0.6943359375,
-0.76513671875,
0.8056640625,
0.241943359375,
-0.16162109375,
0.2076416015625,
0.233642578125,
-0.4375,
0.0200958251953125,
-0.342529296875,
-0.05609130859375,
-1.1376953125,
-0.6298828125,
0.7919921875,
-0.1351318359375,
-0.283935546875,
0.91943359375,
0.045989990234375,
-0.1904296875,
0.11541748046875,
0.5439453125,
-0.2493896484375,
0.43896484375,
-0.51171875,
0.462646484375,
-0.7041015625,
-0.81005859375,
-0.0775146484375,
-0.477783203125,
0.73876953125,
-0.26171875,
-0.58544921875,
-0.336669921875,
-1.228515625,
-0.08489990234375,
0.23046875,
-0.51123046875,
0.0269012451171875,
0.251953125,
0.0233154296875,
-0.268798828125,
-0.078125,
-0.05963134765625,
-0.2388916015625,
-0.61669921875,
-0.640625,
0.377197265625,
0.126708984375,
0.86083984375,
0.198974609375,
-0.18798828125,
0.0011835098266601562,
-0.037017822265625,
-0.2060546875,
-0.419677734375,
-0.28515625,
-0.480224609375,
-0.19580078125,
-0.467041015625,
0.6318359375,
0.04827880859375,
0.33251953125,
0.60205078125,
0.18505859375,
0.339599609375,
0.156005859375,
-0.64892578125,
1.06640625,
-0.07305908203125,
-0.666015625,
-0.58642578125,
0.264404296875,
0.168212890625,
0.568359375,
0.40576171875,
-0.814453125,
-0.5078125,
-1.0654296875,
0.35546875,
-0.90380859375,
-0.428955078125,
-1.23828125,
-0.442626953125,
-0.51171875,
0.472412109375,
-0.150390625,
-0.67919921875,
0.05419921875,
-1.0693359375,
0.4443359375,
-0.5888671875,
-0.2279052734375,
-0.6767578125,
-0.7890625,
-0.307373046875,
1.0009765625,
0.583984375,
0.36083984375,
0.34716796875,
-0.28369140625,
0.4609375,
0.1112060546875,
-0.7734375,
-0.251708984375,
-0.3125,
0.12139892578125,
-0.28662109375,
-0.28125,
-0.7099609375,
0.71533203125,
-0.81787109375,
0.6767578125,
-0.271728515625,
-0.09027099609375,
-0.018798828125,
-0.52001953125,
1.0341796875,
-0.34228515625,
-0.1126708984375,
-0.33837890625,
0.6474609375,
0.498779296875,
-0.55419921875,
-0.323486328125,
-0.7080078125,
-0.72021484375,
-1.08203125,
0.50390625,
-0.46044921875,
0.004062652587890625,
-0.92236328125,
-0.0286712646484375,
1.2841796875,
-0.4052734375,
0.312255859375,
0.931640625,
-0.09307861328125,
0.339599609375,
-0.8505859375,
1.0810546875,
0.38720703125,
-0.7421875,
0.420166015625,
0.568359375,
-0.65966796875,
-0.120361328125,
-0.29833984375,
-1.029296875,
-0.8583984375,
0.572265625,
1.513671875,
-0.343994140625,
0.7041015625,
0.01087188720703125,
-1.1474609375,
-0.58056640625,
0.6259765625,
0.146484375,
0.41357421875,
1.0087890625,
-0.1505126953125,
-0.11346435546875,
0.54443359375,
-0.3330078125,
-0.2476806640625,
-0.293701171875,
1.044921875,
-0.1629638671875,
-0.63818359375,
0.9697265625,
1.1318359375,
-1.158203125,
-0.875,
-0.1605224609375,
0.1971435546875,
-0.424560546875,
-1.009765625,
-0.02203369140625,
0.943359375,
-0.493896484375,
0.03729248046875,
-0.011871337890625,
-0.31103515625,
0.4287109375,
0.0985107421875,
0.5009765625,
-0.46142578125,
0.447998046875,
0.3974609375,
-0.54052734375,
-0.2489013671875,
-0.9443359375,
-0.47509765625,
-0.1864013671875,
0.09051513671875,
1.1123046875,
-0.2384033203125,
-0.156005859375,
0.395263671875,
-0.2330322265625,
0.7578125,
-0.41455078125,
-0.0638427734375,
0.4033203125,
-0.77587890625,
-0.5625,
0.171142578125,
0.07012939453125,
-0.01666259765625,
0.375244140625,
-0.85400390625,
0.0167388916015625,
-0.027557373046875,
0.60693359375,
-0.256591796875,
-0.51416015625,
-0.44140625,
-1.3525390625,
-0.499755859375,
-0.48388671875,
-0.775390625,
-0.1737060546875,
0.27734375,
0.2239990234375,
-0.4814453125,
0.289794921875,
0.401123046875,
-0.4248046875,
0.7939453125,
-0.40283203125,
0.496337890625,
-0.320556640625,
-0.394775390625,
-0.439453125,
0.0726318359375,
-0.5888671875,
-0.467529296875,
-0.5205078125,
0.26513671875,
-0.162109375,
0.348876953125,
-0.382080078125,
0.58447265625,
-0.303955078125,
-0.6494140625,
-0.0280914306640625,
0.1490478515625,
-0.09088134765625,
1.080078125,
0.6416015625,
0.325439453125,
0.133544921875,
-0.55078125,
-0.1309814453125,
-0.216796875,
0.388427734375,
0.59814453125,
-0.453857421875,
-0.376708984375,
-0.499755859375,
0.240478515625,
-1.14453125,
0.444091796875,
-0.515625,
0.058990478515625,
0.16845703125,
0.06439208984375,
0.455078125,
1.1982421875,
-0.6435546875,
0.391357421875,
-0.1605224609375,
0.03851318359375,
0.2001953125,
-0.1380615234375,
0.2685546875,
0.53076171875,
-0.073486328125,
-0.0038585662841796875,
-0.36572265625,
0.26904296875,
0.06365966796875,
0.59423828125,
-0.25830078125,
-0.857421875,
-0.99609375,
-0.44580078125,
0.289306640625,
0.224853515625,
0.340576171875,
-0.55078125,
0.032623291015625,
0.1502685546875,
-0.98291015625,
0.4716796875,
-0.90576171875,
-1.16796875,
0.1051025390625,
-0.11029052734375,
-0.42333984375,
-0.0843505859375,
-0.45166015625,
-0.443115234375,
-0.251953125,
0.501953125,
-0.393798828125,
0.552734375,
0.08416748046875,
0.68408203125,
0.038055419921875,
-0.295654296875,
0.2374267578125,
0.822265625,
-0.6142578125,
-0.466552734375,
0.173095703125,
0.92236328125,
0.08306884765625,
-0.355712890625,
-0.4814453125,
0.064208984375,
0.2200927734375,
0.21484375,
-0.10491943359375,
0.164794921875,
-0.17138671875,
0.5458984375,
-1.38671875,
-0.39306640625,
-0.397705078125,
0.467529296875,
-0.0009136199951171875,
-0.490966796875,
-0.366455078125,
1.521484375,
1.0107421875,
-0.489013671875,
0.486083984375,
-0.05902099609375,
0.34912109375,
0.21044921875,
0.217041015625,
-0.332763671875,
0.6064453125,
0.6689453125,
0.494384765625,
-0.499755859375,
0.2374267578125,
0.87890625,
0.07501220703125,
-0.1572265625,
0.373779296875,
0.16259765625,
-0.006633758544921875,
-0.00531005859375,
-0.350341796875,
-0.71435546875,
0.10504150390625,
-0.400390625,
0.5625,
-0.61767578125,
-0.09356689453125,
-0.1844482421875,
-0.7109375,
0.888671875,
-0.35205078125,
0.0938720703125,
0.52001953125,
-0.391357421875,
0.141845703125,
0.62841796875,
-0.22265625,
0.005817413330078125,
0.69482421875,
0.49853515625,
0.2139892578125,
0.60302734375,
0.361328125,
0.6630859375,
-0.78271484375,
0.04656982421875,
0.09515380859375,
-0.0261688232421875,
-0.334228515625,
-0.489990234375,
-1.275390625,
0.83203125,
-0.248291015625,
-0.5966796875,
0.458251953125,
-0.732421875,
0.036956787109375,
-0.366943359375,
0.69921875,
-0.337646484375,
0.326171875,
0.53173828125,
-0.272216796875,
-0.9677734375,
1.10546875,
0.0782470703125,
0.362060546875,
0.05517578125,
1.2900390625,
0.33203125,
1.447265625,
0.389404296875,
-0.5556640625,
0.372802734375,
0.59765625,
-0.4375,
-0.74267578125,
-0.82373046875,
-0.1717529296875,
-0.206787109375,
-0.60498046875,
-0.381103515625,
0.04656982421875,
0.62548828125,
0.2305908203125,
-0.7177734375,
-0.22021484375,
0.278564453125,
-1.146484375,
0.61181640625,
0.039581298828125,
0.052703857421875,
0.65869140625,
-0.2188720703125,
-0.0360107421875,
-0.775390625,
0.11199951171875,
-0.79443359375,
0.4326171875,
-0.59765625,
-0.473876953125,
-1.0029296875,
-0.5185546875,
-0.2017822265625,
-0.08447265625,
-0.5107421875,
-0.8681640625,
0.50927734375,
0.54638671875,
0.4140625,
0.60986328125,
-0.0229949951171875,
0.455078125,
0.7197265625,
0.81396484375,
0.14404296875,
0.9306640625,
0.276611328125,
-0.01500701904296875,
0.273681640625,
-0.323486328125,
0.53515625,
0.033294677734375,
0.55712890625,
-0.462158203125,
0.0105438232421875,
-0.54150390625,
-1.3095703125,
0.309326171875,
0.92626953125,
0.1343994140625,
-0.380859375,
-0.984375,
-0.1539306640625,
-1.0078125,
-0.1312255859375,
-0.67822265625,
0.876953125,
-0.57470703125,
-0.1273193359375,
-0.053375244140625,
-1.0400390625,
4.2265625,
0.9619140625,
1.0283203125,
0.57275390625,
0.06396484375,
0.85693359375,
0.11114501953125,
-0.7431640625,
-0.41943359375,
-0.21630859375,
0.56103515625,
0.0248260498046875,
-0.24072265625,
0.89013671875,
0.2159423828125,
0.693359375,
-0.1785888671875,
-0.25146484375,
0.1456298828125,
-0.7412109375,
-0.91796875,
0.284423828125,
0.064208984375,
0.431884765625,
-0.164794921875,
0.2149658203125,
0.42333984375,
-0.96142578125,
0.1614990234375,
-0.73095703125,
-0.1341552734375,
-0.556640625,
0.6923828125,
0.08917236328125,
-0.339599609375,
0.7763671875,
-0.2001953125,
-0.68896484375,
-0.14453125,
0.165283203125,
-0.08367919921875,
0.1962890625,
0.68408203125,
-0.845703125,
-0.1290283203125,
0.5126953125,
-0.86572265625,
0.74658203125,
0.329833984375,
-0.771484375,
1.046875,
-0.44482421875,
0.51318359375,
-0.31103515625,
-0.77001953125,
0.275146484375,
0.251220703125,
0.057098388671875,
-0.50537109375,
0.7978515625,
0.273193359375,
0.55517578125,
0.050445556640625,
0.296142578125,
-1.3720703125,
0.45703125,
-0.18798828125,
0.78369140625,
-0.74267578125,
-0.208251953125,
-0.48388671875,
-0.30224609375,
-0.29345703125,
-0.412109375,
1.01953125,
0.08343505859375,
0.04168701171875,
0.6513671875,
0.247314453125,
-0.40087890625,
0.55712890625,
-0.07586669921875,
-0.52734375,
-0.409423828125,
0.7861328125,
1.14453125,
-0.196533203125,
-0.421142578125,
-0.01324462890625,
0.53564453125,
0.60009765625,
0.31591796875,
0.1890869140625,
-0.77978515625,
-0.15966796875
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
You are given the strings a and b, consisting of lowercase Latin letters. You can do any number of the following operations in any order:
* if |a| > 0 (the length of the string a is greater than zero), delete the first character of the string a, that is, replace a with a_2 a_3 … a_n;
* if |a| > 0, delete the last character of the string a, that is, replace a with a_1 a_2 … a_{n-1};
* if |b| > 0 (the length of the string b is greater than zero), delete the first character of the string b, that is, replace b with b_2 b_3 … b_n;
* if |b| > 0, delete the last character of the string b, that is, replace b with b_1 b_2 … b_{n-1}.
Note that after each of the operations, the string a or b may become empty.
For example, if a="hello" and b="icpc", then you can apply the following sequence of operations:
* delete the first character of the string a ⇒ a="ello" and b="icpc";
* delete the first character of the string b ⇒ a="ello" and b="cpc";
* delete the first character of the string b ⇒ a="ello" and b="pc";
* delete the last character of the string a ⇒ a="ell" and b="pc";
* delete the last character of the string b ⇒ a="ell" and b="p".
For the given strings a and b, find the minimum number of operations for which you can make the strings a and b equal. Note that empty strings are also equal.
Input
The first line contains a single integer t (1 ≤ t ≤ 100). Then t test cases follow.
The first line of each test case contains the string a (1 ≤ |a| ≤ 20), consisting of lowercase Latin letters.
The second line of each test case contains the string b (1 ≤ |b| ≤ 20), consisting of lowercase Latin letters.
Output
For each test case, output the minimum number of operations that can make the strings a and b equal.
Example
Input
5
a
a
abcd
bc
hello
codeforces
hello
helo
dhjakjsnasjhfksafasd
adjsnasjhfksvdafdser
Output
0
2
13
3
20
Tags: brute force, implementation, strings
Correct Solution:
```
from sys import stdin
input = stdin.readline
t = int(input())
for _ in range(t):
a = input().rstrip()
b = input().rstrip()
aa = set()
bb = set()
for i in range(len(a)):
c = []
for j in range(i, len(a)):
c.append(a[j])
aa.add(tuple(c))
for i in range(len(b)):
c = []
for j in range(i, len(b)):
c.append(b[j])
bb.add(tuple(c))
z = aa.intersection(bb)
max_len = 0
for i in z:
max_len = max(max_len, len(i))
ans = (len(a) + len(b)) - (max_len + max_len)
print(ans)
```
| 10,994 | [
0.12445068359375,
-0.07989501953125,
0.2379150390625,
0.296630859375,
-0.6728515625,
-0.69482421875,
0.05621337890625,
-0.08648681640625,
0.1641845703125,
0.87548828125,
0.802734375,
0.11700439453125,
-0.09735107421875,
-1.1005859375,
-0.86767578125,
-0.07867431640625,
-0.7392578125,
-0.67431640625,
-0.25830078125,
-0.1875,
-0.2015380859375,
0.1728515625,
-1.2939453125,
-0.58837890625,
-0.423095703125,
1.0126953125,
0.33984375,
-0.335205078125,
0.759765625,
1.095703125,
-0.5703125,
-0.33154296875,
0.52001953125,
-0.94921875,
-0.288330078125,
-0.77685546875,
0.51318359375,
-0.71826171875,
-0.01317596435546875,
-0.363037109375,
0.353759765625,
-0.55224609375,
0.36474609375,
-0.6337890625,
-1.31640625,
-0.19775390625,
-0.239501953125,
0.0621337890625,
-0.2607421875,
-0.316650390625,
0.1553955078125,
-0.349365234375,
0.611328125,
-0.208984375,
-0.014007568359375,
0.05792236328125,
0.2259521484375,
-0.269775390625,
-0.64111328125,
0.244873046875,
0.026947021484375,
0.19482421875,
-0.08404541015625,
-0.41015625,
-0.13916015625,
0.2587890625,
-0.2474365234375,
0.1087646484375,
-0.2110595703125,
-0.619140625,
-0.1397705078125,
0.109130859375,
-0.397216796875,
-0.8037109375,
-0.007793426513671875,
0.181884765625,
0.127197265625,
-0.57177734375,
-0.86328125,
0.728515625,
-0.31494140625,
0.935546875,
0.48876953125,
0.324462890625,
-0.70458984375,
-0.61767578125,
0.1474609375,
0.56982421875,
0.160400390625,
0.0794677734375,
-0.64990234375,
0.763671875,
-0.87548828125,
0.2117919921875,
0.436279296875,
0.69677734375,
-0.09930419921875,
0.1055908203125,
0.19921875,
-0.180419921875,
0.8056640625,
0.908203125,
-0.375244140625,
1.259765625,
-0.6552734375,
0.023040771484375,
0.30126953125,
0.12548828125,
-0.04815673828125,
-0.25341796875,
-0.157470703125,
-0.2291259765625,
0.63916015625,
0.040069580078125,
-0.658203125,
0.79150390625,
-0.277587890625,
0.1053466796875,
-0.806640625,
0.267822265625,
0.63720703125,
0.031646728515625,
0.72607421875,
-0.006610870361328125,
-0.235595703125,
-0.1956787109375,
-0.70556640625,
1.2724609375,
-0.28857421875,
-0.21826171875,
0.372314453125,
0.064208984375,
-0.11480712890625,
0.240478515625,
-0.30615234375,
0.88525390625,
-0.11297607421875,
0.66796875,
0.69580078125,
-0.580078125,
0.4228515625,
0.0036716461181640625,
-0.097900390625,
1.646484375,
0.62255859375,
0.287841796875,
0.94091796875,
0.302490234375,
-0.387451171875,
0.4892578125,
-0.68310546875,
0.6201171875,
0.388427734375,
0.216064453125,
-0.13916015625,
-0.052764892578125,
0.04595947265625,
0.213623046875,
0.0006022453308105469,
0.1263427734375,
-0.5419921875,
0.08935546875,
-0.281494140625,
0.7158203125,
-0.1976318359375,
0.94873046875,
-0.472900390625,
-0.261474609375,
0.07977294921875,
-0.038604736328125,
0.1046142578125,
-0.5126953125,
-0.1990966796875,
0.9267578125,
0.57275390625,
0.92822265625,
0.51806640625,
-0.17822265625,
0.3369140625,
0.466064453125,
-0.327880859375,
0.30322265625,
0.423095703125,
0.83837890625,
0.1767578125,
0.171875,
0.367431640625,
-0.2459716796875,
-0.60400390625,
-0.6240234375,
0.422607421875,
0.329345703125,
-0.568359375,
0.62158203125,
0.17236328125,
0.434326171875,
-0.82568359375,
-0.0013341903686523438,
-0.37841796875,
-1.3203125,
-0.478759765625,
0.65283203125,
-0.283935546875,
0.4970703125,
-0.724609375,
-0.7333984375,
0.50048828125,
1.1201171875,
-0.07379150390625,
0.498046875,
0.7373046875,
-0.0654296875,
-0.2408447265625,
0.51904296875,
0.126953125,
-0.09942626953125,
-0.430908203125,
0.5849609375,
-0.43994140625,
-0.109130859375,
0.2373046875,
0.42041015625,
0.240234375,
0.8544921875,
0.06805419921875,
-0.317138671875,
0.283447265625,
1.02734375,
-0.00914764404296875,
0.31689453125,
0.385986328125,
0.986328125,
0.615234375,
0.58837890625,
0.4990234375,
-0.047119140625,
1.1171875,
1.0869140625,
-0.044586181640625,
0.2239990234375,
0.1588134765625,
0.75341796875,
0.61181640625,
0.475830078125,
0.57958984375,
0.188720703125,
-0.1629638671875,
0.035888671875,
-0.496337890625,
0.1514892578125,
-0.2861328125,
0.658203125,
0.350341796875,
0.72900390625,
-0.51416015625,
-0.4755859375,
0.2841796875,
0.751953125,
-0.88427734375,
-0.36083984375,
-0.275390625,
-0.045623779296875,
0.260009765625,
-0.22607421875,
0.583984375,
0.11346435546875,
0.479248046875,
0.31689453125,
0.076171875,
-0.63671875,
-0.65576171875,
-0.77880859375,
-0.732421875,
-0.49560546875,
-0.880859375,
-0.1602783203125,
0.394287109375,
-0.95361328125,
0.192626953125,
-0.60400390625,
-0.278564453125,
0.1983642578125,
-0.70751953125,
0.75634765625,
-0.0380859375,
0.10858154296875,
-0.8310546875,
0.451416015625,
0.10296630859375,
0.97705078125,
-0.92626953125,
-0.123779296875,
-0.423828125,
-0.7548828125,
-0.07525634765625,
-0.015625,
0.7529296875,
0.15966796875,
-0.63134765625,
-0.73486328125,
-0.61376953125,
-0.07525634765625,
-0.68017578125,
0.485107421875,
-0.79736328125,
0.81396484375,
0.69287109375,
-0.6767578125,
0.6259765625,
0.96044921875,
-0.9150390625,
0.630859375,
0.1689453125,
0.227294921875,
-0.8876953125,
1.185546875,
0.40478515625,
0.357421875,
-0.60302734375,
-0.5595703125,
0.04010009765625,
-0.2061767578125,
0.409423828125,
-0.302978515625,
-0.01226806640625,
0.64599609375,
-0.2215576171875,
-0.93701171875,
0.52685546875,
-0.82666015625,
-0.14501953125,
-0.413818359375,
-0.43212890625,
0.81982421875,
0.83447265625,
0.275634765625,
-0.2130126953125,
-0.07293701171875,
-0.400146484375,
0.71875,
0.469970703125,
-0.92919921875,
-0.276611328125,
0.8798828125,
-0.10296630859375,
0.1353759765625,
0.10211181640625,
-0.38720703125,
-0.448974609375,
0.05908203125,
0.381103515625,
0.78662109375,
0.107421875,
0.64111328125,
0.56982421875,
0.5244140625,
-0.91845703125,
-0.1304931640625,
-0.18603515625,
0.69921875,
0.390625,
0.60498046875,
0.210693359375,
-0.11859130859375,
-0.4150390625,
-1.25390625,
0.225830078125,
0.3017578125,
0.2203369140625,
-0.56982421875,
0.611328125,
0.181396484375,
-0.68603515625,
0.5263671875,
-1.0009765625,
0.08050537109375,
1.0771484375,
-0.27587890625,
1.064453125,
-0.6025390625,
0.281005859375,
-0.29248046875,
-0.188232421875,
0.1622314453125,
0.53662109375,
0.5859375,
-0.417236328125,
-0.1688232421875,
-0.470703125,
-0.303466796875,
0.026214599609375,
-0.50439453125,
0.493896484375,
-0.2047119140625,
-0.1756591796875,
-0.8759765625,
0.2230224609375,
0.9609375,
0.71875,
0.368896484375,
0.2003173828125,
0.298095703125,
-0.032562255859375,
0.498046875,
-0.50634765625,
0.398681640625,
-0.40673828125,
0.64599609375,
0.08551025390625,
0.08123779296875,
-0.48291015625,
-0.21484375,
0.006488800048828125,
0.139404296875,
0.06500244140625,
-0.2607421875,
-0.9453125,
0.41064453125,
0.06610107421875,
0.51416015625,
-0.8837890625,
-0.2176513671875,
-0.583984375,
0.50244140625,
0.402099609375,
-0.85205078125,
-0.00347900390625,
-0.443359375,
0.5478515625,
0.3447265625,
-0.16552734375,
-0.55078125,
-0.712890625,
-0.82861328125,
-0.376220703125,
0.546875,
0.861328125,
-0.210205078125,
0.45947265625,
-1.1171875,
0.48486328125,
0.1693115234375,
-0.6044921875,
0.2044677734375,
-0.0653076171875,
0.4228515625,
0.266357421875,
0.7421875,
-0.1912841796875,
-0.6689453125,
-0.22412109375,
-1.4375,
0.6943359375,
-0.76513671875,
0.8056640625,
0.241943359375,
-0.16162109375,
0.2076416015625,
0.233642578125,
-0.4375,
0.0200958251953125,
-0.342529296875,
-0.05609130859375,
-1.1376953125,
-0.6298828125,
0.7919921875,
-0.1351318359375,
-0.283935546875,
0.91943359375,
0.045989990234375,
-0.1904296875,
0.11541748046875,
0.5439453125,
-0.2493896484375,
0.43896484375,
-0.51171875,
0.462646484375,
-0.7041015625,
-0.81005859375,
-0.0775146484375,
-0.477783203125,
0.73876953125,
-0.26171875,
-0.58544921875,
-0.336669921875,
-1.228515625,
-0.08489990234375,
0.23046875,
-0.51123046875,
0.0269012451171875,
0.251953125,
0.0233154296875,
-0.268798828125,
-0.078125,
-0.05963134765625,
-0.2388916015625,
-0.61669921875,
-0.640625,
0.377197265625,
0.126708984375,
0.86083984375,
0.198974609375,
-0.18798828125,
0.0011835098266601562,
-0.037017822265625,
-0.2060546875,
-0.419677734375,
-0.28515625,
-0.480224609375,
-0.19580078125,
-0.467041015625,
0.6318359375,
0.04827880859375,
0.33251953125,
0.60205078125,
0.18505859375,
0.339599609375,
0.156005859375,
-0.64892578125,
1.06640625,
-0.07305908203125,
-0.666015625,
-0.58642578125,
0.264404296875,
0.168212890625,
0.568359375,
0.40576171875,
-0.814453125,
-0.5078125,
-1.0654296875,
0.35546875,
-0.90380859375,
-0.428955078125,
-1.23828125,
-0.442626953125,
-0.51171875,
0.472412109375,
-0.150390625,
-0.67919921875,
0.05419921875,
-1.0693359375,
0.4443359375,
-0.5888671875,
-0.2279052734375,
-0.6767578125,
-0.7890625,
-0.307373046875,
1.0009765625,
0.583984375,
0.36083984375,
0.34716796875,
-0.28369140625,
0.4609375,
0.1112060546875,
-0.7734375,
-0.251708984375,
-0.3125,
0.12139892578125,
-0.28662109375,
-0.28125,
-0.7099609375,
0.71533203125,
-0.81787109375,
0.6767578125,
-0.271728515625,
-0.09027099609375,
-0.018798828125,
-0.52001953125,
1.0341796875,
-0.34228515625,
-0.1126708984375,
-0.33837890625,
0.6474609375,
0.498779296875,
-0.55419921875,
-0.323486328125,
-0.7080078125,
-0.72021484375,
-1.08203125,
0.50390625,
-0.46044921875,
0.004062652587890625,
-0.92236328125,
-0.0286712646484375,
1.2841796875,
-0.4052734375,
0.312255859375,
0.931640625,
-0.09307861328125,
0.339599609375,
-0.8505859375,
1.0810546875,
0.38720703125,
-0.7421875,
0.420166015625,
0.568359375,
-0.65966796875,
-0.120361328125,
-0.29833984375,
-1.029296875,
-0.8583984375,
0.572265625,
1.513671875,
-0.343994140625,
0.7041015625,
0.01087188720703125,
-1.1474609375,
-0.58056640625,
0.6259765625,
0.146484375,
0.41357421875,
1.0087890625,
-0.1505126953125,
-0.11346435546875,
0.54443359375,
-0.3330078125,
-0.2476806640625,
-0.293701171875,
1.044921875,
-0.1629638671875,
-0.63818359375,
0.9697265625,
1.1318359375,
-1.158203125,
-0.875,
-0.1605224609375,
0.1971435546875,
-0.424560546875,
-1.009765625,
-0.02203369140625,
0.943359375,
-0.493896484375,
0.03729248046875,
-0.011871337890625,
-0.31103515625,
0.4287109375,
0.0985107421875,
0.5009765625,
-0.46142578125,
0.447998046875,
0.3974609375,
-0.54052734375,
-0.2489013671875,
-0.9443359375,
-0.47509765625,
-0.1864013671875,
0.09051513671875,
1.1123046875,
-0.2384033203125,
-0.156005859375,
0.395263671875,
-0.2330322265625,
0.7578125,
-0.41455078125,
-0.0638427734375,
0.4033203125,
-0.77587890625,
-0.5625,
0.171142578125,
0.07012939453125,
-0.01666259765625,
0.375244140625,
-0.85400390625,
0.0167388916015625,
-0.027557373046875,
0.60693359375,
-0.256591796875,
-0.51416015625,
-0.44140625,
-1.3525390625,
-0.499755859375,
-0.48388671875,
-0.775390625,
-0.1737060546875,
0.27734375,
0.2239990234375,
-0.4814453125,
0.289794921875,
0.401123046875,
-0.4248046875,
0.7939453125,
-0.40283203125,
0.496337890625,
-0.320556640625,
-0.394775390625,
-0.439453125,
0.0726318359375,
-0.5888671875,
-0.467529296875,
-0.5205078125,
0.26513671875,
-0.162109375,
0.348876953125,
-0.382080078125,
0.58447265625,
-0.303955078125,
-0.6494140625,
-0.0280914306640625,
0.1490478515625,
-0.09088134765625,
1.080078125,
0.6416015625,
0.325439453125,
0.133544921875,
-0.55078125,
-0.1309814453125,
-0.216796875,
0.388427734375,
0.59814453125,
-0.453857421875,
-0.376708984375,
-0.499755859375,
0.240478515625,
-1.14453125,
0.444091796875,
-0.515625,
0.058990478515625,
0.16845703125,
0.06439208984375,
0.455078125,
1.1982421875,
-0.6435546875,
0.391357421875,
-0.1605224609375,
0.03851318359375,
0.2001953125,
-0.1380615234375,
0.2685546875,
0.53076171875,
-0.073486328125,
-0.0038585662841796875,
-0.36572265625,
0.26904296875,
0.06365966796875,
0.59423828125,
-0.25830078125,
-0.857421875,
-0.99609375,
-0.44580078125,
0.289306640625,
0.224853515625,
0.340576171875,
-0.55078125,
0.032623291015625,
0.1502685546875,
-0.98291015625,
0.4716796875,
-0.90576171875,
-1.16796875,
0.1051025390625,
-0.11029052734375,
-0.42333984375,
-0.0843505859375,
-0.45166015625,
-0.443115234375,
-0.251953125,
0.501953125,
-0.393798828125,
0.552734375,
0.08416748046875,
0.68408203125,
0.038055419921875,
-0.295654296875,
0.2374267578125,
0.822265625,
-0.6142578125,
-0.466552734375,
0.173095703125,
0.92236328125,
0.08306884765625,
-0.355712890625,
-0.4814453125,
0.064208984375,
0.2200927734375,
0.21484375,
-0.10491943359375,
0.164794921875,
-0.17138671875,
0.5458984375,
-1.38671875,
-0.39306640625,
-0.397705078125,
0.467529296875,
-0.0009136199951171875,
-0.490966796875,
-0.366455078125,
1.521484375,
1.0107421875,
-0.489013671875,
0.486083984375,
-0.05902099609375,
0.34912109375,
0.21044921875,
0.217041015625,
-0.332763671875,
0.6064453125,
0.6689453125,
0.494384765625,
-0.499755859375,
0.2374267578125,
0.87890625,
0.07501220703125,
-0.1572265625,
0.373779296875,
0.16259765625,
-0.006633758544921875,
-0.00531005859375,
-0.350341796875,
-0.71435546875,
0.10504150390625,
-0.400390625,
0.5625,
-0.61767578125,
-0.09356689453125,
-0.1844482421875,
-0.7109375,
0.888671875,
-0.35205078125,
0.0938720703125,
0.52001953125,
-0.391357421875,
0.141845703125,
0.62841796875,
-0.22265625,
0.005817413330078125,
0.69482421875,
0.49853515625,
0.2139892578125,
0.60302734375,
0.361328125,
0.6630859375,
-0.78271484375,
0.04656982421875,
0.09515380859375,
-0.0261688232421875,
-0.334228515625,
-0.489990234375,
-1.275390625,
0.83203125,
-0.248291015625,
-0.5966796875,
0.458251953125,
-0.732421875,
0.036956787109375,
-0.366943359375,
0.69921875,
-0.337646484375,
0.326171875,
0.53173828125,
-0.272216796875,
-0.9677734375,
1.10546875,
0.0782470703125,
0.362060546875,
0.05517578125,
1.2900390625,
0.33203125,
1.447265625,
0.389404296875,
-0.5556640625,
0.372802734375,
0.59765625,
-0.4375,
-0.74267578125,
-0.82373046875,
-0.1717529296875,
-0.206787109375,
-0.60498046875,
-0.381103515625,
0.04656982421875,
0.62548828125,
0.2305908203125,
-0.7177734375,
-0.22021484375,
0.278564453125,
-1.146484375,
0.61181640625,
0.039581298828125,
0.052703857421875,
0.65869140625,
-0.2188720703125,
-0.0360107421875,
-0.775390625,
0.11199951171875,
-0.79443359375,
0.4326171875,
-0.59765625,
-0.473876953125,
-1.0029296875,
-0.5185546875,
-0.2017822265625,
-0.08447265625,
-0.5107421875,
-0.8681640625,
0.50927734375,
0.54638671875,
0.4140625,
0.60986328125,
-0.0229949951171875,
0.455078125,
0.7197265625,
0.81396484375,
0.14404296875,
0.9306640625,
0.276611328125,
-0.01500701904296875,
0.273681640625,
-0.323486328125,
0.53515625,
0.033294677734375,
0.55712890625,
-0.462158203125,
0.0105438232421875,
-0.54150390625,
-1.3095703125,
0.309326171875,
0.92626953125,
0.1343994140625,
-0.380859375,
-0.984375,
-0.1539306640625,
-1.0078125,
-0.1312255859375,
-0.67822265625,
0.876953125,
-0.57470703125,
-0.1273193359375,
-0.053375244140625,
-1.0400390625,
4.2265625,
0.9619140625,
1.0283203125,
0.57275390625,
0.06396484375,
0.85693359375,
0.11114501953125,
-0.7431640625,
-0.41943359375,
-0.21630859375,
0.56103515625,
0.0248260498046875,
-0.24072265625,
0.89013671875,
0.2159423828125,
0.693359375,
-0.1785888671875,
-0.25146484375,
0.1456298828125,
-0.7412109375,
-0.91796875,
0.284423828125,
0.064208984375,
0.431884765625,
-0.164794921875,
0.2149658203125,
0.42333984375,
-0.96142578125,
0.1614990234375,
-0.73095703125,
-0.1341552734375,
-0.556640625,
0.6923828125,
0.08917236328125,
-0.339599609375,
0.7763671875,
-0.2001953125,
-0.68896484375,
-0.14453125,
0.165283203125,
-0.08367919921875,
0.1962890625,
0.68408203125,
-0.845703125,
-0.1290283203125,
0.5126953125,
-0.86572265625,
0.74658203125,
0.329833984375,
-0.771484375,
1.046875,
-0.44482421875,
0.51318359375,
-0.31103515625,
-0.77001953125,
0.275146484375,
0.251220703125,
0.057098388671875,
-0.50537109375,
0.7978515625,
0.273193359375,
0.55517578125,
0.050445556640625,
0.296142578125,
-1.3720703125,
0.45703125,
-0.18798828125,
0.78369140625,
-0.74267578125,
-0.208251953125,
-0.48388671875,
-0.30224609375,
-0.29345703125,
-0.412109375,
1.01953125,
0.08343505859375,
0.04168701171875,
0.6513671875,
0.247314453125,
-0.40087890625,
0.55712890625,
-0.07586669921875,
-0.52734375,
-0.409423828125,
0.7861328125,
1.14453125,
-0.196533203125,
-0.421142578125,
-0.01324462890625,
0.53564453125,
0.60009765625,
0.31591796875,
0.1890869140625,
-0.77978515625,
-0.15966796875
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
You are given the strings a and b, consisting of lowercase Latin letters. You can do any number of the following operations in any order:
* if |a| > 0 (the length of the string a is greater than zero), delete the first character of the string a, that is, replace a with a_2 a_3 … a_n;
* if |a| > 0, delete the last character of the string a, that is, replace a with a_1 a_2 … a_{n-1};
* if |b| > 0 (the length of the string b is greater than zero), delete the first character of the string b, that is, replace b with b_2 b_3 … b_n;
* if |b| > 0, delete the last character of the string b, that is, replace b with b_1 b_2 … b_{n-1}.
Note that after each of the operations, the string a or b may become empty.
For example, if a="hello" and b="icpc", then you can apply the following sequence of operations:
* delete the first character of the string a ⇒ a="ello" and b="icpc";
* delete the first character of the string b ⇒ a="ello" and b="cpc";
* delete the first character of the string b ⇒ a="ello" and b="pc";
* delete the last character of the string a ⇒ a="ell" and b="pc";
* delete the last character of the string b ⇒ a="ell" and b="p".
For the given strings a and b, find the minimum number of operations for which you can make the strings a and b equal. Note that empty strings are also equal.
Input
The first line contains a single integer t (1 ≤ t ≤ 100). Then t test cases follow.
The first line of each test case contains the string a (1 ≤ |a| ≤ 20), consisting of lowercase Latin letters.
The second line of each test case contains the string b (1 ≤ |b| ≤ 20), consisting of lowercase Latin letters.
Output
For each test case, output the minimum number of operations that can make the strings a and b equal.
Example
Input
5
a
a
abcd
bc
hello
codeforces
hello
helo
dhjakjsnasjhfksafasd
adjsnasjhfksvdafdser
Output
0
2
13
3
20
Tags: brute force, implementation, strings
Correct Solution:
```
import sys,functools,collections,bisect,math,heapq
input = sys.stdin.readline
#print = sys.stdout.write
def fun(A ,B):
n = len(A)
m = len(B)
#Edge cases.
if m == 0 or n == 0:
return 0
if n == 1 and m == 1:
if A[0] == B[0]:
return 1
else:
return 0
#Initializing first row and column with 0 (for ease i intialized everthing 0 :p)
dp = [[0 for x in range(m + 1)] for y in range(n + 1)]
final = 0
#this code is a lot like longest common subsequence(only else condition is different).
for i in range(1, n + 1):
for j in range(1, m + 1):
if A[i - 1] == B[j - 1]:
dp[i][j] = 1 + dp[i - 1][j - 1]
else:
dp[i][j] = 0
final = max(final, dp[i][j])
return final
t = int(input())
for _ in range(t):
s = input().strip()
s1 = input().strip()
x = fun(s,s1)
print(len(s)+len(s1)-(2*x))
```
| 10,995 | [
0.12445068359375,
-0.07989501953125,
0.2379150390625,
0.296630859375,
-0.6728515625,
-0.69482421875,
0.05621337890625,
-0.08648681640625,
0.1641845703125,
0.87548828125,
0.802734375,
0.11700439453125,
-0.09735107421875,
-1.1005859375,
-0.86767578125,
-0.07867431640625,
-0.7392578125,
-0.67431640625,
-0.25830078125,
-0.1875,
-0.2015380859375,
0.1728515625,
-1.2939453125,
-0.58837890625,
-0.423095703125,
1.0126953125,
0.33984375,
-0.335205078125,
0.759765625,
1.095703125,
-0.5703125,
-0.33154296875,
0.52001953125,
-0.94921875,
-0.288330078125,
-0.77685546875,
0.51318359375,
-0.71826171875,
-0.01317596435546875,
-0.363037109375,
0.353759765625,
-0.55224609375,
0.36474609375,
-0.6337890625,
-1.31640625,
-0.19775390625,
-0.239501953125,
0.0621337890625,
-0.2607421875,
-0.316650390625,
0.1553955078125,
-0.349365234375,
0.611328125,
-0.208984375,
-0.014007568359375,
0.05792236328125,
0.2259521484375,
-0.269775390625,
-0.64111328125,
0.244873046875,
0.026947021484375,
0.19482421875,
-0.08404541015625,
-0.41015625,
-0.13916015625,
0.2587890625,
-0.2474365234375,
0.1087646484375,
-0.2110595703125,
-0.619140625,
-0.1397705078125,
0.109130859375,
-0.397216796875,
-0.8037109375,
-0.007793426513671875,
0.181884765625,
0.127197265625,
-0.57177734375,
-0.86328125,
0.728515625,
-0.31494140625,
0.935546875,
0.48876953125,
0.324462890625,
-0.70458984375,
-0.61767578125,
0.1474609375,
0.56982421875,
0.160400390625,
0.0794677734375,
-0.64990234375,
0.763671875,
-0.87548828125,
0.2117919921875,
0.436279296875,
0.69677734375,
-0.09930419921875,
0.1055908203125,
0.19921875,
-0.180419921875,
0.8056640625,
0.908203125,
-0.375244140625,
1.259765625,
-0.6552734375,
0.023040771484375,
0.30126953125,
0.12548828125,
-0.04815673828125,
-0.25341796875,
-0.157470703125,
-0.2291259765625,
0.63916015625,
0.040069580078125,
-0.658203125,
0.79150390625,
-0.277587890625,
0.1053466796875,
-0.806640625,
0.267822265625,
0.63720703125,
0.031646728515625,
0.72607421875,
-0.006610870361328125,
-0.235595703125,
-0.1956787109375,
-0.70556640625,
1.2724609375,
-0.28857421875,
-0.21826171875,
0.372314453125,
0.064208984375,
-0.11480712890625,
0.240478515625,
-0.30615234375,
0.88525390625,
-0.11297607421875,
0.66796875,
0.69580078125,
-0.580078125,
0.4228515625,
0.0036716461181640625,
-0.097900390625,
1.646484375,
0.62255859375,
0.287841796875,
0.94091796875,
0.302490234375,
-0.387451171875,
0.4892578125,
-0.68310546875,
0.6201171875,
0.388427734375,
0.216064453125,
-0.13916015625,
-0.052764892578125,
0.04595947265625,
0.213623046875,
0.0006022453308105469,
0.1263427734375,
-0.5419921875,
0.08935546875,
-0.281494140625,
0.7158203125,
-0.1976318359375,
0.94873046875,
-0.472900390625,
-0.261474609375,
0.07977294921875,
-0.038604736328125,
0.1046142578125,
-0.5126953125,
-0.1990966796875,
0.9267578125,
0.57275390625,
0.92822265625,
0.51806640625,
-0.17822265625,
0.3369140625,
0.466064453125,
-0.327880859375,
0.30322265625,
0.423095703125,
0.83837890625,
0.1767578125,
0.171875,
0.367431640625,
-0.2459716796875,
-0.60400390625,
-0.6240234375,
0.422607421875,
0.329345703125,
-0.568359375,
0.62158203125,
0.17236328125,
0.434326171875,
-0.82568359375,
-0.0013341903686523438,
-0.37841796875,
-1.3203125,
-0.478759765625,
0.65283203125,
-0.283935546875,
0.4970703125,
-0.724609375,
-0.7333984375,
0.50048828125,
1.1201171875,
-0.07379150390625,
0.498046875,
0.7373046875,
-0.0654296875,
-0.2408447265625,
0.51904296875,
0.126953125,
-0.09942626953125,
-0.430908203125,
0.5849609375,
-0.43994140625,
-0.109130859375,
0.2373046875,
0.42041015625,
0.240234375,
0.8544921875,
0.06805419921875,
-0.317138671875,
0.283447265625,
1.02734375,
-0.00914764404296875,
0.31689453125,
0.385986328125,
0.986328125,
0.615234375,
0.58837890625,
0.4990234375,
-0.047119140625,
1.1171875,
1.0869140625,
-0.044586181640625,
0.2239990234375,
0.1588134765625,
0.75341796875,
0.61181640625,
0.475830078125,
0.57958984375,
0.188720703125,
-0.1629638671875,
0.035888671875,
-0.496337890625,
0.1514892578125,
-0.2861328125,
0.658203125,
0.350341796875,
0.72900390625,
-0.51416015625,
-0.4755859375,
0.2841796875,
0.751953125,
-0.88427734375,
-0.36083984375,
-0.275390625,
-0.045623779296875,
0.260009765625,
-0.22607421875,
0.583984375,
0.11346435546875,
0.479248046875,
0.31689453125,
0.076171875,
-0.63671875,
-0.65576171875,
-0.77880859375,
-0.732421875,
-0.49560546875,
-0.880859375,
-0.1602783203125,
0.394287109375,
-0.95361328125,
0.192626953125,
-0.60400390625,
-0.278564453125,
0.1983642578125,
-0.70751953125,
0.75634765625,
-0.0380859375,
0.10858154296875,
-0.8310546875,
0.451416015625,
0.10296630859375,
0.97705078125,
-0.92626953125,
-0.123779296875,
-0.423828125,
-0.7548828125,
-0.07525634765625,
-0.015625,
0.7529296875,
0.15966796875,
-0.63134765625,
-0.73486328125,
-0.61376953125,
-0.07525634765625,
-0.68017578125,
0.485107421875,
-0.79736328125,
0.81396484375,
0.69287109375,
-0.6767578125,
0.6259765625,
0.96044921875,
-0.9150390625,
0.630859375,
0.1689453125,
0.227294921875,
-0.8876953125,
1.185546875,
0.40478515625,
0.357421875,
-0.60302734375,
-0.5595703125,
0.04010009765625,
-0.2061767578125,
0.409423828125,
-0.302978515625,
-0.01226806640625,
0.64599609375,
-0.2215576171875,
-0.93701171875,
0.52685546875,
-0.82666015625,
-0.14501953125,
-0.413818359375,
-0.43212890625,
0.81982421875,
0.83447265625,
0.275634765625,
-0.2130126953125,
-0.07293701171875,
-0.400146484375,
0.71875,
0.469970703125,
-0.92919921875,
-0.276611328125,
0.8798828125,
-0.10296630859375,
0.1353759765625,
0.10211181640625,
-0.38720703125,
-0.448974609375,
0.05908203125,
0.381103515625,
0.78662109375,
0.107421875,
0.64111328125,
0.56982421875,
0.5244140625,
-0.91845703125,
-0.1304931640625,
-0.18603515625,
0.69921875,
0.390625,
0.60498046875,
0.210693359375,
-0.11859130859375,
-0.4150390625,
-1.25390625,
0.225830078125,
0.3017578125,
0.2203369140625,
-0.56982421875,
0.611328125,
0.181396484375,
-0.68603515625,
0.5263671875,
-1.0009765625,
0.08050537109375,
1.0771484375,
-0.27587890625,
1.064453125,
-0.6025390625,
0.281005859375,
-0.29248046875,
-0.188232421875,
0.1622314453125,
0.53662109375,
0.5859375,
-0.417236328125,
-0.1688232421875,
-0.470703125,
-0.303466796875,
0.026214599609375,
-0.50439453125,
0.493896484375,
-0.2047119140625,
-0.1756591796875,
-0.8759765625,
0.2230224609375,
0.9609375,
0.71875,
0.368896484375,
0.2003173828125,
0.298095703125,
-0.032562255859375,
0.498046875,
-0.50634765625,
0.398681640625,
-0.40673828125,
0.64599609375,
0.08551025390625,
0.08123779296875,
-0.48291015625,
-0.21484375,
0.006488800048828125,
0.139404296875,
0.06500244140625,
-0.2607421875,
-0.9453125,
0.41064453125,
0.06610107421875,
0.51416015625,
-0.8837890625,
-0.2176513671875,
-0.583984375,
0.50244140625,
0.402099609375,
-0.85205078125,
-0.00347900390625,
-0.443359375,
0.5478515625,
0.3447265625,
-0.16552734375,
-0.55078125,
-0.712890625,
-0.82861328125,
-0.376220703125,
0.546875,
0.861328125,
-0.210205078125,
0.45947265625,
-1.1171875,
0.48486328125,
0.1693115234375,
-0.6044921875,
0.2044677734375,
-0.0653076171875,
0.4228515625,
0.266357421875,
0.7421875,
-0.1912841796875,
-0.6689453125,
-0.22412109375,
-1.4375,
0.6943359375,
-0.76513671875,
0.8056640625,
0.241943359375,
-0.16162109375,
0.2076416015625,
0.233642578125,
-0.4375,
0.0200958251953125,
-0.342529296875,
-0.05609130859375,
-1.1376953125,
-0.6298828125,
0.7919921875,
-0.1351318359375,
-0.283935546875,
0.91943359375,
0.045989990234375,
-0.1904296875,
0.11541748046875,
0.5439453125,
-0.2493896484375,
0.43896484375,
-0.51171875,
0.462646484375,
-0.7041015625,
-0.81005859375,
-0.0775146484375,
-0.477783203125,
0.73876953125,
-0.26171875,
-0.58544921875,
-0.336669921875,
-1.228515625,
-0.08489990234375,
0.23046875,
-0.51123046875,
0.0269012451171875,
0.251953125,
0.0233154296875,
-0.268798828125,
-0.078125,
-0.05963134765625,
-0.2388916015625,
-0.61669921875,
-0.640625,
0.377197265625,
0.126708984375,
0.86083984375,
0.198974609375,
-0.18798828125,
0.0011835098266601562,
-0.037017822265625,
-0.2060546875,
-0.419677734375,
-0.28515625,
-0.480224609375,
-0.19580078125,
-0.467041015625,
0.6318359375,
0.04827880859375,
0.33251953125,
0.60205078125,
0.18505859375,
0.339599609375,
0.156005859375,
-0.64892578125,
1.06640625,
-0.07305908203125,
-0.666015625,
-0.58642578125,
0.264404296875,
0.168212890625,
0.568359375,
0.40576171875,
-0.814453125,
-0.5078125,
-1.0654296875,
0.35546875,
-0.90380859375,
-0.428955078125,
-1.23828125,
-0.442626953125,
-0.51171875,
0.472412109375,
-0.150390625,
-0.67919921875,
0.05419921875,
-1.0693359375,
0.4443359375,
-0.5888671875,
-0.2279052734375,
-0.6767578125,
-0.7890625,
-0.307373046875,
1.0009765625,
0.583984375,
0.36083984375,
0.34716796875,
-0.28369140625,
0.4609375,
0.1112060546875,
-0.7734375,
-0.251708984375,
-0.3125,
0.12139892578125,
-0.28662109375,
-0.28125,
-0.7099609375,
0.71533203125,
-0.81787109375,
0.6767578125,
-0.271728515625,
-0.09027099609375,
-0.018798828125,
-0.52001953125,
1.0341796875,
-0.34228515625,
-0.1126708984375,
-0.33837890625,
0.6474609375,
0.498779296875,
-0.55419921875,
-0.323486328125,
-0.7080078125,
-0.72021484375,
-1.08203125,
0.50390625,
-0.46044921875,
0.004062652587890625,
-0.92236328125,
-0.0286712646484375,
1.2841796875,
-0.4052734375,
0.312255859375,
0.931640625,
-0.09307861328125,
0.339599609375,
-0.8505859375,
1.0810546875,
0.38720703125,
-0.7421875,
0.420166015625,
0.568359375,
-0.65966796875,
-0.120361328125,
-0.29833984375,
-1.029296875,
-0.8583984375,
0.572265625,
1.513671875,
-0.343994140625,
0.7041015625,
0.01087188720703125,
-1.1474609375,
-0.58056640625,
0.6259765625,
0.146484375,
0.41357421875,
1.0087890625,
-0.1505126953125,
-0.11346435546875,
0.54443359375,
-0.3330078125,
-0.2476806640625,
-0.293701171875,
1.044921875,
-0.1629638671875,
-0.63818359375,
0.9697265625,
1.1318359375,
-1.158203125,
-0.875,
-0.1605224609375,
0.1971435546875,
-0.424560546875,
-1.009765625,
-0.02203369140625,
0.943359375,
-0.493896484375,
0.03729248046875,
-0.011871337890625,
-0.31103515625,
0.4287109375,
0.0985107421875,
0.5009765625,
-0.46142578125,
0.447998046875,
0.3974609375,
-0.54052734375,
-0.2489013671875,
-0.9443359375,
-0.47509765625,
-0.1864013671875,
0.09051513671875,
1.1123046875,
-0.2384033203125,
-0.156005859375,
0.395263671875,
-0.2330322265625,
0.7578125,
-0.41455078125,
-0.0638427734375,
0.4033203125,
-0.77587890625,
-0.5625,
0.171142578125,
0.07012939453125,
-0.01666259765625,
0.375244140625,
-0.85400390625,
0.0167388916015625,
-0.027557373046875,
0.60693359375,
-0.256591796875,
-0.51416015625,
-0.44140625,
-1.3525390625,
-0.499755859375,
-0.48388671875,
-0.775390625,
-0.1737060546875,
0.27734375,
0.2239990234375,
-0.4814453125,
0.289794921875,
0.401123046875,
-0.4248046875,
0.7939453125,
-0.40283203125,
0.496337890625,
-0.320556640625,
-0.394775390625,
-0.439453125,
0.0726318359375,
-0.5888671875,
-0.467529296875,
-0.5205078125,
0.26513671875,
-0.162109375,
0.348876953125,
-0.382080078125,
0.58447265625,
-0.303955078125,
-0.6494140625,
-0.0280914306640625,
0.1490478515625,
-0.09088134765625,
1.080078125,
0.6416015625,
0.325439453125,
0.133544921875,
-0.55078125,
-0.1309814453125,
-0.216796875,
0.388427734375,
0.59814453125,
-0.453857421875,
-0.376708984375,
-0.499755859375,
0.240478515625,
-1.14453125,
0.444091796875,
-0.515625,
0.058990478515625,
0.16845703125,
0.06439208984375,
0.455078125,
1.1982421875,
-0.6435546875,
0.391357421875,
-0.1605224609375,
0.03851318359375,
0.2001953125,
-0.1380615234375,
0.2685546875,
0.53076171875,
-0.073486328125,
-0.0038585662841796875,
-0.36572265625,
0.26904296875,
0.06365966796875,
0.59423828125,
-0.25830078125,
-0.857421875,
-0.99609375,
-0.44580078125,
0.289306640625,
0.224853515625,
0.340576171875,
-0.55078125,
0.032623291015625,
0.1502685546875,
-0.98291015625,
0.4716796875,
-0.90576171875,
-1.16796875,
0.1051025390625,
-0.11029052734375,
-0.42333984375,
-0.0843505859375,
-0.45166015625,
-0.443115234375,
-0.251953125,
0.501953125,
-0.393798828125,
0.552734375,
0.08416748046875,
0.68408203125,
0.038055419921875,
-0.295654296875,
0.2374267578125,
0.822265625,
-0.6142578125,
-0.466552734375,
0.173095703125,
0.92236328125,
0.08306884765625,
-0.355712890625,
-0.4814453125,
0.064208984375,
0.2200927734375,
0.21484375,
-0.10491943359375,
0.164794921875,
-0.17138671875,
0.5458984375,
-1.38671875,
-0.39306640625,
-0.397705078125,
0.467529296875,
-0.0009136199951171875,
-0.490966796875,
-0.366455078125,
1.521484375,
1.0107421875,
-0.489013671875,
0.486083984375,
-0.05902099609375,
0.34912109375,
0.21044921875,
0.217041015625,
-0.332763671875,
0.6064453125,
0.6689453125,
0.494384765625,
-0.499755859375,
0.2374267578125,
0.87890625,
0.07501220703125,
-0.1572265625,
0.373779296875,
0.16259765625,
-0.006633758544921875,
-0.00531005859375,
-0.350341796875,
-0.71435546875,
0.10504150390625,
-0.400390625,
0.5625,
-0.61767578125,
-0.09356689453125,
-0.1844482421875,
-0.7109375,
0.888671875,
-0.35205078125,
0.0938720703125,
0.52001953125,
-0.391357421875,
0.141845703125,
0.62841796875,
-0.22265625,
0.005817413330078125,
0.69482421875,
0.49853515625,
0.2139892578125,
0.60302734375,
0.361328125,
0.6630859375,
-0.78271484375,
0.04656982421875,
0.09515380859375,
-0.0261688232421875,
-0.334228515625,
-0.489990234375,
-1.275390625,
0.83203125,
-0.248291015625,
-0.5966796875,
0.458251953125,
-0.732421875,
0.036956787109375,
-0.366943359375,
0.69921875,
-0.337646484375,
0.326171875,
0.53173828125,
-0.272216796875,
-0.9677734375,
1.10546875,
0.0782470703125,
0.362060546875,
0.05517578125,
1.2900390625,
0.33203125,
1.447265625,
0.389404296875,
-0.5556640625,
0.372802734375,
0.59765625,
-0.4375,
-0.74267578125,
-0.82373046875,
-0.1717529296875,
-0.206787109375,
-0.60498046875,
-0.381103515625,
0.04656982421875,
0.62548828125,
0.2305908203125,
-0.7177734375,
-0.22021484375,
0.278564453125,
-1.146484375,
0.61181640625,
0.039581298828125,
0.052703857421875,
0.65869140625,
-0.2188720703125,
-0.0360107421875,
-0.775390625,
0.11199951171875,
-0.79443359375,
0.4326171875,
-0.59765625,
-0.473876953125,
-1.0029296875,
-0.5185546875,
-0.2017822265625,
-0.08447265625,
-0.5107421875,
-0.8681640625,
0.50927734375,
0.54638671875,
0.4140625,
0.60986328125,
-0.0229949951171875,
0.455078125,
0.7197265625,
0.81396484375,
0.14404296875,
0.9306640625,
0.276611328125,
-0.01500701904296875,
0.273681640625,
-0.323486328125,
0.53515625,
0.033294677734375,
0.55712890625,
-0.462158203125,
0.0105438232421875,
-0.54150390625,
-1.3095703125,
0.309326171875,
0.92626953125,
0.1343994140625,
-0.380859375,
-0.984375,
-0.1539306640625,
-1.0078125,
-0.1312255859375,
-0.67822265625,
0.876953125,
-0.57470703125,
-0.1273193359375,
-0.053375244140625,
-1.0400390625,
4.2265625,
0.9619140625,
1.0283203125,
0.57275390625,
0.06396484375,
0.85693359375,
0.11114501953125,
-0.7431640625,
-0.41943359375,
-0.21630859375,
0.56103515625,
0.0248260498046875,
-0.24072265625,
0.89013671875,
0.2159423828125,
0.693359375,
-0.1785888671875,
-0.25146484375,
0.1456298828125,
-0.7412109375,
-0.91796875,
0.284423828125,
0.064208984375,
0.431884765625,
-0.164794921875,
0.2149658203125,
0.42333984375,
-0.96142578125,
0.1614990234375,
-0.73095703125,
-0.1341552734375,
-0.556640625,
0.6923828125,
0.08917236328125,
-0.339599609375,
0.7763671875,
-0.2001953125,
-0.68896484375,
-0.14453125,
0.165283203125,
-0.08367919921875,
0.1962890625,
0.68408203125,
-0.845703125,
-0.1290283203125,
0.5126953125,
-0.86572265625,
0.74658203125,
0.329833984375,
-0.771484375,
1.046875,
-0.44482421875,
0.51318359375,
-0.31103515625,
-0.77001953125,
0.275146484375,
0.251220703125,
0.057098388671875,
-0.50537109375,
0.7978515625,
0.273193359375,
0.55517578125,
0.050445556640625,
0.296142578125,
-1.3720703125,
0.45703125,
-0.18798828125,
0.78369140625,
-0.74267578125,
-0.208251953125,
-0.48388671875,
-0.30224609375,
-0.29345703125,
-0.412109375,
1.01953125,
0.08343505859375,
0.04168701171875,
0.6513671875,
0.247314453125,
-0.40087890625,
0.55712890625,
-0.07586669921875,
-0.52734375,
-0.409423828125,
0.7861328125,
1.14453125,
-0.196533203125,
-0.421142578125,
-0.01324462890625,
0.53564453125,
0.60009765625,
0.31591796875,
0.1890869140625,
-0.77978515625,
-0.15966796875
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
You are given the strings a and b, consisting of lowercase Latin letters. You can do any number of the following operations in any order:
* if |a| > 0 (the length of the string a is greater than zero), delete the first character of the string a, that is, replace a with a_2 a_3 … a_n;
* if |a| > 0, delete the last character of the string a, that is, replace a with a_1 a_2 … a_{n-1};
* if |b| > 0 (the length of the string b is greater than zero), delete the first character of the string b, that is, replace b with b_2 b_3 … b_n;
* if |b| > 0, delete the last character of the string b, that is, replace b with b_1 b_2 … b_{n-1}.
Note that after each of the operations, the string a or b may become empty.
For example, if a="hello" and b="icpc", then you can apply the following sequence of operations:
* delete the first character of the string a ⇒ a="ello" and b="icpc";
* delete the first character of the string b ⇒ a="ello" and b="cpc";
* delete the first character of the string b ⇒ a="ello" and b="pc";
* delete the last character of the string a ⇒ a="ell" and b="pc";
* delete the last character of the string b ⇒ a="ell" and b="p".
For the given strings a and b, find the minimum number of operations for which you can make the strings a and b equal. Note that empty strings are also equal.
Input
The first line contains a single integer t (1 ≤ t ≤ 100). Then t test cases follow.
The first line of each test case contains the string a (1 ≤ |a| ≤ 20), consisting of lowercase Latin letters.
The second line of each test case contains the string b (1 ≤ |b| ≤ 20), consisting of lowercase Latin letters.
Output
For each test case, output the minimum number of operations that can make the strings a and b equal.
Example
Input
5
a
a
abcd
bc
hello
codeforces
hello
helo
dhjakjsnasjhfksafasd
adjsnasjhfksvdafdser
Output
0
2
13
3
20
Tags: brute force, implementation, strings
Correct Solution:
```
import sys
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())
t = I()
for _ in range(t):
a = S()
b = S()
len_a = len(a)
len_b = len(b)
ans = len_a+len_b
for i in range(1,min(len_a,len_b)+1):
for j in range(len_a-i+1):
for k in range(len_b-i+1):
if a[j:j+i] == b[k:k+i]:
ans = min(ans,len_a+len_b-2*i)
print(ans)
```
| 10,996 | [
0.12445068359375,
-0.07989501953125,
0.2379150390625,
0.296630859375,
-0.6728515625,
-0.69482421875,
0.05621337890625,
-0.08648681640625,
0.1641845703125,
0.87548828125,
0.802734375,
0.11700439453125,
-0.09735107421875,
-1.1005859375,
-0.86767578125,
-0.07867431640625,
-0.7392578125,
-0.67431640625,
-0.25830078125,
-0.1875,
-0.2015380859375,
0.1728515625,
-1.2939453125,
-0.58837890625,
-0.423095703125,
1.0126953125,
0.33984375,
-0.335205078125,
0.759765625,
1.095703125,
-0.5703125,
-0.33154296875,
0.52001953125,
-0.94921875,
-0.288330078125,
-0.77685546875,
0.51318359375,
-0.71826171875,
-0.01317596435546875,
-0.363037109375,
0.353759765625,
-0.55224609375,
0.36474609375,
-0.6337890625,
-1.31640625,
-0.19775390625,
-0.239501953125,
0.0621337890625,
-0.2607421875,
-0.316650390625,
0.1553955078125,
-0.349365234375,
0.611328125,
-0.208984375,
-0.014007568359375,
0.05792236328125,
0.2259521484375,
-0.269775390625,
-0.64111328125,
0.244873046875,
0.026947021484375,
0.19482421875,
-0.08404541015625,
-0.41015625,
-0.13916015625,
0.2587890625,
-0.2474365234375,
0.1087646484375,
-0.2110595703125,
-0.619140625,
-0.1397705078125,
0.109130859375,
-0.397216796875,
-0.8037109375,
-0.007793426513671875,
0.181884765625,
0.127197265625,
-0.57177734375,
-0.86328125,
0.728515625,
-0.31494140625,
0.935546875,
0.48876953125,
0.324462890625,
-0.70458984375,
-0.61767578125,
0.1474609375,
0.56982421875,
0.160400390625,
0.0794677734375,
-0.64990234375,
0.763671875,
-0.87548828125,
0.2117919921875,
0.436279296875,
0.69677734375,
-0.09930419921875,
0.1055908203125,
0.19921875,
-0.180419921875,
0.8056640625,
0.908203125,
-0.375244140625,
1.259765625,
-0.6552734375,
0.023040771484375,
0.30126953125,
0.12548828125,
-0.04815673828125,
-0.25341796875,
-0.157470703125,
-0.2291259765625,
0.63916015625,
0.040069580078125,
-0.658203125,
0.79150390625,
-0.277587890625,
0.1053466796875,
-0.806640625,
0.267822265625,
0.63720703125,
0.031646728515625,
0.72607421875,
-0.006610870361328125,
-0.235595703125,
-0.1956787109375,
-0.70556640625,
1.2724609375,
-0.28857421875,
-0.21826171875,
0.372314453125,
0.064208984375,
-0.11480712890625,
0.240478515625,
-0.30615234375,
0.88525390625,
-0.11297607421875,
0.66796875,
0.69580078125,
-0.580078125,
0.4228515625,
0.0036716461181640625,
-0.097900390625,
1.646484375,
0.62255859375,
0.287841796875,
0.94091796875,
0.302490234375,
-0.387451171875,
0.4892578125,
-0.68310546875,
0.6201171875,
0.388427734375,
0.216064453125,
-0.13916015625,
-0.052764892578125,
0.04595947265625,
0.213623046875,
0.0006022453308105469,
0.1263427734375,
-0.5419921875,
0.08935546875,
-0.281494140625,
0.7158203125,
-0.1976318359375,
0.94873046875,
-0.472900390625,
-0.261474609375,
0.07977294921875,
-0.038604736328125,
0.1046142578125,
-0.5126953125,
-0.1990966796875,
0.9267578125,
0.57275390625,
0.92822265625,
0.51806640625,
-0.17822265625,
0.3369140625,
0.466064453125,
-0.327880859375,
0.30322265625,
0.423095703125,
0.83837890625,
0.1767578125,
0.171875,
0.367431640625,
-0.2459716796875,
-0.60400390625,
-0.6240234375,
0.422607421875,
0.329345703125,
-0.568359375,
0.62158203125,
0.17236328125,
0.434326171875,
-0.82568359375,
-0.0013341903686523438,
-0.37841796875,
-1.3203125,
-0.478759765625,
0.65283203125,
-0.283935546875,
0.4970703125,
-0.724609375,
-0.7333984375,
0.50048828125,
1.1201171875,
-0.07379150390625,
0.498046875,
0.7373046875,
-0.0654296875,
-0.2408447265625,
0.51904296875,
0.126953125,
-0.09942626953125,
-0.430908203125,
0.5849609375,
-0.43994140625,
-0.109130859375,
0.2373046875,
0.42041015625,
0.240234375,
0.8544921875,
0.06805419921875,
-0.317138671875,
0.283447265625,
1.02734375,
-0.00914764404296875,
0.31689453125,
0.385986328125,
0.986328125,
0.615234375,
0.58837890625,
0.4990234375,
-0.047119140625,
1.1171875,
1.0869140625,
-0.044586181640625,
0.2239990234375,
0.1588134765625,
0.75341796875,
0.61181640625,
0.475830078125,
0.57958984375,
0.188720703125,
-0.1629638671875,
0.035888671875,
-0.496337890625,
0.1514892578125,
-0.2861328125,
0.658203125,
0.350341796875,
0.72900390625,
-0.51416015625,
-0.4755859375,
0.2841796875,
0.751953125,
-0.88427734375,
-0.36083984375,
-0.275390625,
-0.045623779296875,
0.260009765625,
-0.22607421875,
0.583984375,
0.11346435546875,
0.479248046875,
0.31689453125,
0.076171875,
-0.63671875,
-0.65576171875,
-0.77880859375,
-0.732421875,
-0.49560546875,
-0.880859375,
-0.1602783203125,
0.394287109375,
-0.95361328125,
0.192626953125,
-0.60400390625,
-0.278564453125,
0.1983642578125,
-0.70751953125,
0.75634765625,
-0.0380859375,
0.10858154296875,
-0.8310546875,
0.451416015625,
0.10296630859375,
0.97705078125,
-0.92626953125,
-0.123779296875,
-0.423828125,
-0.7548828125,
-0.07525634765625,
-0.015625,
0.7529296875,
0.15966796875,
-0.63134765625,
-0.73486328125,
-0.61376953125,
-0.07525634765625,
-0.68017578125,
0.485107421875,
-0.79736328125,
0.81396484375,
0.69287109375,
-0.6767578125,
0.6259765625,
0.96044921875,
-0.9150390625,
0.630859375,
0.1689453125,
0.227294921875,
-0.8876953125,
1.185546875,
0.40478515625,
0.357421875,
-0.60302734375,
-0.5595703125,
0.04010009765625,
-0.2061767578125,
0.409423828125,
-0.302978515625,
-0.01226806640625,
0.64599609375,
-0.2215576171875,
-0.93701171875,
0.52685546875,
-0.82666015625,
-0.14501953125,
-0.413818359375,
-0.43212890625,
0.81982421875,
0.83447265625,
0.275634765625,
-0.2130126953125,
-0.07293701171875,
-0.400146484375,
0.71875,
0.469970703125,
-0.92919921875,
-0.276611328125,
0.8798828125,
-0.10296630859375,
0.1353759765625,
0.10211181640625,
-0.38720703125,
-0.448974609375,
0.05908203125,
0.381103515625,
0.78662109375,
0.107421875,
0.64111328125,
0.56982421875,
0.5244140625,
-0.91845703125,
-0.1304931640625,
-0.18603515625,
0.69921875,
0.390625,
0.60498046875,
0.210693359375,
-0.11859130859375,
-0.4150390625,
-1.25390625,
0.225830078125,
0.3017578125,
0.2203369140625,
-0.56982421875,
0.611328125,
0.181396484375,
-0.68603515625,
0.5263671875,
-1.0009765625,
0.08050537109375,
1.0771484375,
-0.27587890625,
1.064453125,
-0.6025390625,
0.281005859375,
-0.29248046875,
-0.188232421875,
0.1622314453125,
0.53662109375,
0.5859375,
-0.417236328125,
-0.1688232421875,
-0.470703125,
-0.303466796875,
0.026214599609375,
-0.50439453125,
0.493896484375,
-0.2047119140625,
-0.1756591796875,
-0.8759765625,
0.2230224609375,
0.9609375,
0.71875,
0.368896484375,
0.2003173828125,
0.298095703125,
-0.032562255859375,
0.498046875,
-0.50634765625,
0.398681640625,
-0.40673828125,
0.64599609375,
0.08551025390625,
0.08123779296875,
-0.48291015625,
-0.21484375,
0.006488800048828125,
0.139404296875,
0.06500244140625,
-0.2607421875,
-0.9453125,
0.41064453125,
0.06610107421875,
0.51416015625,
-0.8837890625,
-0.2176513671875,
-0.583984375,
0.50244140625,
0.402099609375,
-0.85205078125,
-0.00347900390625,
-0.443359375,
0.5478515625,
0.3447265625,
-0.16552734375,
-0.55078125,
-0.712890625,
-0.82861328125,
-0.376220703125,
0.546875,
0.861328125,
-0.210205078125,
0.45947265625,
-1.1171875,
0.48486328125,
0.1693115234375,
-0.6044921875,
0.2044677734375,
-0.0653076171875,
0.4228515625,
0.266357421875,
0.7421875,
-0.1912841796875,
-0.6689453125,
-0.22412109375,
-1.4375,
0.6943359375,
-0.76513671875,
0.8056640625,
0.241943359375,
-0.16162109375,
0.2076416015625,
0.233642578125,
-0.4375,
0.0200958251953125,
-0.342529296875,
-0.05609130859375,
-1.1376953125,
-0.6298828125,
0.7919921875,
-0.1351318359375,
-0.283935546875,
0.91943359375,
0.045989990234375,
-0.1904296875,
0.11541748046875,
0.5439453125,
-0.2493896484375,
0.43896484375,
-0.51171875,
0.462646484375,
-0.7041015625,
-0.81005859375,
-0.0775146484375,
-0.477783203125,
0.73876953125,
-0.26171875,
-0.58544921875,
-0.336669921875,
-1.228515625,
-0.08489990234375,
0.23046875,
-0.51123046875,
0.0269012451171875,
0.251953125,
0.0233154296875,
-0.268798828125,
-0.078125,
-0.05963134765625,
-0.2388916015625,
-0.61669921875,
-0.640625,
0.377197265625,
0.126708984375,
0.86083984375,
0.198974609375,
-0.18798828125,
0.0011835098266601562,
-0.037017822265625,
-0.2060546875,
-0.419677734375,
-0.28515625,
-0.480224609375,
-0.19580078125,
-0.467041015625,
0.6318359375,
0.04827880859375,
0.33251953125,
0.60205078125,
0.18505859375,
0.339599609375,
0.156005859375,
-0.64892578125,
1.06640625,
-0.07305908203125,
-0.666015625,
-0.58642578125,
0.264404296875,
0.168212890625,
0.568359375,
0.40576171875,
-0.814453125,
-0.5078125,
-1.0654296875,
0.35546875,
-0.90380859375,
-0.428955078125,
-1.23828125,
-0.442626953125,
-0.51171875,
0.472412109375,
-0.150390625,
-0.67919921875,
0.05419921875,
-1.0693359375,
0.4443359375,
-0.5888671875,
-0.2279052734375,
-0.6767578125,
-0.7890625,
-0.307373046875,
1.0009765625,
0.583984375,
0.36083984375,
0.34716796875,
-0.28369140625,
0.4609375,
0.1112060546875,
-0.7734375,
-0.251708984375,
-0.3125,
0.12139892578125,
-0.28662109375,
-0.28125,
-0.7099609375,
0.71533203125,
-0.81787109375,
0.6767578125,
-0.271728515625,
-0.09027099609375,
-0.018798828125,
-0.52001953125,
1.0341796875,
-0.34228515625,
-0.1126708984375,
-0.33837890625,
0.6474609375,
0.498779296875,
-0.55419921875,
-0.323486328125,
-0.7080078125,
-0.72021484375,
-1.08203125,
0.50390625,
-0.46044921875,
0.004062652587890625,
-0.92236328125,
-0.0286712646484375,
1.2841796875,
-0.4052734375,
0.312255859375,
0.931640625,
-0.09307861328125,
0.339599609375,
-0.8505859375,
1.0810546875,
0.38720703125,
-0.7421875,
0.420166015625,
0.568359375,
-0.65966796875,
-0.120361328125,
-0.29833984375,
-1.029296875,
-0.8583984375,
0.572265625,
1.513671875,
-0.343994140625,
0.7041015625,
0.01087188720703125,
-1.1474609375,
-0.58056640625,
0.6259765625,
0.146484375,
0.41357421875,
1.0087890625,
-0.1505126953125,
-0.11346435546875,
0.54443359375,
-0.3330078125,
-0.2476806640625,
-0.293701171875,
1.044921875,
-0.1629638671875,
-0.63818359375,
0.9697265625,
1.1318359375,
-1.158203125,
-0.875,
-0.1605224609375,
0.1971435546875,
-0.424560546875,
-1.009765625,
-0.02203369140625,
0.943359375,
-0.493896484375,
0.03729248046875,
-0.011871337890625,
-0.31103515625,
0.4287109375,
0.0985107421875,
0.5009765625,
-0.46142578125,
0.447998046875,
0.3974609375,
-0.54052734375,
-0.2489013671875,
-0.9443359375,
-0.47509765625,
-0.1864013671875,
0.09051513671875,
1.1123046875,
-0.2384033203125,
-0.156005859375,
0.395263671875,
-0.2330322265625,
0.7578125,
-0.41455078125,
-0.0638427734375,
0.4033203125,
-0.77587890625,
-0.5625,
0.171142578125,
0.07012939453125,
-0.01666259765625,
0.375244140625,
-0.85400390625,
0.0167388916015625,
-0.027557373046875,
0.60693359375,
-0.256591796875,
-0.51416015625,
-0.44140625,
-1.3525390625,
-0.499755859375,
-0.48388671875,
-0.775390625,
-0.1737060546875,
0.27734375,
0.2239990234375,
-0.4814453125,
0.289794921875,
0.401123046875,
-0.4248046875,
0.7939453125,
-0.40283203125,
0.496337890625,
-0.320556640625,
-0.394775390625,
-0.439453125,
0.0726318359375,
-0.5888671875,
-0.467529296875,
-0.5205078125,
0.26513671875,
-0.162109375,
0.348876953125,
-0.382080078125,
0.58447265625,
-0.303955078125,
-0.6494140625,
-0.0280914306640625,
0.1490478515625,
-0.09088134765625,
1.080078125,
0.6416015625,
0.325439453125,
0.133544921875,
-0.55078125,
-0.1309814453125,
-0.216796875,
0.388427734375,
0.59814453125,
-0.453857421875,
-0.376708984375,
-0.499755859375,
0.240478515625,
-1.14453125,
0.444091796875,
-0.515625,
0.058990478515625,
0.16845703125,
0.06439208984375,
0.455078125,
1.1982421875,
-0.6435546875,
0.391357421875,
-0.1605224609375,
0.03851318359375,
0.2001953125,
-0.1380615234375,
0.2685546875,
0.53076171875,
-0.073486328125,
-0.0038585662841796875,
-0.36572265625,
0.26904296875,
0.06365966796875,
0.59423828125,
-0.25830078125,
-0.857421875,
-0.99609375,
-0.44580078125,
0.289306640625,
0.224853515625,
0.340576171875,
-0.55078125,
0.032623291015625,
0.1502685546875,
-0.98291015625,
0.4716796875,
-0.90576171875,
-1.16796875,
0.1051025390625,
-0.11029052734375,
-0.42333984375,
-0.0843505859375,
-0.45166015625,
-0.443115234375,
-0.251953125,
0.501953125,
-0.393798828125,
0.552734375,
0.08416748046875,
0.68408203125,
0.038055419921875,
-0.295654296875,
0.2374267578125,
0.822265625,
-0.6142578125,
-0.466552734375,
0.173095703125,
0.92236328125,
0.08306884765625,
-0.355712890625,
-0.4814453125,
0.064208984375,
0.2200927734375,
0.21484375,
-0.10491943359375,
0.164794921875,
-0.17138671875,
0.5458984375,
-1.38671875,
-0.39306640625,
-0.397705078125,
0.467529296875,
-0.0009136199951171875,
-0.490966796875,
-0.366455078125,
1.521484375,
1.0107421875,
-0.489013671875,
0.486083984375,
-0.05902099609375,
0.34912109375,
0.21044921875,
0.217041015625,
-0.332763671875,
0.6064453125,
0.6689453125,
0.494384765625,
-0.499755859375,
0.2374267578125,
0.87890625,
0.07501220703125,
-0.1572265625,
0.373779296875,
0.16259765625,
-0.006633758544921875,
-0.00531005859375,
-0.350341796875,
-0.71435546875,
0.10504150390625,
-0.400390625,
0.5625,
-0.61767578125,
-0.09356689453125,
-0.1844482421875,
-0.7109375,
0.888671875,
-0.35205078125,
0.0938720703125,
0.52001953125,
-0.391357421875,
0.141845703125,
0.62841796875,
-0.22265625,
0.005817413330078125,
0.69482421875,
0.49853515625,
0.2139892578125,
0.60302734375,
0.361328125,
0.6630859375,
-0.78271484375,
0.04656982421875,
0.09515380859375,
-0.0261688232421875,
-0.334228515625,
-0.489990234375,
-1.275390625,
0.83203125,
-0.248291015625,
-0.5966796875,
0.458251953125,
-0.732421875,
0.036956787109375,
-0.366943359375,
0.69921875,
-0.337646484375,
0.326171875,
0.53173828125,
-0.272216796875,
-0.9677734375,
1.10546875,
0.0782470703125,
0.362060546875,
0.05517578125,
1.2900390625,
0.33203125,
1.447265625,
0.389404296875,
-0.5556640625,
0.372802734375,
0.59765625,
-0.4375,
-0.74267578125,
-0.82373046875,
-0.1717529296875,
-0.206787109375,
-0.60498046875,
-0.381103515625,
0.04656982421875,
0.62548828125,
0.2305908203125,
-0.7177734375,
-0.22021484375,
0.278564453125,
-1.146484375,
0.61181640625,
0.039581298828125,
0.052703857421875,
0.65869140625,
-0.2188720703125,
-0.0360107421875,
-0.775390625,
0.11199951171875,
-0.79443359375,
0.4326171875,
-0.59765625,
-0.473876953125,
-1.0029296875,
-0.5185546875,
-0.2017822265625,
-0.08447265625,
-0.5107421875,
-0.8681640625,
0.50927734375,
0.54638671875,
0.4140625,
0.60986328125,
-0.0229949951171875,
0.455078125,
0.7197265625,
0.81396484375,
0.14404296875,
0.9306640625,
0.276611328125,
-0.01500701904296875,
0.273681640625,
-0.323486328125,
0.53515625,
0.033294677734375,
0.55712890625,
-0.462158203125,
0.0105438232421875,
-0.54150390625,
-1.3095703125,
0.309326171875,
0.92626953125,
0.1343994140625,
-0.380859375,
-0.984375,
-0.1539306640625,
-1.0078125,
-0.1312255859375,
-0.67822265625,
0.876953125,
-0.57470703125,
-0.1273193359375,
-0.053375244140625,
-1.0400390625,
4.2265625,
0.9619140625,
1.0283203125,
0.57275390625,
0.06396484375,
0.85693359375,
0.11114501953125,
-0.7431640625,
-0.41943359375,
-0.21630859375,
0.56103515625,
0.0248260498046875,
-0.24072265625,
0.89013671875,
0.2159423828125,
0.693359375,
-0.1785888671875,
-0.25146484375,
0.1456298828125,
-0.7412109375,
-0.91796875,
0.284423828125,
0.064208984375,
0.431884765625,
-0.164794921875,
0.2149658203125,
0.42333984375,
-0.96142578125,
0.1614990234375,
-0.73095703125,
-0.1341552734375,
-0.556640625,
0.6923828125,
0.08917236328125,
-0.339599609375,
0.7763671875,
-0.2001953125,
-0.68896484375,
-0.14453125,
0.165283203125,
-0.08367919921875,
0.1962890625,
0.68408203125,
-0.845703125,
-0.1290283203125,
0.5126953125,
-0.86572265625,
0.74658203125,
0.329833984375,
-0.771484375,
1.046875,
-0.44482421875,
0.51318359375,
-0.31103515625,
-0.77001953125,
0.275146484375,
0.251220703125,
0.057098388671875,
-0.50537109375,
0.7978515625,
0.273193359375,
0.55517578125,
0.050445556640625,
0.296142578125,
-1.3720703125,
0.45703125,
-0.18798828125,
0.78369140625,
-0.74267578125,
-0.208251953125,
-0.48388671875,
-0.30224609375,
-0.29345703125,
-0.412109375,
1.01953125,
0.08343505859375,
0.04168701171875,
0.6513671875,
0.247314453125,
-0.40087890625,
0.55712890625,
-0.07586669921875,
-0.52734375,
-0.409423828125,
0.7861328125,
1.14453125,
-0.196533203125,
-0.421142578125,
-0.01324462890625,
0.53564453125,
0.60009765625,
0.31591796875,
0.1890869140625,
-0.77978515625,
-0.15966796875
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
You are given the strings a and b, consisting of lowercase Latin letters. You can do any number of the following operations in any order:
* if |a| > 0 (the length of the string a is greater than zero), delete the first character of the string a, that is, replace a with a_2 a_3 … a_n;
* if |a| > 0, delete the last character of the string a, that is, replace a with a_1 a_2 … a_{n-1};
* if |b| > 0 (the length of the string b is greater than zero), delete the first character of the string b, that is, replace b with b_2 b_3 … b_n;
* if |b| > 0, delete the last character of the string b, that is, replace b with b_1 b_2 … b_{n-1}.
Note that after each of the operations, the string a or b may become empty.
For example, if a="hello" and b="icpc", then you can apply the following sequence of operations:
* delete the first character of the string a ⇒ a="ello" and b="icpc";
* delete the first character of the string b ⇒ a="ello" and b="cpc";
* delete the first character of the string b ⇒ a="ello" and b="pc";
* delete the last character of the string a ⇒ a="ell" and b="pc";
* delete the last character of the string b ⇒ a="ell" and b="p".
For the given strings a and b, find the minimum number of operations for which you can make the strings a and b equal. Note that empty strings are also equal.
Input
The first line contains a single integer t (1 ≤ t ≤ 100). Then t test cases follow.
The first line of each test case contains the string a (1 ≤ |a| ≤ 20), consisting of lowercase Latin letters.
The second line of each test case contains the string b (1 ≤ |b| ≤ 20), consisting of lowercase Latin letters.
Output
For each test case, output the minimum number of operations that can make the strings a and b equal.
Example
Input
5
a
a
abcd
bc
hello
codeforces
hello
helo
dhjakjsnasjhfksafasd
adjsnasjhfksvdafdser
Output
0
2
13
3
20
Tags: brute force, implementation, strings
Correct Solution:
```
n = int(input())
for i in range(n):
s1 = input()
s2 = input()
if (len(s1) > len(s2)): s1, s2 = s2, s1
max = 0
for j in range(len(s1)):
for k in range(j, len(s1)):
found = s2.find(s1[j:k+1])
if (found != -1):
if (k - j + 1 > max):
max = k - j + 1
else:
break
print(len(s1) + len(s2) - 2*max)
```
| 10,997 | [
0.12445068359375,
-0.07989501953125,
0.2379150390625,
0.296630859375,
-0.6728515625,
-0.69482421875,
0.05621337890625,
-0.08648681640625,
0.1641845703125,
0.87548828125,
0.802734375,
0.11700439453125,
-0.09735107421875,
-1.1005859375,
-0.86767578125,
-0.07867431640625,
-0.7392578125,
-0.67431640625,
-0.25830078125,
-0.1875,
-0.2015380859375,
0.1728515625,
-1.2939453125,
-0.58837890625,
-0.423095703125,
1.0126953125,
0.33984375,
-0.335205078125,
0.759765625,
1.095703125,
-0.5703125,
-0.33154296875,
0.52001953125,
-0.94921875,
-0.288330078125,
-0.77685546875,
0.51318359375,
-0.71826171875,
-0.01317596435546875,
-0.363037109375,
0.353759765625,
-0.55224609375,
0.36474609375,
-0.6337890625,
-1.31640625,
-0.19775390625,
-0.239501953125,
0.0621337890625,
-0.2607421875,
-0.316650390625,
0.1553955078125,
-0.349365234375,
0.611328125,
-0.208984375,
-0.014007568359375,
0.05792236328125,
0.2259521484375,
-0.269775390625,
-0.64111328125,
0.244873046875,
0.026947021484375,
0.19482421875,
-0.08404541015625,
-0.41015625,
-0.13916015625,
0.2587890625,
-0.2474365234375,
0.1087646484375,
-0.2110595703125,
-0.619140625,
-0.1397705078125,
0.109130859375,
-0.397216796875,
-0.8037109375,
-0.007793426513671875,
0.181884765625,
0.127197265625,
-0.57177734375,
-0.86328125,
0.728515625,
-0.31494140625,
0.935546875,
0.48876953125,
0.324462890625,
-0.70458984375,
-0.61767578125,
0.1474609375,
0.56982421875,
0.160400390625,
0.0794677734375,
-0.64990234375,
0.763671875,
-0.87548828125,
0.2117919921875,
0.436279296875,
0.69677734375,
-0.09930419921875,
0.1055908203125,
0.19921875,
-0.180419921875,
0.8056640625,
0.908203125,
-0.375244140625,
1.259765625,
-0.6552734375,
0.023040771484375,
0.30126953125,
0.12548828125,
-0.04815673828125,
-0.25341796875,
-0.157470703125,
-0.2291259765625,
0.63916015625,
0.040069580078125,
-0.658203125,
0.79150390625,
-0.277587890625,
0.1053466796875,
-0.806640625,
0.267822265625,
0.63720703125,
0.031646728515625,
0.72607421875,
-0.006610870361328125,
-0.235595703125,
-0.1956787109375,
-0.70556640625,
1.2724609375,
-0.28857421875,
-0.21826171875,
0.372314453125,
0.064208984375,
-0.11480712890625,
0.240478515625,
-0.30615234375,
0.88525390625,
-0.11297607421875,
0.66796875,
0.69580078125,
-0.580078125,
0.4228515625,
0.0036716461181640625,
-0.097900390625,
1.646484375,
0.62255859375,
0.287841796875,
0.94091796875,
0.302490234375,
-0.387451171875,
0.4892578125,
-0.68310546875,
0.6201171875,
0.388427734375,
0.216064453125,
-0.13916015625,
-0.052764892578125,
0.04595947265625,
0.213623046875,
0.0006022453308105469,
0.1263427734375,
-0.5419921875,
0.08935546875,
-0.281494140625,
0.7158203125,
-0.1976318359375,
0.94873046875,
-0.472900390625,
-0.261474609375,
0.07977294921875,
-0.038604736328125,
0.1046142578125,
-0.5126953125,
-0.1990966796875,
0.9267578125,
0.57275390625,
0.92822265625,
0.51806640625,
-0.17822265625,
0.3369140625,
0.466064453125,
-0.327880859375,
0.30322265625,
0.423095703125,
0.83837890625,
0.1767578125,
0.171875,
0.367431640625,
-0.2459716796875,
-0.60400390625,
-0.6240234375,
0.422607421875,
0.329345703125,
-0.568359375,
0.62158203125,
0.17236328125,
0.434326171875,
-0.82568359375,
-0.0013341903686523438,
-0.37841796875,
-1.3203125,
-0.478759765625,
0.65283203125,
-0.283935546875,
0.4970703125,
-0.724609375,
-0.7333984375,
0.50048828125,
1.1201171875,
-0.07379150390625,
0.498046875,
0.7373046875,
-0.0654296875,
-0.2408447265625,
0.51904296875,
0.126953125,
-0.09942626953125,
-0.430908203125,
0.5849609375,
-0.43994140625,
-0.109130859375,
0.2373046875,
0.42041015625,
0.240234375,
0.8544921875,
0.06805419921875,
-0.317138671875,
0.283447265625,
1.02734375,
-0.00914764404296875,
0.31689453125,
0.385986328125,
0.986328125,
0.615234375,
0.58837890625,
0.4990234375,
-0.047119140625,
1.1171875,
1.0869140625,
-0.044586181640625,
0.2239990234375,
0.1588134765625,
0.75341796875,
0.61181640625,
0.475830078125,
0.57958984375,
0.188720703125,
-0.1629638671875,
0.035888671875,
-0.496337890625,
0.1514892578125,
-0.2861328125,
0.658203125,
0.350341796875,
0.72900390625,
-0.51416015625,
-0.4755859375,
0.2841796875,
0.751953125,
-0.88427734375,
-0.36083984375,
-0.275390625,
-0.045623779296875,
0.260009765625,
-0.22607421875,
0.583984375,
0.11346435546875,
0.479248046875,
0.31689453125,
0.076171875,
-0.63671875,
-0.65576171875,
-0.77880859375,
-0.732421875,
-0.49560546875,
-0.880859375,
-0.1602783203125,
0.394287109375,
-0.95361328125,
0.192626953125,
-0.60400390625,
-0.278564453125,
0.1983642578125,
-0.70751953125,
0.75634765625,
-0.0380859375,
0.10858154296875,
-0.8310546875,
0.451416015625,
0.10296630859375,
0.97705078125,
-0.92626953125,
-0.123779296875,
-0.423828125,
-0.7548828125,
-0.07525634765625,
-0.015625,
0.7529296875,
0.15966796875,
-0.63134765625,
-0.73486328125,
-0.61376953125,
-0.07525634765625,
-0.68017578125,
0.485107421875,
-0.79736328125,
0.81396484375,
0.69287109375,
-0.6767578125,
0.6259765625,
0.96044921875,
-0.9150390625,
0.630859375,
0.1689453125,
0.227294921875,
-0.8876953125,
1.185546875,
0.40478515625,
0.357421875,
-0.60302734375,
-0.5595703125,
0.04010009765625,
-0.2061767578125,
0.409423828125,
-0.302978515625,
-0.01226806640625,
0.64599609375,
-0.2215576171875,
-0.93701171875,
0.52685546875,
-0.82666015625,
-0.14501953125,
-0.413818359375,
-0.43212890625,
0.81982421875,
0.83447265625,
0.275634765625,
-0.2130126953125,
-0.07293701171875,
-0.400146484375,
0.71875,
0.469970703125,
-0.92919921875,
-0.276611328125,
0.8798828125,
-0.10296630859375,
0.1353759765625,
0.10211181640625,
-0.38720703125,
-0.448974609375,
0.05908203125,
0.381103515625,
0.78662109375,
0.107421875,
0.64111328125,
0.56982421875,
0.5244140625,
-0.91845703125,
-0.1304931640625,
-0.18603515625,
0.69921875,
0.390625,
0.60498046875,
0.210693359375,
-0.11859130859375,
-0.4150390625,
-1.25390625,
0.225830078125,
0.3017578125,
0.2203369140625,
-0.56982421875,
0.611328125,
0.181396484375,
-0.68603515625,
0.5263671875,
-1.0009765625,
0.08050537109375,
1.0771484375,
-0.27587890625,
1.064453125,
-0.6025390625,
0.281005859375,
-0.29248046875,
-0.188232421875,
0.1622314453125,
0.53662109375,
0.5859375,
-0.417236328125,
-0.1688232421875,
-0.470703125,
-0.303466796875,
0.026214599609375,
-0.50439453125,
0.493896484375,
-0.2047119140625,
-0.1756591796875,
-0.8759765625,
0.2230224609375,
0.9609375,
0.71875,
0.368896484375,
0.2003173828125,
0.298095703125,
-0.032562255859375,
0.498046875,
-0.50634765625,
0.398681640625,
-0.40673828125,
0.64599609375,
0.08551025390625,
0.08123779296875,
-0.48291015625,
-0.21484375,
0.006488800048828125,
0.139404296875,
0.06500244140625,
-0.2607421875,
-0.9453125,
0.41064453125,
0.06610107421875,
0.51416015625,
-0.8837890625,
-0.2176513671875,
-0.583984375,
0.50244140625,
0.402099609375,
-0.85205078125,
-0.00347900390625,
-0.443359375,
0.5478515625,
0.3447265625,
-0.16552734375,
-0.55078125,
-0.712890625,
-0.82861328125,
-0.376220703125,
0.546875,
0.861328125,
-0.210205078125,
0.45947265625,
-1.1171875,
0.48486328125,
0.1693115234375,
-0.6044921875,
0.2044677734375,
-0.0653076171875,
0.4228515625,
0.266357421875,
0.7421875,
-0.1912841796875,
-0.6689453125,
-0.22412109375,
-1.4375,
0.6943359375,
-0.76513671875,
0.8056640625,
0.241943359375,
-0.16162109375,
0.2076416015625,
0.233642578125,
-0.4375,
0.0200958251953125,
-0.342529296875,
-0.05609130859375,
-1.1376953125,
-0.6298828125,
0.7919921875,
-0.1351318359375,
-0.283935546875,
0.91943359375,
0.045989990234375,
-0.1904296875,
0.11541748046875,
0.5439453125,
-0.2493896484375,
0.43896484375,
-0.51171875,
0.462646484375,
-0.7041015625,
-0.81005859375,
-0.0775146484375,
-0.477783203125,
0.73876953125,
-0.26171875,
-0.58544921875,
-0.336669921875,
-1.228515625,
-0.08489990234375,
0.23046875,
-0.51123046875,
0.0269012451171875,
0.251953125,
0.0233154296875,
-0.268798828125,
-0.078125,
-0.05963134765625,
-0.2388916015625,
-0.61669921875,
-0.640625,
0.377197265625,
0.126708984375,
0.86083984375,
0.198974609375,
-0.18798828125,
0.0011835098266601562,
-0.037017822265625,
-0.2060546875,
-0.419677734375,
-0.28515625,
-0.480224609375,
-0.19580078125,
-0.467041015625,
0.6318359375,
0.04827880859375,
0.33251953125,
0.60205078125,
0.18505859375,
0.339599609375,
0.156005859375,
-0.64892578125,
1.06640625,
-0.07305908203125,
-0.666015625,
-0.58642578125,
0.264404296875,
0.168212890625,
0.568359375,
0.40576171875,
-0.814453125,
-0.5078125,
-1.0654296875,
0.35546875,
-0.90380859375,
-0.428955078125,
-1.23828125,
-0.442626953125,
-0.51171875,
0.472412109375,
-0.150390625,
-0.67919921875,
0.05419921875,
-1.0693359375,
0.4443359375,
-0.5888671875,
-0.2279052734375,
-0.6767578125,
-0.7890625,
-0.307373046875,
1.0009765625,
0.583984375,
0.36083984375,
0.34716796875,
-0.28369140625,
0.4609375,
0.1112060546875,
-0.7734375,
-0.251708984375,
-0.3125,
0.12139892578125,
-0.28662109375,
-0.28125,
-0.7099609375,
0.71533203125,
-0.81787109375,
0.6767578125,
-0.271728515625,
-0.09027099609375,
-0.018798828125,
-0.52001953125,
1.0341796875,
-0.34228515625,
-0.1126708984375,
-0.33837890625,
0.6474609375,
0.498779296875,
-0.55419921875,
-0.323486328125,
-0.7080078125,
-0.72021484375,
-1.08203125,
0.50390625,
-0.46044921875,
0.004062652587890625,
-0.92236328125,
-0.0286712646484375,
1.2841796875,
-0.4052734375,
0.312255859375,
0.931640625,
-0.09307861328125,
0.339599609375,
-0.8505859375,
1.0810546875,
0.38720703125,
-0.7421875,
0.420166015625,
0.568359375,
-0.65966796875,
-0.120361328125,
-0.29833984375,
-1.029296875,
-0.8583984375,
0.572265625,
1.513671875,
-0.343994140625,
0.7041015625,
0.01087188720703125,
-1.1474609375,
-0.58056640625,
0.6259765625,
0.146484375,
0.41357421875,
1.0087890625,
-0.1505126953125,
-0.11346435546875,
0.54443359375,
-0.3330078125,
-0.2476806640625,
-0.293701171875,
1.044921875,
-0.1629638671875,
-0.63818359375,
0.9697265625,
1.1318359375,
-1.158203125,
-0.875,
-0.1605224609375,
0.1971435546875,
-0.424560546875,
-1.009765625,
-0.02203369140625,
0.943359375,
-0.493896484375,
0.03729248046875,
-0.011871337890625,
-0.31103515625,
0.4287109375,
0.0985107421875,
0.5009765625,
-0.46142578125,
0.447998046875,
0.3974609375,
-0.54052734375,
-0.2489013671875,
-0.9443359375,
-0.47509765625,
-0.1864013671875,
0.09051513671875,
1.1123046875,
-0.2384033203125,
-0.156005859375,
0.395263671875,
-0.2330322265625,
0.7578125,
-0.41455078125,
-0.0638427734375,
0.4033203125,
-0.77587890625,
-0.5625,
0.171142578125,
0.07012939453125,
-0.01666259765625,
0.375244140625,
-0.85400390625,
0.0167388916015625,
-0.027557373046875,
0.60693359375,
-0.256591796875,
-0.51416015625,
-0.44140625,
-1.3525390625,
-0.499755859375,
-0.48388671875,
-0.775390625,
-0.1737060546875,
0.27734375,
0.2239990234375,
-0.4814453125,
0.289794921875,
0.401123046875,
-0.4248046875,
0.7939453125,
-0.40283203125,
0.496337890625,
-0.320556640625,
-0.394775390625,
-0.439453125,
0.0726318359375,
-0.5888671875,
-0.467529296875,
-0.5205078125,
0.26513671875,
-0.162109375,
0.348876953125,
-0.382080078125,
0.58447265625,
-0.303955078125,
-0.6494140625,
-0.0280914306640625,
0.1490478515625,
-0.09088134765625,
1.080078125,
0.6416015625,
0.325439453125,
0.133544921875,
-0.55078125,
-0.1309814453125,
-0.216796875,
0.388427734375,
0.59814453125,
-0.453857421875,
-0.376708984375,
-0.499755859375,
0.240478515625,
-1.14453125,
0.444091796875,
-0.515625,
0.058990478515625,
0.16845703125,
0.06439208984375,
0.455078125,
1.1982421875,
-0.6435546875,
0.391357421875,
-0.1605224609375,
0.03851318359375,
0.2001953125,
-0.1380615234375,
0.2685546875,
0.53076171875,
-0.073486328125,
-0.0038585662841796875,
-0.36572265625,
0.26904296875,
0.06365966796875,
0.59423828125,
-0.25830078125,
-0.857421875,
-0.99609375,
-0.44580078125,
0.289306640625,
0.224853515625,
0.340576171875,
-0.55078125,
0.032623291015625,
0.1502685546875,
-0.98291015625,
0.4716796875,
-0.90576171875,
-1.16796875,
0.1051025390625,
-0.11029052734375,
-0.42333984375,
-0.0843505859375,
-0.45166015625,
-0.443115234375,
-0.251953125,
0.501953125,
-0.393798828125,
0.552734375,
0.08416748046875,
0.68408203125,
0.038055419921875,
-0.295654296875,
0.2374267578125,
0.822265625,
-0.6142578125,
-0.466552734375,
0.173095703125,
0.92236328125,
0.08306884765625,
-0.355712890625,
-0.4814453125,
0.064208984375,
0.2200927734375,
0.21484375,
-0.10491943359375,
0.164794921875,
-0.17138671875,
0.5458984375,
-1.38671875,
-0.39306640625,
-0.397705078125,
0.467529296875,
-0.0009136199951171875,
-0.490966796875,
-0.366455078125,
1.521484375,
1.0107421875,
-0.489013671875,
0.486083984375,
-0.05902099609375,
0.34912109375,
0.21044921875,
0.217041015625,
-0.332763671875,
0.6064453125,
0.6689453125,
0.494384765625,
-0.499755859375,
0.2374267578125,
0.87890625,
0.07501220703125,
-0.1572265625,
0.373779296875,
0.16259765625,
-0.006633758544921875,
-0.00531005859375,
-0.350341796875,
-0.71435546875,
0.10504150390625,
-0.400390625,
0.5625,
-0.61767578125,
-0.09356689453125,
-0.1844482421875,
-0.7109375,
0.888671875,
-0.35205078125,
0.0938720703125,
0.52001953125,
-0.391357421875,
0.141845703125,
0.62841796875,
-0.22265625,
0.005817413330078125,
0.69482421875,
0.49853515625,
0.2139892578125,
0.60302734375,
0.361328125,
0.6630859375,
-0.78271484375,
0.04656982421875,
0.09515380859375,
-0.0261688232421875,
-0.334228515625,
-0.489990234375,
-1.275390625,
0.83203125,
-0.248291015625,
-0.5966796875,
0.458251953125,
-0.732421875,
0.036956787109375,
-0.366943359375,
0.69921875,
-0.337646484375,
0.326171875,
0.53173828125,
-0.272216796875,
-0.9677734375,
1.10546875,
0.0782470703125,
0.362060546875,
0.05517578125,
1.2900390625,
0.33203125,
1.447265625,
0.389404296875,
-0.5556640625,
0.372802734375,
0.59765625,
-0.4375,
-0.74267578125,
-0.82373046875,
-0.1717529296875,
-0.206787109375,
-0.60498046875,
-0.381103515625,
0.04656982421875,
0.62548828125,
0.2305908203125,
-0.7177734375,
-0.22021484375,
0.278564453125,
-1.146484375,
0.61181640625,
0.039581298828125,
0.052703857421875,
0.65869140625,
-0.2188720703125,
-0.0360107421875,
-0.775390625,
0.11199951171875,
-0.79443359375,
0.4326171875,
-0.59765625,
-0.473876953125,
-1.0029296875,
-0.5185546875,
-0.2017822265625,
-0.08447265625,
-0.5107421875,
-0.8681640625,
0.50927734375,
0.54638671875,
0.4140625,
0.60986328125,
-0.0229949951171875,
0.455078125,
0.7197265625,
0.81396484375,
0.14404296875,
0.9306640625,
0.276611328125,
-0.01500701904296875,
0.273681640625,
-0.323486328125,
0.53515625,
0.033294677734375,
0.55712890625,
-0.462158203125,
0.0105438232421875,
-0.54150390625,
-1.3095703125,
0.309326171875,
0.92626953125,
0.1343994140625,
-0.380859375,
-0.984375,
-0.1539306640625,
-1.0078125,
-0.1312255859375,
-0.67822265625,
0.876953125,
-0.57470703125,
-0.1273193359375,
-0.053375244140625,
-1.0400390625,
4.2265625,
0.9619140625,
1.0283203125,
0.57275390625,
0.06396484375,
0.85693359375,
0.11114501953125,
-0.7431640625,
-0.41943359375,
-0.21630859375,
0.56103515625,
0.0248260498046875,
-0.24072265625,
0.89013671875,
0.2159423828125,
0.693359375,
-0.1785888671875,
-0.25146484375,
0.1456298828125,
-0.7412109375,
-0.91796875,
0.284423828125,
0.064208984375,
0.431884765625,
-0.164794921875,
0.2149658203125,
0.42333984375,
-0.96142578125,
0.1614990234375,
-0.73095703125,
-0.1341552734375,
-0.556640625,
0.6923828125,
0.08917236328125,
-0.339599609375,
0.7763671875,
-0.2001953125,
-0.68896484375,
-0.14453125,
0.165283203125,
-0.08367919921875,
0.1962890625,
0.68408203125,
-0.845703125,
-0.1290283203125,
0.5126953125,
-0.86572265625,
0.74658203125,
0.329833984375,
-0.771484375,
1.046875,
-0.44482421875,
0.51318359375,
-0.31103515625,
-0.77001953125,
0.275146484375,
0.251220703125,
0.057098388671875,
-0.50537109375,
0.7978515625,
0.273193359375,
0.55517578125,
0.050445556640625,
0.296142578125,
-1.3720703125,
0.45703125,
-0.18798828125,
0.78369140625,
-0.74267578125,
-0.208251953125,
-0.48388671875,
-0.30224609375,
-0.29345703125,
-0.412109375,
1.01953125,
0.08343505859375,
0.04168701171875,
0.6513671875,
0.247314453125,
-0.40087890625,
0.55712890625,
-0.07586669921875,
-0.52734375,
-0.409423828125,
0.7861328125,
1.14453125,
-0.196533203125,
-0.421142578125,
-0.01324462890625,
0.53564453125,
0.60009765625,
0.31591796875,
0.1890869140625,
-0.77978515625,
-0.15966796875
] | 0 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Paul hates palindromes. He assumes that string s is tolerable if each its character is one of the first p letters of the English alphabet and s doesn't contain any palindrome contiguous substring of length 2 or more.
Paul has found a tolerable string s of length n. Help him find the lexicographically next tolerable string of the same length or else state that such string does not exist.
Input
The first line contains two space-separated integers: n and p (1 ≤ n ≤ 1000; 1 ≤ p ≤ 26). The second line contains string s, consisting of n small English letters. It is guaranteed that the string is tolerable (according to the above definition).
Output
If the lexicographically next tolerable string of the same length exists, print it. Otherwise, print "NO" (without the quotes).
Examples
Input
3 3
cba
Output
NO
Input
3 4
cba
Output
cbd
Input
4 4
abcd
Output
abda
Note
String s is lexicographically larger (or simply larger) than string t with the same length, if there is number i, such that s1 = t1, ..., si = ti, si + 1 > ti + 1.
The lexicographically next tolerable string is the lexicographically minimum tolerable string which is larger than the given one.
A palindrome is a string that reads the same forward or reversed.
Tags: greedy, strings
Correct Solution:
```
import sys
from math import log2,floor,ceil,sqrt,gcd
import bisect
# from collections import deque
# sys.setrecursionlimit(10**5)
Ri = lambda : [int(x) for x in sys.stdin.readline().split()]
ri = lambda : sys.stdin.readline().strip()
def input(): return sys.stdin.readline().strip()
def list2d(a, b, c): return [[c] * b for i in range(a)]
def list3d(a, b, c, d): return [[[d] * c for j in range(b)] for i in range(a)]
def list4d(a, b, c, d, e): return [[[[e] * d for j in range(c)] for j in range(b)] for i in range(a)]
def ceil(x, y=1): return int(-(-x // y))
def INT(): return int(input())
def MAP(): return map(int, input().split())
def LIST(N=None): return list(MAP()) if N is None else [INT() for i in range(N)]
def Yes(): print('Yes')
def No(): print('No')
def YES(): print('YES')
def NO(): print('NO')
INF = 10 ** 18
MOD = 1000000007
n,k = Ri()
st = ri()
st = [i for i in st]
arr = [chr(ord('a')+i) for i in range(k)]
flag = -1
ch = -1
if n == 1:
# YES()
if st[0] == arr[-1]:
NO()
else:
print(chr(ord(st[0])+1))
else:
for i in range(n-1,-1,-1):
for j in range(ord(st[i])-ord('a')+1, k):
tch = arr[j]
if i-2 >=0 :
if tch == st[i-1] or tch == st[i-2]:
continue
else:
flag = i
ch = tch
break
elif i-1>= 0:
if tch == st[i-1]:
continue
else:
flag = i
ch = tch
break
else:
flag = i
ch = tch
break
if flag != -1:
break
# print(flag)
if flag == -1:
NO()
else:
st[flag] = ch
# print(st)
# print(flag,n)
for i in range(flag+1,n):
# print("fs")
for j in range(0, k):
tch = arr[j]
if i-2 >=0 :
if tch == st[i-1] or tch == st[i-2]:
continue
else:
flag = i
ch = tch
st[i] = ch
break
elif i-1>= 0:
if tch == st[i-1]:
continue
else:
flag = i
ch = tch
st[i] = ch
break
else:
flag = i
ch = tch
st[i] = ch
break
# YES()
print("".join(st))
```
| 11,141 | [
0.075927734375,
0.06011962890625,
0.4404296875,
0.050994873046875,
-0.408447265625,
-0.473876953125,
-0.0030803680419921875,
-0.1048583984375,
0.1651611328125,
0.8603515625,
0.489013671875,
-0.07757568359375,
-0.132080078125,
-0.80712890625,
-0.9033203125,
-0.1678466796875,
-0.86376953125,
-0.45703125,
-0.85791015625,
-0.11016845703125,
0.10406494140625,
-0.2005615234375,
-1.4443359375,
0.0225830078125,
-0.40771484375,
0.92919921875,
0.70947265625,
0.181884765625,
1.2822265625,
1.173828125,
-0.357177734375,
-0.055511474609375,
0.8193359375,
-1.0703125,
-0.732421875,
-0.326416015625,
0.76220703125,
-0.60546875,
-0.2493896484375,
-0.303466796875,
0.1390380859375,
-0.50390625,
0.45654296875,
-0.7666015625,
-1.07421875,
0.2366943359375,
-0.49658203125,
-0.181640625,
-0.406982421875,
-0.7783203125,
0.08209228515625,
0.00939178466796875,
0.8046875,
-0.4716796875,
-0.2415771484375,
0.07904052734375,
0.12841796875,
-0.07818603515625,
-0.59130859375,
0.433837890625,
0.058868408203125,
0.438232421875,
-0.165771484375,
-0.369140625,
-0.5048828125,
0.300048828125,
0.134521484375,
-0.1373291015625,
0.278076171875,
-0.90576171875,
-0.225341796875,
0.61767578125,
-0.217529296875,
-0.50390625,
-0.1644287109375,
0.443359375,
0.297607421875,
0.285400390625,
-0.54150390625,
0.6162109375,
-0.1451416015625,
1.029296875,
0.20068359375,
-0.03173828125,
-0.42919921875,
-0.57421875,
0.105224609375,
0.1202392578125,
0.2254638671875,
0.0662841796875,
0.1302490234375,
0.60107421875,
-0.62939453125,
-0.138671875,
0.43994140625,
0.50341796875,
0.08709716796875,
0.474365234375,
0.30810546875,
0.259765625,
0.56298828125,
0.62158203125,
-0.0809326171875,
1.0341796875,
-0.82080078125,
0.10205078125,
0.1439208984375,
0.1151123046875,
-0.25341796875,
-0.2344970703125,
-0.453857421875,
-0.1834716796875,
0.44970703125,
0.1412353515625,
-0.11065673828125,
0.7421875,
-0.1942138671875,
0.3779296875,
-0.8037109375,
0.3291015625,
0.49658203125,
0.214111328125,
0.4697265625,
-0.07080078125,
-0.002132415771484375,
-0.286376953125,
-0.18994140625,
0.73583984375,
-0.822265625,
0.15283203125,
0.6689453125,
0.07159423828125,
0.1329345703125,
0.11669921875,
0.359130859375,
0.473876953125,
-0.0243072509765625,
0.54150390625,
0.662109375,
-0.318359375,
0.71337890625,
-0.662109375,
-0.245849609375,
1.3173828125,
0.2421875,
-0.292724609375,
1.00390625,
0.348388671875,
-0.79833984375,
0.36474609375,
-0.947265625,
0.70849609375,
0.1080322265625,
0.140380859375,
0.1810302734375,
0.254150390625,
-0.302978515625,
0.304443359375,
0.41455078125,
0.2496337890625,
-0.369384765625,
-0.11956787109375,
-0.2103271484375,
0.87744140625,
-0.259765625,
1.0224609375,
-0.375,
-0.43115234375,
0.09344482421875,
-0.3486328125,
-0.0217437744140625,
-0.15283203125,
-0.210205078125,
0.8271484375,
0.7021484375,
0.71484375,
1.09375,
-0.349853515625,
0.61962890625,
0.31005859375,
-0.39306640625,
0.61474609375,
0.6640625,
0.3623046875,
0.171630859375,
0.265380859375,
-0.2017822265625,
-0.455810546875,
-0.7685546875,
-0.662109375,
-0.402587890625,
0.572265625,
-0.224853515625,
0.0728759765625,
-0.06817626953125,
0.06292724609375,
-0.98681640625,
-0.3271484375,
-0.152587890625,
-0.97998046875,
-0.445556640625,
0.599609375,
-0.225830078125,
0.9951171875,
-0.417724609375,
-0.1724853515625,
0.650390625,
1.1572265625,
-0.49169921875,
0.0693359375,
0.1727294921875,
0.148681640625,
-0.4345703125,
0.413330078125,
0.00577545166015625,
-0.290283203125,
-0.62744140625,
1.1337890625,
-0.58056640625,
0.235595703125,
0.124267578125,
0.95361328125,
0.77490234375,
0.82177734375,
-0.400146484375,
-0.1199951171875,
0.892578125,
1.068359375,
0.05194091796875,
0.580078125,
-0.0296630859375,
0.75830078125,
0.53564453125,
0.2529296875,
0.60791015625,
0.339111328125,
0.497802734375,
0.77392578125,
-0.005138397216796875,
0.1605224609375,
0.07989501953125,
0.69775390625,
0.72119140625,
0.42626953125,
-0.09674072265625,
0.7265625,
-0.0312347412109375,
-0.09552001953125,
-0.3017578125,
0.1556396484375,
-0.2763671875,
0.99853515625,
-0.0013942718505859375,
-0.0257415771484375,
-0.2724609375,
-0.4482421875,
0.185302734375,
0.86181640625,
-0.79443359375,
-0.64208984375,
0.06304931640625,
-0.0924072265625,
-0.0231170654296875,
-0.19287109375,
0.1781005859375,
0.387451171875,
0.59619140625,
0.301513671875,
-0.10137939453125,
-0.43896484375,
-0.8056640625,
-0.6962890625,
-0.712890625,
-0.1888427734375,
-0.6591796875,
-0.317138671875,
0.49462890625,
-1.1259765625,
0.187255859375,
-0.08843994140625,
-0.619140625,
-0.064453125,
-0.271240234375,
0.5341796875,
0.03179931640625,
0.52001953125,
-0.64111328125,
0.58056640625,
0.09027099609375,
1.03125,
-0.484619140625,
-0.2841796875,
0.07330322265625,
-0.32080078125,
0.42626953125,
0.053955078125,
-0.1876220703125,
0.1392822265625,
-0.611328125,
-0.95556640625,
-0.21240234375,
-0.0789794921875,
-0.6259765625,
0.2025146484375,
-0.1866455078125,
0.98876953125,
0.7041015625,
-0.3115234375,
0.5859375,
0.806640625,
-0.75537109375,
0.0816650390625,
0.29248046875,
-0.27197265625,
-0.69482421875,
1.068359375,
0.12091064453125,
0.332763671875,
-0.82421875,
-0.25,
-0.521484375,
0.318603515625,
0.254150390625,
-0.61328125,
-0.343017578125,
0.8330078125,
0.03289794921875,
-1.017578125,
0.53125,
-0.82568359375,
-0.2093505859375,
-0.1978759765625,
-0.43603515625,
0.8017578125,
0.9306640625,
0.5224609375,
-0.279052734375,
-0.63916015625,
-0.1212158203125,
0.447021484375,
0.38134765625,
-0.50146484375,
-0.27734375,
0.30078125,
-0.357666015625,
-0.142822265625,
0.54638671875,
-0.1842041015625,
-0.06427001953125,
0.298828125,
0.1099853515625,
0.92822265625,
0.302490234375,
0.2509765625,
0.328125,
1.0439453125,
-0.59423828125,
-0.1282958984375,
-0.212158203125,
0.662109375,
0.48291015625,
0.361328125,
0.2340087890625,
-0.25146484375,
-0.10443115234375,
-1.32421875,
0.5546875,
-0.11383056640625,
0.84375,
-0.28369140625,
1.1220703125,
-0.016021728515625,
-0.468505859375,
0.35595703125,
-0.6337890625,
-0.1082763671875,
1.1259765625,
-0.2197265625,
0.85009765625,
-0.6103515625,
0.2430419921875,
0.035736083984375,
0.283447265625,
0.32470703125,
0.1844482421875,
0.7470703125,
-0.46435546875,
-0.7314453125,
-0.65673828125,
-0.216796875,
-0.146240234375,
-0.357421875,
0.308349609375,
-0.377197265625,
-0.441162109375,
-0.462158203125,
0.366455078125,
0.8662109375,
0.2042236328125,
0.1610107421875,
0.37158203125,
0.12359619140625,
0.6337890625,
0.50634765625,
0.04791259765625,
-0.00530242919921875,
-0.489013671875,
1.0107421875,
-0.007030487060546875,
-0.2340087890625,
-0.76904296875,
-0.380615234375,
-0.197265625,
0.208251953125,
-0.05230712890625,
-0.5595703125,
-0.87890625,
-0.040863037109375,
0.07928466796875,
0.468505859375,
-0.74853515625,
-0.261962890625,
-0.177978515625,
0.5234375,
0.11700439453125,
-0.61865234375,
0.0792236328125,
-0.587890625,
0.57958984375,
0.724609375,
0.255126953125,
-0.6123046875,
-0.490478515625,
-0.82080078125,
-0.73779296875,
0.2705078125,
0.67529296875,
0.0709228515625,
0.1845703125,
-1.1982421875,
0.92919921875,
0.2529296875,
-0.300048828125,
0.004016876220703125,
-0.1019287109375,
0.62255859375,
0.06298828125,
0.54296875,
-0.394775390625,
-0.7529296875,
0.1339111328125,
-1.2763671875,
0.469970703125,
-0.391845703125,
0.2022705078125,
0.1365966796875,
-0.210693359375,
0.1776123046875,
0.07745361328125,
-0.292724609375,
0.2144775390625,
-0.43603515625,
0.3798828125,
-0.55322265625,
-0.70458984375,
0.279296875,
-0.1705322265625,
-0.32275390625,
1.3486328125,
-0.10986328125,
-0.280517578125,
0.258544921875,
0.7333984375,
-0.0238189697265625,
0.25830078125,
-0.66015625,
0.56884765625,
-0.00966644287109375,
-0.36962890625,
-0.361572265625,
-0.273681640625,
0.60546875,
0.2091064453125,
-0.91552734375,
-0.05908203125,
-1.2861328125,
-0.5,
0.01441192626953125,
-0.332763671875,
0.1807861328125,
0.1492919921875,
-0.3818359375,
-0.38623046875,
-0.51806640625,
-0.3349609375,
-0.486083984375,
-0.54345703125,
-0.256103515625,
0.263671875,
0.904296875,
0.74609375,
0.08160400390625,
-0.50048828125,
0.010833740234375,
-0.032745361328125,
-0.2418212890625,
-0.68212890625,
0.04974365234375,
-0.1131591796875,
-0.1912841796875,
-0.1517333984375,
0.031951904296875,
0.2493896484375,
0.54345703125,
1.009765625,
0.1571044921875,
0.4013671875,
0.352783203125,
-0.37744140625,
0.5498046875,
0.184326171875,
-0.884765625,
-0.336669921875,
0.31201171875,
0.032379150390625,
0.282470703125,
0.10137939453125,
-0.865234375,
-0.525390625,
-1.01953125,
0.175537109375,
-0.46044921875,
-0.287109375,
-0.9599609375,
-0.318359375,
-0.350341796875,
0.3154296875,
-0.689453125,
-0.69287109375,
-0.216064453125,
-1.1748046875,
0.1898193359375,
-0.65869140625,
-0.419189453125,
-0.61474609375,
-0.489990234375,
0.03326416015625,
0.69091796875,
0.33544921875,
0.375,
-0.215087890625,
-0.130126953125,
0.033050537109375,
-0.07525634765625,
-0.3515625,
-0.372802734375,
-0.53173828125,
0.395751953125,
0.0007586479187011719,
-0.21337890625,
-0.5673828125,
0.8935546875,
-0.62841796875,
0.11810302734375,
-0.1995849609375,
-0.15771484375,
-0.1622314453125,
-0.112060546875,
0.87841796875,
-0.2481689453125,
-0.33544921875,
-0.29541015625,
0.3837890625,
0.6513671875,
-0.42333984375,
0.0214996337890625,
-0.8935546875,
-0.32373046875,
-1.0419921875,
0.34033203125,
-0.5361328125,
0.12109375,
-0.67919921875,
-0.464599609375,
1.4453125,
-0.48193359375,
0.2147216796875,
1.2412109375,
0.0511474609375,
0.303955078125,
-0.7255859375,
0.80078125,
0.7236328125,
-0.52587890625,
0.002162933349609375,
0.39794921875,
-0.66796875,
0.381591796875,
-0.06170654296875,
-0.6240234375,
-0.822265625,
0.33349609375,
1.49609375,
-0.214599609375,
0.73291015625,
0.302978515625,
-1.0009765625,
-0.6044921875,
1.1513671875,
0.1893310546875,
0.2120361328125,
1.0361328125,
-0.179443359375,
-0.059722900390625,
-0.1212158203125,
-0.26806640625,
-0.2435302734375,
-0.218505859375,
1.0546875,
-0.6220703125,
-0.491943359375,
0.74755859375,
0.86865234375,
-1.25,
-0.99609375,
0.1396484375,
0.280517578125,
-0.236572265625,
-0.767578125,
0.07257080078125,
0.417236328125,
-0.64208984375,
-0.329833984375,
0.30810546875,
0.03289794921875,
0.80810546875,
0.09051513671875,
0.01438140869140625,
-0.224609375,
0.751953125,
0.62255859375,
-0.21142578125,
-0.12457275390625,
-0.87255859375,
-0.1815185546875,
-0.3720703125,
0.0643310546875,
0.73876953125,
-0.583984375,
0.2276611328125,
0.58251953125,
-0.07489013671875,
0.52783203125,
-0.6484375,
-0.57666015625,
0.30615234375,
-0.6611328125,
-0.43896484375,
0.245361328125,
0.3818359375,
0.128662109375,
0.188232421875,
-0.9912109375,
0.07464599609375,
0.0238494873046875,
0.38134765625,
-0.5205078125,
-0.89306640625,
-0.1441650390625,
-0.92431640625,
-0.64599609375,
-0.60986328125,
-0.85546875,
-0.1336669921875,
0.1304931640625,
-0.487060546875,
-0.460693359375,
-0.0643310546875,
0.4951171875,
-0.73193359375,
0.9287109375,
-0.68994140625,
0.41650390625,
-0.576171875,
-0.1319580078125,
-0.8896484375,
0.1607666015625,
-0.41357421875,
-0.06341552734375,
-0.76904296875,
0.060211181640625,
-0.13916015625,
0.4658203125,
-0.198974609375,
0.49365234375,
-0.43994140625,
-0.335205078125,
0.06732177734375,
0.26513671875,
-0.258544921875,
0.55908203125,
0.6025390625,
-0.176025390625,
0.177001953125,
-0.04559326171875,
-0.20263671875,
-0.285400390625,
0.568359375,
0.43408203125,
-0.171875,
-0.0299530029296875,
-0.48046875,
0.26123046875,
-0.83447265625,
0.335205078125,
-0.54541015625,
0.26953125,
-0.1064453125,
-0.299072265625,
0.429443359375,
1.248046875,
0.060302734375,
0.320556640625,
0.0811767578125,
0.34716796875,
0.226806640625,
0.0025730133056640625,
0.0039825439453125,
0.1282958984375,
0.49951171875,
-0.405029296875,
-0.11236572265625,
0.50146484375,
0.388916015625,
0.322509765625,
0.014404296875,
-0.40234375,
-0.75146484375,
-0.035308837890625,
-0.5166015625,
0.043182373046875,
0.9306640625,
-0.4306640625,
-0.2252197265625,
-0.1182861328125,
-0.99853515625,
0.05938720703125,
-0.7978515625,
-0.94189453125,
0.07196044921875,
-0.146728515625,
-0.7548828125,
-0.53466796875,
-0.81640625,
-0.3310546875,
-0.23046875,
0.323974609375,
-0.44775390625,
0.576171875,
-0.2763671875,
0.36962890625,
0.0161590576171875,
-0.300537109375,
0.06390380859375,
0.7705078125,
-0.6494140625,
-0.281494140625,
-0.03582763671875,
0.90576171875,
0.306396484375,
-0.06689453125,
-0.47412109375,
0.1376953125,
0.0687255859375,
-0.0211334228515625,
-0.59912109375,
-0.0780029296875,
-0.241943359375,
0.638671875,
-0.9873046875,
0.1141357421875,
0.1365966796875,
0.321044921875,
-0.226318359375,
-0.09271240234375,
-0.67333984375,
0.70751953125,
0.94189453125,
0.2322998046875,
0.471923828125,
0.572265625,
0.53466796875,
-0.1572265625,
-0.347900390625,
-0.236083984375,
0.52197265625,
0.5869140625,
0.50732421875,
0.11614990234375,
0.69384765625,
0.5048828125,
-0.12646484375,
-0.5849609375,
0.1539306640625,
-0.4453125,
0.0980224609375,
-0.071044921875,
-0.412353515625,
0.11138916015625,
0.127685546875,
-0.732421875,
0.4482421875,
-0.6279296875,
0.09100341796875,
-0.471923828125,
-0.650390625,
0.94091796875,
-0.57666015625,
0.106201171875,
-0.1680908203125,
-0.5556640625,
0.3642578125,
0.64013671875,
0.1400146484375,
0.21533203125,
0.63232421875,
0.48388671875,
0.224609375,
0.8232421875,
0.27734375,
0.580078125,
-0.427490234375,
0.0115509033203125,
0.046173095703125,
-0.236083984375,
-0.6884765625,
-0.260986328125,
-0.8681640625,
0.356201171875,
-0.03173828125,
0.14208984375,
0.60400390625,
-0.65966796875,
0.20751953125,
-0.322998046875,
0.8115234375,
-0.446533203125,
0.1917724609375,
0.32666015625,
-0.2052001953125,
-0.7265625,
0.90673828125,
-0.31884765625,
0.458251953125,
0.040985107421875,
1.0322265625,
-0.362548828125,
1.1044921875,
0.277099609375,
0.0731201171875,
-0.09722900390625,
0.45947265625,
-0.83740234375,
-0.5869140625,
-0.490234375,
-0.11248779296875,
0.129638671875,
-0.81298828125,
0.033172607421875,
-0.48974609375,
0.5791015625,
0.40283203125,
-1.091796875,
-0.56689453125,
0.12255859375,
-0.578125,
0.1724853515625,
0.39501953125,
-0.2607421875,
-0.1572265625,
-0.2303466796875,
-0.373291015625,
-0.74462890625,
0.06390380859375,
-0.572265625,
0.07916259765625,
-0.5810546875,
-0.5400390625,
-0.478515625,
-0.438720703125,
-0.46630859375,
-0.229248046875,
-0.1162109375,
-0.568359375,
0.638671875,
0.0960693359375,
0.36572265625,
0.271484375,
-0.345458984375,
0.15478515625,
0.8564453125,
1.0283203125,
-0.05780029296875,
0.67822265625,
0.06402587890625,
-0.1700439453125,
0.1712646484375,
-0.172607421875,
0.445068359375,
-0.07794189453125,
-0.06817626953125,
-0.505859375,
0.4140625,
-0.91357421875,
-1.33203125,
-0.1329345703125,
0.327392578125,
0.7314453125,
-0.57275390625,
-0.9755859375,
-0.1290283203125,
-1.048828125,
-0.06524658203125,
-0.3984375,
0.3818359375,
-0.07196044921875,
0.037689208984375,
-0.366455078125,
-1.2060546875,
4.48828125,
1.193359375,
1.0517578125,
0.5732421875,
-0.1324462890625,
0.8662109375,
0.1553955078125,
-0.43310546875,
-0.3017578125,
-0.25732421875,
0.31689453125,
0.0014963150024414062,
0.260986328125,
0.875,
0.282958984375,
0.662109375,
-0.62353515625,
0.1690673828125,
-0.20751953125,
-0.68115234375,
-0.54150390625,
0.1544189453125,
-0.088134765625,
0.6591796875,
-0.188720703125,
0.1356201171875,
0.36181640625,
-0.650390625,
-0.314208984375,
-0.5234375,
0.298828125,
-0.19140625,
0.92138671875,
-0.153076171875,
-0.31982421875,
0.3251953125,
-0.032958984375,
-0.450927734375,
-0.2587890625,
0.09490966796875,
-0.140625,
0.09454345703125,
0.290771484375,
-0.6650390625,
0.113525390625,
0.414794921875,
-0.52587890625,
0.26025390625,
-0.0584716796875,
-0.72265625,
0.62060546875,
-0.301025390625,
0.1761474609375,
-0.93603515625,
-1.2392578125,
-0.28466796875,
-0.1033935546875,
0.0867919921875,
-0.1083984375,
0.37060546875,
0.283203125,
0.495849609375,
0.35791015625,
0.42041015625,
-1.244140625,
1.2197265625,
-0.056640625,
0.48193359375,
-0.48583984375,
0.0999755859375,
-0.453369140625,
-0.26708984375,
-0.278564453125,
-0.291015625,
0.6669921875,
0.182373046875,
0.06658935546875,
0.5048828125,
0.6015625,
-0.436767578125,
0.141357421875,
0.05523681640625,
-0.33203125,
-0.2191162109375,
0.7197265625,
1.4443359375,
-0.703125,
-0.2418212890625,
-0.5302734375,
0.68603515625,
0.3095703125,
0.7666015625,
0.137451171875,
-0.49462890625,
-0.26953125
] | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.