結果

問題 No.1859 ><<<
ユーザー 👑 emthrmemthrm
提出日時 2022-02-26 22:56:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 2,877 bytes
コンパイル時間 2,047 ms
コンパイル使用メモリ 206,604 KB
実行使用メモリ 20,192 KB
最終ジャッジ日時 2024-07-04 19:48:47
合計ジャッジ時間 7,879 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 76 ms
20,064 KB
testcase_05 AC 74 ms
20,192 KB
testcase_06 AC 75 ms
20,188 KB
testcase_07 AC 75 ms
20,188 KB
testcase_08 AC 78 ms
20,184 KB
testcase_09 AC 76 ms
20,188 KB
testcase_10 AC 13 ms
6,144 KB
testcase_11 AC 45 ms
13,056 KB
testcase_12 AC 40 ms
11,816 KB
testcase_13 AC 23 ms
8,448 KB
testcase_14 AC 46 ms
13,876 KB
testcase_15 AC 63 ms
17,836 KB
testcase_16 AC 69 ms
18,816 KB
testcase_17 AC 51 ms
15,372 KB
testcase_18 AC 66 ms
18,672 KB
testcase_19 AC 50 ms
14,700 KB
testcase_20 AC 66 ms
17,972 KB
testcase_21 AC 75 ms
19,892 KB
testcase_22 AC 68 ms
19,208 KB
testcase_23 AC 60 ms
17,440 KB
testcase_24 AC 69 ms
19,496 KB
testcase_25 AC 72 ms
18,944 KB
testcase_26 AC 66 ms
18,116 KB
testcase_27 AC 70 ms
18,940 KB
testcase_28 AC 68 ms
18,528 KB
testcase_29 AC 69 ms
18,132 KB
testcase_30 AC 65 ms
17,448 KB
testcase_31 AC 65 ms
17,444 KB
testcase_32 AC 74 ms
19,764 KB
testcase_33 AC 65 ms
17,828 KB
testcase_34 AC 73 ms
18,536 KB
testcase_35 AC 80 ms
20,036 KB
testcase_36 AC 75 ms
19,904 KB
testcase_37 AC 68 ms
17,972 KB
testcase_38 AC 82 ms
20,180 KB
testcase_39 AC 75 ms
20,032 KB
testcase_40 AC 72 ms
19,364 KB
testcase_41 AC 75 ms
20,132 KB
testcase_42 AC 64 ms
17,568 KB
testcase_43 AC 72 ms
18,948 KB
testcase_44 AC 75 ms
19,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
using namespace std;
#define FOR(i,m,n) for(int i=(m);i<(n);++i)
#define REP(i,n) FOR(i,0,n)
#define ALL(v) (v).begin(),(v).end()
using ll = long long;
constexpr int INF = 0x3f3f3f3f;
constexpr long long LINF = 0x3f3f3f3f3f3f3f3fLL;
constexpr double EPS = 1e-8;
constexpr int MOD = 1000000007;
// constexpr int MOD = 998244353;
constexpr int DY4[]{1, 0, -1, 0}, DX4[]{0, -1, 0, 1};
constexpr int DY8[]{1, 1, 0, -1, -1, -1, 0, 1};
constexpr int DX8[]{0, -1, -1, -1, 0, 1, 1, 1};
template <typename T, typename U>
inline bool chmax(T& a, U b) { return a < b ? (a = b, true) : false; }
template <typename T, typename U>
inline bool chmin(T& a, U b) { return a > b ? (a = b, true) : false; }
struct IOSetup {
  IOSetup() {
    std::cin.tie(nullptr);
    std::ios_base::sync_with_stdio(false);
    std::cout << fixed << setprecision(20);
  }
} iosetup;

template <typename T = std::string>
struct RollingHash {
  T s;

  explicit RollingHash(const T& s, const int base = 10007,
                       const int mod = 1000000007)
      : base(base), mod(mod), hash({0}), power({1}) {
    const int n = s.size();
    this->s.reserve(n);
    hash.reserve(n + 1);
    power.reserve(n + 1);
    add(s);
  }

  long long get(const int left, const int right) const {
    const long long res =
        hash[right] - hash[left] * power[right - left] % mod;
    return res < 0 ? res + mod : res;
  }

  void add(const T& t) {
    for (const auto c : t) {
      s.push_back(c);
      const int hash_nxt = (hash.back() * base % mod + c) % mod;
      hash.emplace_back(hash_nxt);
      const int power_nxt = power.back() * base % mod;
      power.emplace_back(power_nxt);
    }
  }

  int longest_common_prefix(const int i, const int j) const {
    const int n = s.size();
    int lb = 0, ub = n + 1 - std::max(i, j);
    while (ub - lb > 1) {
      const int mid = (lb + ub) >> 1;
      (get(i, i + mid) == get(j, j + mid) ? lb : ub) = mid;
    }
    return lb;
  }

  template <typename U>
  int longest_common_prefix(const RollingHash<U>& t,
                            const int i, const int j) const {
    int lb = 0;
    int ub = std::min(static_cast<int>(s.size()) - i,
                      static_cast<int>(t.str.size()) - j)
             + 1;
    while (ub - lb > 1) {
      const int mid = (lb + ub) >> 1;
      (get(i, i + mid) == t.get(j, j + mid) ? lb : ub) = mid;
    }
    return lb;
  }

 private:
  const int base, mod;
  std::vector<long long> hash, power;
};

int main() {
  int n; cin >> n;
  vector<int> a(n); REP(i, n) cin >> a[i];
  string t = "";
  FOR(i, 1, n * 2) t += (a[(i - 1) % n] < a[i % n] ? '<' : '>');
  string s; cin >> s;
  RollingHash rh_t(t), rh_s(s);
  REP(i, n) {
    if (rh_t.get(i, i + n - 1) == rh_s.get(0, n - 1)) {
      cout << i << '\n';
      return 0;
    }
  }
  cout << "-1\n";
  return 0;
}
0