結果

問題 No.1859 ><<<
ユーザー ygd.ygd.
提出日時 2022-03-01 00:35:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 231 ms / 2,000 ms
コード長 2,057 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,060 KB
実行使用メモリ 166,348 KB
最終ジャッジ日時 2024-07-07 03:41:54
合計ジャッジ時間 10,706 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,312 KB
testcase_01 AC 35 ms
52,748 KB
testcase_02 AC 35 ms
53,124 KB
testcase_03 AC 37 ms
53,696 KB
testcase_04 AC 218 ms
147,168 KB
testcase_05 AC 210 ms
147,084 KB
testcase_06 AC 217 ms
147,040 KB
testcase_07 AC 231 ms
166,348 KB
testcase_08 AC 222 ms
146,892 KB
testcase_09 AC 215 ms
147,092 KB
testcase_10 AC 71 ms
82,632 KB
testcase_11 AC 138 ms
107,068 KB
testcase_12 AC 131 ms
106,240 KB
testcase_13 AC 92 ms
100,864 KB
testcase_14 AC 146 ms
110,080 KB
testcase_15 AC 174 ms
115,744 KB
testcase_16 AC 199 ms
148,740 KB
testcase_17 AC 154 ms
113,296 KB
testcase_18 AC 201 ms
148,072 KB
testcase_19 AC 152 ms
109,568 KB
testcase_20 AC 183 ms
141,860 KB
testcase_21 AC 198 ms
150,660 KB
testcase_22 AC 187 ms
148,832 KB
testcase_23 AC 174 ms
115,360 KB
testcase_24 AC 193 ms
149,996 KB
testcase_25 AC 203 ms
148,828 KB
testcase_26 AC 190 ms
142,132 KB
testcase_27 AC 203 ms
148,356 KB
testcase_28 AC 190 ms
147,668 KB
testcase_29 AC 195 ms
147,380 KB
testcase_30 AC 183 ms
115,960 KB
testcase_31 AC 177 ms
115,688 KB
testcase_32 AC 199 ms
149,992 KB
testcase_33 AC 179 ms
115,576 KB
testcase_34 AC 201 ms
147,848 KB
testcase_35 AC 205 ms
150,568 KB
testcase_36 AC 198 ms
150,892 KB
testcase_37 AC 187 ms
141,552 KB
testcase_38 AC 209 ms
151,032 KB
testcase_39 AC 207 ms
150,428 KB
testcase_40 AC 212 ms
159,192 KB
testcase_41 AC 190 ms
150,980 KB
testcase_42 AC 178 ms
115,700 KB
testcase_43 AC 200 ms
139,580 KB
testcase_44 AC 203 ms
140,112 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,base1,mod1) #N-1文字
    RHA2 = RollingHash(AS,base1,mod1) #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