結果

問題 No.1859 ><<<
ユーザー Nzt3Nzt3
提出日時 2022-03-16 00:18:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 1,160 bytes
コンパイル時間 1,832 ms
コンパイル使用メモリ 170,560 KB
実行使用メモリ 7,168 KB
最終ジャッジ日時 2024-09-22 16:51:59
合計ジャッジ時間 6,578 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,948 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 73 ms
7,072 KB
testcase_05 AC 74 ms
7,040 KB
testcase_06 AC 73 ms
7,168 KB
testcase_07 AC 75 ms
7,168 KB
testcase_08 AC 74 ms
7,168 KB
testcase_09 AC 75 ms
7,168 KB
testcase_10 AC 14 ms
6,944 KB
testcase_11 AC 49 ms
6,944 KB
testcase_12 AC 40 ms
6,940 KB
testcase_13 AC 24 ms
6,944 KB
testcase_14 AC 41 ms
6,940 KB
testcase_15 AC 58 ms
6,944 KB
testcase_16 AC 72 ms
6,940 KB
testcase_17 AC 46 ms
6,940 KB
testcase_18 AC 71 ms
6,940 KB
testcase_19 AC 48 ms
6,940 KB
testcase_20 AC 60 ms
6,944 KB
testcase_21 AC 68 ms
7,040 KB
testcase_22 AC 57 ms
6,940 KB
testcase_23 AC 58 ms
6,940 KB
testcase_24 AC 63 ms
6,968 KB
testcase_25 AC 73 ms
6,940 KB
testcase_26 AC 58 ms
6,944 KB
testcase_27 AC 77 ms
6,944 KB
testcase_28 AC 61 ms
6,940 KB
testcase_29 AC 71 ms
6,944 KB
testcase_30 AC 67 ms
6,940 KB
testcase_31 AC 62 ms
6,940 KB
testcase_32 AC 76 ms
7,092 KB
testcase_33 AC 65 ms
6,940 KB
testcase_34 AC 59 ms
6,944 KB
testcase_35 AC 76 ms
7,096 KB
testcase_36 AC 74 ms
7,100 KB
testcase_37 AC 70 ms
6,940 KB
testcase_38 AC 83 ms
7,096 KB
testcase_39 AC 72 ms
7,132 KB
testcase_40 AC 63 ms
7,040 KB
testcase_41 AC 62 ms
7,116 KB
testcase_42 AC 63 ms
6,940 KB
testcase_43 AC 67 ms
6,940 KB
testcase_44 AC 69 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

long long modpow(long long a,int n,long long mod){
  long long ret=1,t=a;
  for(int i=0;i<31;i++){
    if(n>>i&1)ret=ret*t%mod;
    t=t*t%mod;
  }
  return ret;
}

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N;
  cin>>N;
  vector<int>A(N);
  for(int &i:A)cin>>i;
  string S;
  cin>>S;
  vector<int>F(N*2+1);
  for(int i=0;i<=N*2;i++){
    F[i]=A[i%N]>A[(i+1)%N];
  }

  const int mod[4]={1000000007,1000000009,998244853,998244353};
  array<long long,4>inori={0ll,0ll,0ll,0ll},awase=inori,modkese;
  for(int i=0;i<4;i++)modkese[i]=modpow(2,N-1,mod[i]);
  for(int i=0;i<N-1;i++){
    for(int j=0;j<4;j++){
      inori[j]=(inori[j]*2+(S[i]=='>'?1:0))%mod[j];
    }
  }
  for(int i=0;i<N-1;i++){
    for(int j=0;j<4;j++){
      awase[j]=(awase[j]*2+F[i])%mod[j];
    }
  }
  for(int i=N-1;i<N*2;i++){
    if(inori==awase){
      cout<<i-N+1<<'\n';
      return 0;
    }
    for(int j=0;j<4;j++){
      awase[j]=(awase[j]*2+F[i])%mod[j];
      if(F[i-N+1])awase[j]=(awase[j]-modkese[j]+mod[j])%mod[j];
    }
  }
  if(inori==awase){
      cout<<N-1<<'\n';
      return 0;
    }
  cout<<"-1\n";
}
0