結果

問題 No.2162 Copy and Paste 2
ユーザー miscalcmiscalc
提出日時 2021-08-24 23:37:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,572 ms / 7,000 ms
コード長 963 bytes
コンパイル時間 3,115 ms
コンパイル使用メモリ 225,924 KB
実行使用メモリ 25,368 KB
最終ジャッジ日時 2024-04-24 12:56:24
合計ジャッジ時間 21,700 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 0 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 89 ms
15,388 KB
testcase_07 AC 93 ms
14,872 KB
testcase_08 AC 439 ms
22,808 KB
testcase_09 AC 309 ms
15,256 KB
testcase_10 AC 354 ms
14,748 KB
testcase_11 AC 509 ms
19,744 KB
testcase_12 AC 539 ms
17,308 KB
testcase_13 AC 865 ms
23,068 KB
testcase_14 AC 389 ms
16,244 KB
testcase_15 AC 443 ms
16,268 KB
testcase_16 AC 459 ms
16,412 KB
testcase_17 AC 1,101 ms
23,068 KB
testcase_18 AC 1,296 ms
24,988 KB
testcase_19 AC 1,219 ms
23,456 KB
testcase_20 AC 1,193 ms
23,200 KB
testcase_21 AC 623 ms
22,940 KB
testcase_22 AC 583 ms
23,068 KB
testcase_23 AC 31 ms
12,904 KB
testcase_24 AC 1,572 ms
25,244 KB
testcase_25 AC 1,494 ms
25,368 KB
testcase_26 AC 1,397 ms
25,248 KB
testcase_27 AC 1,501 ms
25,244 KB
testcase_28 AC 1,220 ms
19,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#include <atcoder/string>
#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 = z_algorithm(S);
  for (int i = 0; i < N; i++)
  {
    Z.at(i) = min(Z.at(i), i);
  }

  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