Submission #606903

#TimeUsernameProblemLanguageResultExecution timeMemory
606903pakhomoveePalindromic Partitions (CEOI17_palindromic)C++17
0 / 100
0 ms212 KiB
#include <iostream> #include <vector> #include <string> using namespace std; void solve() { string s; cin >> s; int i = 0; int ans = 0; while (i <= s.size() / 2) { int len = 1; bool ok = false; for (; i + len <= s.size() / 2; ++len) { if (s.substr(i, len) == s.substr(s.size() - i - len, len)) { ok = true; break; } } i += len; ans += 1 + ok; } cout << ans << '\n'; } int32_t main() { ios_base::sync_with_stdio(false); cin.tie(0); int t; cin >> t; while (t--) solve(); }

Compilation message (stderr)

palindromic.cpp: In function 'void solve()':
palindromic.cpp:12:14: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   12 |     while (i <= s.size() / 2) {
      |            ~~^~~~~~~~~~~~~~~
palindromic.cpp:15:24: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   15 |         for (; i + len <= s.size() / 2; ++len) {
      |                ~~~~~~~~^~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...