結果

問題 No.1859 ><<<
ユーザー ygd.ygd.
提出日時 2022-03-01 00:56:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 2,057 bytes
コンパイル時間 419 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 166,236 KB
最終ジャッジ日時 2024-07-07 04:01:16
合計ジャッジ時間 9,496 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,480 KB
testcase_01 AC 34 ms
52,096 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 37 ms
51,712 KB
testcase_04 AC 222 ms
146,912 KB
testcase_05 AC 216 ms
146,656 KB
testcase_06 AC 217 ms
146,968 KB
testcase_07 AC 221 ms
166,236 KB
testcase_08 AC 219 ms
147,176 KB
testcase_09 AC 204 ms
147,044 KB
testcase_10 AC 67 ms
83,616 KB
testcase_11 AC 131 ms
107,392 KB
testcase_12 AC 123 ms
106,324 KB
testcase_13 AC 87 ms
101,756 KB
testcase_14 AC 137 ms
110,208 KB
testcase_15 AC 162 ms
115,944 KB
testcase_16 AC 190 ms
148,248 KB
testcase_17 AC 147 ms
113,516 KB
testcase_18 AC 188 ms
147,792 KB
testcase_19 AC 143 ms
110,096 KB
testcase_20 AC 168 ms
141,676 KB
testcase_21 AC 185 ms
150,728 KB
testcase_22 AC 178 ms
149,272 KB
testcase_23 AC 161 ms
115,708 KB
testcase_24 AC 180 ms
150,360 KB
testcase_25 AC 188 ms
148,628 KB
testcase_26 AC 175 ms
142,272 KB
testcase_27 AC 191 ms
148,824 KB
testcase_28 AC 182 ms
147,992 KB
testcase_29 AC 184 ms
147,452 KB
testcase_30 AC 164 ms
115,552 KB
testcase_31 AC 160 ms
115,832 KB
testcase_32 AC 199 ms
150,184 KB
testcase_33 AC 170 ms
116,160 KB
testcase_34 AC 186 ms
148,052 KB
testcase_35 AC 190 ms
150,876 KB
testcase_36 AC 191 ms
150,856 KB
testcase_37 AC 184 ms
141,872 KB
testcase_38 AC 196 ms
150,684 KB
testcase_39 AC 202 ms
150,792 KB
testcase_40 AC 207 ms
158,780 KB
testcase_41 AC 185 ms
150,760 KB
testcase_42 AC 170 ms
115,980 KB
testcase_43 AC 191 ms
139,920 KB
testcase_44 AC 193 ms
139,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#input = sys.stdin.readline
#input = sys.stdin.buffer.readline #文字列はダメ
#sys.setrecursionlimit(1000000)
#import bisect
#import itertools
#import random
#from heapq import heapify, heappop, heappush
#from collections import defaultdict 
#from collections import deque
#import copy
#import math
#from functools import lru_cache
#@lru_cache(maxsize=None)
#MOD = pow(10,9) + 7
#MOD = 998244353
#dx = [1,0,-1,0]
#dy = [0,1,0,-1]

#一つ目の方法
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 #文字ではなく数字のリストの場合はord不要
        v = 1
        for i in range(l):
            pw[i+1] = v = v * base % mod
    def get(self, l, r): #S[l:r)indexでいうl文字目からr-1文字目
        return (self.h[r] - self.h[l] * self.pw[r-l]) % self.mod

base1 = 1007; base2 = 2009
mod1 = 1000000007; mod2 = 1000000009

def main():
    N = int(input())
    A = list(map(int,input().split()))
    S = list(str(input()))
    AS = []
    for i in range(N-1):
        if A[i] < A[i+1]:
            AS.append('<')
        else:
            AS.append('>')
    #print(AS,S)
    #操作不要
    if AS == S:
        print(0);exit()
    #ループする場合
    if A[N-1] < A[0]:
        AS.append('<')
    else:
        AS.append('>')

    #print(AS)
    RHS1 = RollingHash(S,base1,mod1) #N-1文字
    RHA1 = RollingHash(AS,base1,mod1) #N文字
    RHS2 = RollingHash(S,base2,mod2) #N-1文字
    RHA2 = RollingHash(AS,base2,mod2) #N文字
    #print(RHS.get(0,N-1))
    for i in range(1,N):
        #[i,N) + [0,i-1)
        mid = N - i
        if RHS1.get(0,mid) == RHA1.get(i,N) and RHS1.get(mid,N-1) == RHA1.get(0,i-1):
            if RHS2.get(0,mid) == RHA2.get(i,N) and RHS2.get(mid,N-1) == RHA2.get(0,i-1):
                print(i);exit()
    print(-1)


if __name__ == '__main__':
    main()
0