Submission #468949

# Submission time Handle Problem Language Result Execution time Memory
468949 2021-08-30T09:16:24 Z paga2004 Palindromic Partitions (CEOI17_palindromic) C++14
0 / 100
3 ms 588 KB
#include <bits/stdc++.h>

#ifdef LOCAL
#define dbg(x) cerr << "dgb: " << x << "\n";
#else
#define dbg(x)
#endif

#define int int_fast64_t

using namespace std;

string s;
int solve(int l, int r) {
  dbg("l " << l << " r " << r);
  if (l == r)
    return 1;
  int pl = l;
  int pr = r;
  while (s[pr] != s[pl]) {
    pr--;
    if (pr == pl)
      return 1;
  }
  int len = r - pr + 1;
  dbg("len " << len);
  dbg(s.substr(pl, len));
  dbg(s.substr(pr, len));
  if (s.substr(pl, len) != s.substr(pr, len)) {
    return 1;
  }
  return 2 + solve(pl + len, pr - 1);
}

signed main() {
  ios_base::sync_with_stdio(false);
  cin.tie(nullptr);

  int t;
  cin >> t;
  while (t--) {
    cin >> s;
    dbg(s);
    cout << solve(0, (int)s.size() - 1) << "\n";
  }
}
# Verdict Execution time Memory Grader output
1 Runtime error 3 ms 588 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 3 ms 588 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 3 ms 588 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 3 ms 588 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -