結果

問題 No.1859 ><<<
ユーザー ああいいああいい
提出日時 2022-02-28 13:26:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 636 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 142,424 KB
最終ジャッジ日時 2024-07-06 15:44:50
合計ジャッジ時間 9,713 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,996 KB
testcase_01 AC 37 ms
52,436 KB
testcase_02 AC 38 ms
52,708 KB
testcase_03 AC 37 ms
52,624 KB
testcase_04 AC 171 ms
142,212 KB
testcase_05 AC 175 ms
142,260 KB
testcase_06 AC 163 ms
142,092 KB
testcase_07 AC 175 ms
142,352 KB
testcase_08 AC 159 ms
142,424 KB
testcase_09 AC 168 ms
142,356 KB
testcase_10 AC 75 ms
85,176 KB
testcase_11 AC 122 ms
119,828 KB
testcase_12 AC 117 ms
114,096 KB
testcase_13 AC 91 ms
98,132 KB
testcase_14 AC 130 ms
125,724 KB
testcase_15 AC 143 ms
114,428 KB
testcase_16 AC 166 ms
135,444 KB
testcase_17 AC 134 ms
110,388 KB
testcase_18 AC 166 ms
135,076 KB
testcase_19 AC 129 ms
126,168 KB
testcase_20 AC 143 ms
114,800 KB
testcase_21 AC 161 ms
137,124 KB
testcase_22 AC 157 ms
135,660 KB
testcase_23 AC 146 ms
114,308 KB
testcase_24 AC 161 ms
136,596 KB
testcase_25 AC 175 ms
135,120 KB
testcase_26 AC 144 ms
115,016 KB
testcase_27 AC 168 ms
135,244 KB
testcase_28 AC 159 ms
135,268 KB
testcase_29 AC 164 ms
134,808 KB
testcase_30 AC 147 ms
114,648 KB
testcase_31 AC 143 ms
114,448 KB
testcase_32 AC 180 ms
136,320 KB
testcase_33 AC 148 ms
114,636 KB
testcase_34 AC 165 ms
134,900 KB
testcase_35 AC 171 ms
136,628 KB
testcase_36 AC 172 ms
136,908 KB
testcase_37 AC 152 ms
115,040 KB
testcase_38 AC 174 ms
136,940 KB
testcase_39 AC 166 ms
136,624 KB
testcase_40 AC 158 ms
136,028 KB
testcase_41 AC 160 ms
136,712 KB
testcase_42 AC 160 ms
114,628 KB
testcase_43 AC 155 ms
135,060 KB
testcase_44 AC 158 ms
135,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
S = input()
T = []
for i in range(N-1):
    if A[i] < A[i+1]:
        T.append('<')
    else:
        T.append(">")
if A[-1] < A[0]:
    T.append("<")
else:
    T.append(">")
    
T = "".join(T)
T = S + T + T
n = len(T)
Z = [0] * n
Z[0] = n
i = 1
j = 0
while i < n:
    while i + j < n and T[i+j] == T[j]:
        j += 1
    Z[i] = j
    if j == 0:
        i += 1
        continue
    k = 1
    while k < j and k + Z[k] < j:
        Z[i+k] = Z[k]
        k += 1
    i += k
    j -= k
import sys
for i in range(N-1,n):
    if Z[i] >= N-1:
        print(i-N+1)
        exit()
print(-1)
0