結果

問題 No.1859 ><<<
ユーザー roarisroaris
提出日時 2022-02-26 20:44:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 185 ms / 2,000 ms
コード長 767 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 141,736 KB
最終ジャッジ日時 2024-07-04 17:29:37
合計ジャッジ時間 9,003 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,456 KB
testcase_01 AC 38 ms
51,584 KB
testcase_02 AC 36 ms
51,840 KB
testcase_03 AC 42 ms
51,840 KB
testcase_04 AC 184 ms
141,408 KB
testcase_05 AC 177 ms
141,672 KB
testcase_06 AC 182 ms
141,736 KB
testcase_07 AC 179 ms
141,536 KB
testcase_08 AC 181 ms
141,152 KB
testcase_09 AC 175 ms
141,672 KB
testcase_10 AC 74 ms
84,992 KB
testcase_11 AC 138 ms
118,272 KB
testcase_12 AC 116 ms
113,280 KB
testcase_13 AC 90 ms
97,024 KB
testcase_14 AC 137 ms
123,520 KB
testcase_15 AC 151 ms
112,768 KB
testcase_16 AC 176 ms
134,972 KB
testcase_17 AC 135 ms
108,928 KB
testcase_18 AC 171 ms
134,652 KB
testcase_19 AC 138 ms
124,528 KB
testcase_20 AC 142 ms
112,768 KB
testcase_21 AC 162 ms
135,944 KB
testcase_22 AC 161 ms
135,056 KB
testcase_23 AC 142 ms
112,512 KB
testcase_24 AC 172 ms
135,540 KB
testcase_25 AC 178 ms
134,696 KB
testcase_26 AC 151 ms
113,152 KB
testcase_27 AC 176 ms
134,600 KB
testcase_28 AC 166 ms
134,328 KB
testcase_29 AC 170 ms
133,988 KB
testcase_30 AC 149 ms
112,896 KB
testcase_31 AC 147 ms
112,640 KB
testcase_32 AC 174 ms
135,696 KB
testcase_33 AC 149 ms
112,896 KB
testcase_34 AC 169 ms
134,456 KB
testcase_35 AC 180 ms
135,948 KB
testcase_36 AC 185 ms
136,192 KB
testcase_37 AC 151 ms
113,152 KB
testcase_38 AC 183 ms
136,560 KB
testcase_39 AC 182 ms
135,828 KB
testcase_40 AC 173 ms
135,828 KB
testcase_41 AC 174 ms
136,284 KB
testcase_42 AC 147 ms
112,896 KB
testcase_43 AC 168 ms
134,508 KB
testcase_44 AC 171 ms
134,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def z_algo(s):
    c = 0
    n = len(s)
    z = [0]*n
    
    for i in range(1, n):
        l = i-c
        
        if i+z[l]<c+z[c]:
            z[i] = z[l]
        else:
            j = max(0, c+z[c]-i)
            
            while i+j<n and s[j]==s[i+j]:
                j += 1
            
            z[i] = j
            c = i
    
    z[0] = n
    return z

N = int(input())
A = list(map(int, input().split()))
S = input()[:-1]
l = []

for i in range(N):
    if A[i]<A[(i+1)%N]:
        l.append('<')
    else:
        l.append('>')

s = ''.join(l)
z = z_algo(''.join([S, s, s]))
ans = N+10

for i in range(N-1, 2*N-1):
    if z[i]>=N-1:
        ans = min(ans, i-N+1)

if ans==N+10:
    print(-1)
else:
    print(ans)
0