結果

問題 No.1859 ><<<
ユーザー RaffRaff
提出日時 2022-03-23 10:42:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 1,978 bytes
コンパイル時間 1,768 ms
コンパイル使用メモリ 172,600 KB
実行使用メモリ 14,620 KB
最終ジャッジ日時 2024-10-11 08:11:36
合計ジャッジ時間 6,916 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 53 ms
14,448 KB
testcase_05 AC 51 ms
14,440 KB
testcase_06 AC 51 ms
14,580 KB
testcase_07 AC 50 ms
14,620 KB
testcase_08 AC 51 ms
14,576 KB
testcase_09 AC 48 ms
14,572 KB
testcase_10 AC 10 ms
5,248 KB
testcase_11 AC 35 ms
9,740 KB
testcase_12 AC 28 ms
8,820 KB
testcase_13 AC 17 ms
6,860 KB
testcase_14 AC 32 ms
10,220 KB
testcase_15 AC 45 ms
12,900 KB
testcase_16 AC 51 ms
13,696 KB
testcase_17 AC 36 ms
11,104 KB
testcase_18 AC 49 ms
13,600 KB
testcase_19 AC 35 ms
10,808 KB
testcase_20 AC 42 ms
13,220 KB
testcase_21 AC 47 ms
14,272 KB
testcase_22 AC 44 ms
13,800 KB
testcase_23 AC 41 ms
12,692 KB
testcase_24 AC 51 ms
14,040 KB
testcase_25 AC 50 ms
13,644 KB
testcase_26 AC 44 ms
12,988 KB
testcase_27 AC 52 ms
13,548 KB
testcase_28 AC 45 ms
13,180 KB
testcase_29 AC 47 ms
13,184 KB
testcase_30 AC 45 ms
12,776 KB
testcase_31 AC 45 ms
12,780 KB
testcase_32 AC 52 ms
14,060 KB
testcase_33 AC 45 ms
12,968 KB
testcase_34 AC 45 ms
13,396 KB
testcase_35 AC 52 ms
14,232 KB
testcase_36 AC 51 ms
14,288 KB
testcase_37 AC 47 ms
12,960 KB
testcase_38 AC 53 ms
14,484 KB
testcase_39 AC 51 ms
14,372 KB
testcase_40 AC 48 ms
14,008 KB
testcase_41 AC 50 ms
14,336 KB
testcase_42 AC 44 ms
12,716 KB
testcase_43 AC 49 ms
13,620 KB
testcase_44 AC 49 ms
13,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define rep(i, n) for(int i = 0; i < n; ++i)
#define REP(i, x, n) for(int i = (x); i < n; ++i)
#define rrep(i, n) for(int i = n - 1; i >= 0; --i)
#define RREP(i, x, n) for(int i = n - 1; i >= (x); --i)
#define all(x) x.begin(), x.end()
using ll = long long;
using vll = vector<ll>;
using vvll = vector<vll>;
using vi = vector<int>;
using vvi = vector<vi>;
using vvvi = vector<vvi>;
using vvvvi = vector<vvvi>;
using vb = vector<bool>;
using vvb = vector<vb>;
using P = pair<int, int>;
using Pll = pair<ll, ll>;
using vp = vector<P>;
using vvp = vector<vp>;

template <class T> bool chmax(T &a, const T &b) {
    if(a < b) {
        a = b;
        return 1;
    }
    return 0;
}
template <class T> bool chmin(T &a, const T &b) {
    if(b < a) {
        a = b;
        return 1;
    }
    return 0;
}

template <typename T> vector<int> Zalgorithm(vector<T> S) {
    int n = S.size();
    vector<int> arr(n);
    arr[0] = n;
    int i = 1, j = 0;
    while(i < n) {
        while(i + j < n && S[j] == S[i + j]) ++j;
        arr[i] = j;
        if(j == 0) {
            ++i;
            continue;
        }
        int k = 1;
        while(i + k < n && k + arr[k] < j) {
            arr[i + k] = arr[k];
            ++k;
        }
        i += k;
        j -= k;
    }
    return arr;
}

void solve() {
    int n;
    cin >> n;
    vi a(n);
    rep(i, n) cin >> a[i];
    string s;
    cin >> s;

    string t;
    rep(i, 2 * n - 2) t += (a[(i) % n] < a[(i + 1) % n] ? '<' : '>');

    vector<char> u;
    for(char &e : s) u.push_back(e);
    for(char &e : t) u.push_back(e);
    for(char &e : t) u.push_back(e);

    --n;
    auto z = Zalgorithm(u);

    REP(i, n, 3 * n) {
        if(z[i] >= n) {
            cout << i - n << endl;
            return;
        }
    }
    cout << -1 << endl;
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);

    int t = 1;
    // cin >> t;

    while(t--) solve();

    return 0;
}
0