結果

問題 No.1859 ><<<
ユーザー ShirotsumeShirotsume
提出日時 2021-11-27 00:59:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 196 ms / 2,000 ms
コード長 850 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 167,792 KB
最終ジャッジ日時 2024-07-04 16:29:08
合計ジャッジ時間 9,561 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,584 KB
testcase_01 AC 37 ms
52,352 KB
testcase_02 AC 34 ms
52,096 KB
testcase_03 AC 35 ms
51,840 KB
testcase_04 AC 187 ms
167,240 KB
testcase_05 AC 183 ms
167,316 KB
testcase_06 AC 189 ms
167,608 KB
testcase_07 AC 184 ms
167,792 KB
testcase_08 AC 188 ms
167,276 KB
testcase_09 AC 172 ms
167,436 KB
testcase_10 AC 76 ms
89,772 KB
testcase_11 AC 139 ms
137,228 KB
testcase_12 AC 124 ms
129,664 KB
testcase_13 AC 101 ms
105,856 KB
testcase_14 AC 136 ms
141,312 KB
testcase_15 AC 157 ms
128,064 KB
testcase_16 AC 182 ms
163,012 KB
testcase_17 AC 147 ms
116,084 KB
testcase_18 AC 178 ms
162,632 KB
testcase_19 AC 143 ms
145,616 KB
testcase_20 AC 150 ms
128,064 KB
testcase_21 AC 175 ms
163,992 KB
testcase_22 AC 164 ms
162,836 KB
testcase_23 AC 147 ms
128,100 KB
testcase_24 AC 177 ms
163,588 KB
testcase_25 AC 187 ms
162,356 KB
testcase_26 AC 163 ms
128,688 KB
testcase_27 AC 185 ms
162,884 KB
testcase_28 AC 195 ms
156,984 KB
testcase_29 AC 170 ms
156,956 KB
testcase_30 AC 165 ms
127,936 KB
testcase_31 AC 155 ms
128,212 KB
testcase_32 AC 193 ms
164,384 KB
testcase_33 AC 157 ms
128,320 KB
testcase_34 AC 175 ms
161,924 KB
testcase_35 AC 185 ms
164,136 KB
testcase_36 AC 184 ms
164,268 KB
testcase_37 AC 165 ms
128,316 KB
testcase_38 AC 196 ms
164,988 KB
testcase_39 AC 186 ms
164,616 KB
testcase_40 AC 177 ms
163,864 KB
testcase_41 AC 179 ms
163,912 KB
testcase_42 AC 155 ms
127,952 KB
testcase_43 AC 173 ms
162,544 KB
testcase_44 AC 174 ms
162,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Z_algorithm(S):
    N=len(S)
    arr = [0]*N
    arr[0] = N
    i,j = 1,0
    while i<N:
        while i+j<N and S[j]==S[i+j]:
            j += 1
        arr[i]=j
        if not j:
            i += 1
            continue
        k = 1
        while i+k<N and k+arr[k]<j:
            arr[i+k] = arr[k]
            k += 1
        i += k; j -= k
    return arr

def solve(n, a, s):
    t = []
    a = a + a
    for i in range(2 * n - 2):
        if a[i] < a[i + 1]:
            t.append('<')
        else:
            t.append('>')
    n -= 1
    t = ''.join(t)
    l = Z_algorithm(s + t)[n:]
    ans = -1
    #print(''.join(list(s + t)[n:]))
    #print(l)
    for i in range(n + 1):
        if l[i] >= n:
            ans = i
            break
    return ans


n = int(input())
a = list(map(int,input().split()))
s = input()

print(solve(n, a, s))
 
0