結果

問題 No.1859 ><<<
ユーザー H20H20
提出日時 2022-02-27 20:35:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 185 ms / 2,000 ms
コード長 852 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 153,696 KB
最終ジャッジ日時 2024-07-05 19:52:51
合計ジャッジ時間 9,263 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,840 KB
testcase_01 AC 34 ms
51,968 KB
testcase_02 AC 34 ms
52,096 KB
testcase_03 AC 41 ms
51,968 KB
testcase_04 AC 185 ms
153,208 KB
testcase_05 AC 183 ms
153,072 KB
testcase_06 AC 182 ms
153,696 KB
testcase_07 AC 181 ms
153,184 KB
testcase_08 AC 184 ms
153,072 KB
testcase_09 AC 185 ms
153,584 KB
testcase_10 AC 70 ms
80,512 KB
testcase_11 AC 126 ms
120,704 KB
testcase_12 AC 120 ms
119,808 KB
testcase_13 AC 90 ms
97,536 KB
testcase_14 AC 135 ms
126,080 KB
testcase_15 AC 162 ms
118,272 KB
testcase_16 AC 174 ms
145,216 KB
testcase_17 AC 140 ms
113,408 KB
testcase_18 AC 174 ms
144,976 KB
testcase_19 AC 139 ms
123,392 KB
testcase_20 AC 152 ms
118,656 KB
testcase_21 AC 175 ms
147,460 KB
testcase_22 AC 171 ms
146,148 KB
testcase_23 AC 152 ms
118,016 KB
testcase_24 AC 174 ms
146,516 KB
testcase_25 AC 175 ms
145,568 KB
testcase_26 AC 166 ms
139,132 KB
testcase_27 AC 175 ms
145,456 KB
testcase_28 AC 171 ms
144,632 KB
testcase_29 AC 170 ms
144,168 KB
testcase_30 AC 158 ms
118,400 KB
testcase_31 AC 156 ms
118,272 KB
testcase_32 AC 182 ms
146,904 KB
testcase_33 AC 156 ms
118,400 KB
testcase_34 AC 172 ms
144,896 KB
testcase_35 AC 181 ms
147,484 KB
testcase_36 AC 179 ms
146,940 KB
testcase_37 AC 158 ms
118,400 KB
testcase_38 AC 183 ms
147,724 KB
testcase_39 AC 178 ms
147,476 KB
testcase_40 AC 172 ms
146,400 KB
testcase_41 AC 173 ms
147,480 KB
testcase_42 AC 151 ms
118,400 KB
testcase_43 AC 173 ms
145,272 KB
testcase_44 AC 173 ms
145,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class RollingHash():
    def __init__(self, s, base, mod):
        self.mod = mod
        self.pw = pw = [1]*(len(s)+1)

        l = len(s)
        self.h = h = [0]*(l+1)

        v = 0
        for i in range(l):
            h[i+1] = v = (v * base + ord(s[i])) % mod
        v = 1
        for i in range(l):
            pw[i+1] = v = v * base % mod
    def get(self, l, r):
        return (self.h[r] - self.h[l] * self.pw[r-l]) % self.mod

base = 37; mod = 10**9 + 9

N = int(input())
A = list(map(int, input().split())) 
A = A+[A[0]]
S = input()
L = []
for i in range(N):
    if A[i]<A[i+1]:
        L.append('<')
    else:
        L.append('>')
L = ''.join(map(str, L))*2
SRH = RollingHash(S,base,mod)
LRH = RollingHash(L,base,mod)
m = SRH.get(0,len(S))
for i in range(N):
    if m == LRH.get(i,len(S)+i):
        print(i)
        exit()
print(-1)


0