結果

問題 No.1859 ><<<
ユーザー 👑 NachiaNachia
提出日時 2022-02-26 20:05:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 895 bytes
コンパイル時間 1,561 ms
コンパイル使用メモリ 98,920 KB
実行使用メモリ 15,388 KB
最終ジャッジ日時 2024-07-04 16:38:25
合計ジャッジ時間 5,071 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 48 ms
15,388 KB
testcase_05 AC 47 ms
15,388 KB
testcase_06 AC 46 ms
15,384 KB
testcase_07 AC 47 ms
15,388 KB
testcase_08 AC 47 ms
15,388 KB
testcase_09 AC 46 ms
15,260 KB
testcase_10 AC 9 ms
5,376 KB
testcase_11 AC 30 ms
10,160 KB
testcase_12 AC 26 ms
9,156 KB
testcase_13 AC 17 ms
6,928 KB
testcase_14 AC 33 ms
10,728 KB
testcase_15 AC 44 ms
13,628 KB
testcase_16 AC 48 ms
14,500 KB
testcase_17 AC 36 ms
11,480 KB
testcase_18 AC 47 ms
14,220 KB
testcase_19 AC 34 ms
11,188 KB
testcase_20 AC 41 ms
13,768 KB
testcase_21 AC 46 ms
15,088 KB
testcase_22 AC 44 ms
14,392 KB
testcase_23 AC 40 ms
13,352 KB
testcase_24 AC 45 ms
14,804 KB
testcase_25 AC 49 ms
14,236 KB
testcase_26 AC 45 ms
13,912 KB
testcase_27 AC 50 ms
14,244 KB
testcase_28 AC 48 ms
14,080 KB
testcase_29 AC 47 ms
13,932 KB
testcase_30 AC 45 ms
13,496 KB
testcase_31 AC 44 ms
13,612 KB
testcase_32 AC 52 ms
14,956 KB
testcase_33 AC 45 ms
13,620 KB
testcase_34 AC 47 ms
14,092 KB
testcase_35 AC 50 ms
14,976 KB
testcase_36 AC 50 ms
15,096 KB
testcase_37 AC 45 ms
13,576 KB
testcase_38 AC 51 ms
15,116 KB
testcase_39 AC 52 ms
15,100 KB
testcase_40 AC 44 ms
14,676 KB
testcase_41 AC 46 ms
15,104 KB
testcase_42 AC 39 ms
13,480 KB
testcase_43 AC 44 ms
14,512 KB
testcase_44 AC 44 ms
14,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <atcoder/string>
#include <atcoder/modint>
using namespace std;
using u64 = unsigned long long;
#define rep(i,n) for(int i=0; i<(int)(n); i++)
using modint = atcoder::static_modint<998244353>;




int main(){
    int N; cin >> N;
    vector<int> A(N); rep(i,N) cin >> A[i];
    string S; cin >> S;

    rep(i,N-1) A.push_back(A[i]);
    string G;
    rep(i,A.size()-1){
        if(A[i] < A[i+1]) G.push_back('<');
        else G.push_back('>');
    }

    auto Q = atcoder::z_algorithm(S+G);
    vector<int> goals;
    rep(i,N) if(Q[N-1+i] >= N-1) goals.push_back(i);

    if(goals.empty()){ cout << "-1\n"; return 0; }

    cout << goals[0] << endl;

    return 0;
}




struct ios_do_not_sync{
    ios_do_not_sync(){
        std::ios::sync_with_stdio(false);
        std::cin.tie(nullptr);
    }
} ios_do_not_sync_instance;
0