답안 #1095070

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1095070 2024-10-01T08:23:28 Z vjudge1 Palindromic Partitions (CEOI17_palindromic) C++17
0 / 100
0 ms 348 KB
#include<bits/stdc++.h>
using namespace std;
#define task "a"
#define se second
#define fi first
#define ll long long
#define ii pair<ll, ll>
const long mxN = 2e5 + 7, MOD = 1e9 + 7;

int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    cout.tie(NULL);
    //freopen(task".INP", "r", stdin);
    //freopen(task".OUT", "w", stdout);

    int tst;
    cin >> tst;
    while (tst--)
    {
        string s;
        cin >> s;

        int l = 0, r = s.size() - 1, ans = 0;
        ll lt = 0, rt = 0, base = 1;
        while (1)
        {
            lt = (lt * 29 + s[l] - 'a' + 1) % MOD;
            rt = (base * (s[r] - 'a' + 1) + rt) % MOD;
            base = base * 29 % MOD;

            if (lt == rt)
            {
                ans++;
                lt = rt = 0;
                base = 1;

                if (l >= r)
                    break;
                else
                    ans++;
            }

            l++;
            r--;
        }

        cout << ans << '\n';
    }
}

# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -