제출 #628572

#제출 시각아이디문제언어결과실행 시간메모리
628572a_aguiloPalindromic Partitions (CEOI17_palindromic)C++14
100 / 100
440 ms26772 KiB
#include<bits/stdc++.h>

using namespace std;

const int p = 31;
const long long m = 1e9 + 7;

long long int hashes[1000000];
long long int powers[1000000];
int n;

long long getHash(int start, int ending){
    if(start == 0) return hashes[ending];
    return ((hashes[ending] - (hashes[start - 1] * powers[ending - start+1])%m)%m + m)%m;
}
//aanbeana
int main(){
    int t;
    string s;
    cin >> t;
    while(t--){
        cin >> s;
        n = s.size();
        memset(hashes, 0, sizeof(hashes));
        memset(powers, 0, sizeof(powers));
        hashes[0] = s[0]-'a'+1;
        powers[0] = 1;
        for(int i = 1; i < s.size(); ++i){
            hashes[i] = (((__int128)hashes[i-1]*p)%m + (s[i]-'a' + 1))%m;
            powers[i] = ((__int128)powers[i-1]*p)%m;
        }
        int ans = 1;
        int MaxLeft = -1;
        int MaxRight = s.size();
        int left = 0; int right = s.size()-1;
        while(left < right){
            if(getHash(MaxLeft+1, left) == getHash(right, MaxRight-1)){
                ans+=2;
                MaxLeft = left;
                MaxRight = right;
            }
            left++;
            right--;
        }
        if(MaxLeft+1 == MaxRight)ans--;
        cout << ans << endl;;
    }
    return 0;
}

컴파일 시 표준 에러 (stderr) 메시지

palindromic.cpp: In function 'int main()':
palindromic.cpp:28:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   28 |         for(int i = 1; i < s.size(); ++i){
      |                        ~~^~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...