結果

問題 No.2162 Copy and Paste 2
ユーザー miscalcmiscalc
提出日時 2021-08-28 02:49:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,054 bytes
コンパイル時間 2,669 ms
コンパイル使用メモリ 217,184 KB
実行使用メモリ 31,932 KB
最終ジャッジ日時 2024-11-06 21:07:46
合計ジャッジ時間 30,653 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,636 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 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 100 ms
15,292 KB
testcase_07 AC 103 ms
14,848 KB
testcase_08 AC 533 ms
22,860 KB
testcase_09 AC 348 ms
15,180 KB
testcase_10 AC 387 ms
14,720 KB
testcase_11 AC 590 ms
19,768 KB
testcase_12 AC 608 ms
17,088 KB
testcase_13 AC 1,022 ms
22,844 KB
testcase_14 AC 437 ms
16,148 KB
testcase_15 AC 499 ms
15,952 KB
testcase_16 AC 492 ms
16,288 KB
testcase_17 AC 1,744 ms
22,796 KB
testcase_18 AC 5,298 ms
25,040 KB
testcase_19 AC 3,209 ms
23,516 KB
testcase_20 AC 2,087 ms
23,256 KB
testcase_21 AC 721 ms
22,952 KB
testcase_22 AC 684 ms
23,024 KB
testcase_23 AC 29 ms
12,880 KB
testcase_24 TLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#include <atcoder/lazysegtree>
using namespace atcoder;

int mymax(int a, int b)
{
  return max(a, b);
}

int e()
{
  return 0;
}

int main()
{
  string S;
  cin >> S;
  int N = S.size();

  vector<int> Z(N);
  for (int i = 0; i < N; i++)
  {
    int j = 0;
    while (j < i && i + j < N && S[j] == S[i + j])
    {
      j++;
    }
    Z[i] = j;
    //cerr << i << " " << j << endl;
  }

  vector<vector<int>> invZ(N);
  set<int> st;
  for (int i = 0; i < N; i++)
  {
    if (Z.at(i) >= 2)
    {
      invZ.at(Z.at(i)).push_back(i);
      st.emplace(i);
    }
  }
  st.emplace(N + 1);

  lazy_segtree<int, mymax, e, int, mymax, mymax, e> dp(N + 1);
  for (int j = 2; j < N; j++)
  {
    int cnt = dp.get(j) + j - 2;
    int i = *st.begin() + j;
    while (i < N + 1)
    {
      dp.apply(i, N + 1, cnt);

      cnt += j - 1;
      i = *st.lower_bound(i) + j;
    }

    for (auto ii : invZ.at(j))
    {
      st.erase(ii);
    }
  }

  int ans = N - dp.get(N);
  cout << ans << endl;
}
0