結果

問題 No.1859 ><<<
ユーザー koba-e964koba-e964
提出日時 2023-04-01 01:30:07
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 2,353 bytes
コンパイル時間 12,736 ms
コンパイル使用メモリ 388,536 KB
実行使用メモリ 14,968 KB
最終ジャッジ日時 2024-09-23 03:28:43
合計ジャッジ時間 16,133 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 39 ms
14,768 KB
testcase_05 AC 36 ms
14,772 KB
testcase_06 AC 38 ms
14,696 KB
testcase_07 AC 34 ms
14,968 KB
testcase_08 AC 36 ms
14,788 KB
testcase_09 AC 36 ms
14,836 KB
testcase_10 AC 8 ms
6,940 KB
testcase_11 AC 25 ms
9,412 KB
testcase_12 AC 21 ms
8,372 KB
testcase_13 AC 12 ms
6,940 KB
testcase_14 AC 25 ms
9,972 KB
testcase_15 AC 33 ms
12,700 KB
testcase_16 AC 37 ms
13,788 KB
testcase_17 AC 27 ms
10,828 KB
testcase_18 AC 36 ms
13,556 KB
testcase_19 AC 26 ms
10,512 KB
testcase_20 AC 31 ms
12,996 KB
testcase_21 AC 33 ms
14,576 KB
testcase_22 AC 32 ms
13,764 KB
testcase_23 AC 30 ms
12,604 KB
testcase_24 AC 36 ms
14,364 KB
testcase_25 AC 36 ms
13,564 KB
testcase_26 AC 34 ms
13,056 KB
testcase_27 AC 39 ms
13,692 KB
testcase_28 AC 34 ms
13,472 KB
testcase_29 AC 36 ms
13,344 KB
testcase_30 AC 34 ms
12,832 KB
testcase_31 AC 33 ms
12,592 KB
testcase_32 AC 39 ms
14,340 KB
testcase_33 AC 33 ms
12,764 KB
testcase_34 AC 35 ms
13,380 KB
testcase_35 AC 36 ms
14,564 KB
testcase_36 AC 39 ms
14,500 KB
testcase_37 AC 35 ms
13,012 KB
testcase_38 AC 39 ms
14,632 KB
testcase_39 AC 38 ms
14,416 KB
testcase_40 AC 34 ms
14,212 KB
testcase_41 AC 35 ms
14,460 KB
testcase_42 AC 31 ms
12,504 KB
testcase_43 AC 34 ms
13,888 KB
testcase_44 AC 34 ms
13,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::cmp::*;
// https://qiita.com/tanakh/items/0ba42c7ca36cd29d0ac8
macro_rules! input {
    ($($r:tt)*) => {
        let stdin = std::io::stdin();
        let mut bytes = std::io::Read::bytes(std::io::BufReader::new(stdin.lock()));
        let mut next = move || -> String{
            bytes.by_ref().map(|r|r.unwrap() as char)
                .skip_while(|c|c.is_whitespace())
                .take_while(|c|!c.is_whitespace())
                .collect()
        };
        input_inner!{next, $($r)*}
    };
}

macro_rules! input_inner {
    ($next:expr) => {};
    ($next:expr,) => {};
    ($next:expr, $var:ident : $t:tt $($r:tt)*) => {
        let $var = read_value!($next, $t);
        input_inner!{$next $($r)*}
    };
}

macro_rules! read_value {
    ($next:expr, [ $t:tt ; $len:expr ]) => {
        (0..$len).map(|_| read_value!($next, $t)).collect::<Vec<_>>()
    };
    ($next:expr, chars) => {
        read_value!($next, String).chars().collect::<Vec<char>>()
    };
    ($next:expr, $t:ty) => ($next().parse::<$t>().expect("Parse error"));
}

// Z algorithm. Calculates an array a[i] = |lcp(s, &s[i..])|,
// where s is the given slice.
// If n = s.length(), the returned array has length n + 1.
// E.g. z_algorithm(b"ababa") = vec![5, 0, 3, 0, 1, 0]
// Reference: http://snuke.hatenablog.com/entry/2014/12/03/214243
// Verified by: ABC284-F (https://atcoder.jp/contests/abc284/submissions/38752029)
fn z_algorithm<T: PartialEq>(s: &[T]) -> Vec<usize> {
    let n = s.len();
    let mut ret = vec![0; n + 1];
    ret[0] = n;
    let mut i = 1; let mut j = 0;
    while i < n {
        while i + j < n && s[j] == s[i + j] { j += 1; }
        ret[i] = j;
        if j == 0 { i += 1; continue; }
        let mut k = 1;
        while i + k < n && k + ret[k] < j {
            ret[i + k] = ret[k];
            k += 1;
        }
        i += k; j -= k;
    }
    ret
}

fn main() {
    input! {
        n: usize,
        a: [usize; n],
        s: chars,
    }
    let mut s = s;
    for i in 0..2 * n {
        let c = if a[i % n] < a[(i + 1) % n] { '<' } else { '>' };
        s.push(c);
    }
    let z = z_algorithm(&s);
    const INF: i32 = 1 << 28;
    let mut ans = INF;
    for i in 0..n {
        if z[n - 1 + i] >= n - 1 {
            ans = min(ans, i as i32);
        }
    }
    println!("{}", if ans >= INF { -1 } else { ans });
}
0