Submission #901622

# Submission time Handle Problem Language Result Execution time Memory
901622 2024-01-09T17:37:17 Z alexandru_onut Palindromes (APIO14_palindrome) C++14
Compilation error
0 ms 0 KB
#include <bits/stdc++.h>

using namespace std;

string A;

int zF (const string &str)
{
    string aux = str + "#" + A;
    int N = aux.size();
    vector <int> z (N , 0);
    int L = 0 , R = 0 , ans = 0;
    for(int i = 0; i < N; ++i)
    {
        if(i < R)
            z[i] = min(z[i - L] , R - i);
        while(i + z[i] < N && aux[z[i]] == aux[i + z[i]])
            ++z[i];
        if(i + z[i] > R)
        {
            R = i + z[i];
            L = i;
        }
        ans += (z[i] == str.size());
    }
    return ans;
}

long long Manacher (const string &str)
{
    string S;
    vector <int> dp;
    S.push_back('#');
    for(int i = 0; i < (int) str.size(); ++i)
    {
        S.push_back(str[i]);
        S.push_back('#');
    }
    int N = S.size();
    dp = vector <int> (N , 0);
    int C = 0 , R = 0;
    for(int i = 0; i < N; ++i)
    {
        int M = 2 * C - i;
        if(i < R)
            dp[i] = min(dp[M] , R - i);
        int a = i + (dp[i] + 1);
        int b = i - (dp[i] + 1);
        while(b >= 0 && a < N && S[a] == S[b])
            ++dp[i] , ++a , --b;
        if(i + dp[i] > R)
        {
            C = i;
            R = i + dp[i];
        }
    }
    int p = 0;
    string ans;
    unordered_map <string , bool> use;
    long long rasp = 0;
    for(int i = 1; i < (int) S.size(); ++i)
    {
        string ans;
        for(int j = i - dp[i]; j <= i + dp[i]; ++j)
            if(S[j] != '#')
                ans.push_back(S[j]);
        int nrAp = zF (ans);
        if(!use[ans])
            rasp = max(rasp , 1LL * nrAp * ans.size()) , use[ans] = 1;
    }
    return rasp;
}

int main()
{
    ios_base :: sync_with_stdio(false); cin.tie(nullptr);
    freopen ("palindrome.in" , "r" , stdin);
    freopen ("palindrome.out" , "w" , stdout);
    int p = 0;
    vector <int> dp;
    cin >> A;
    cout << Manacher(A);
}

Compilation message

palindrome.cpp: In function 'int zF(const string&)':
palindrome.cpp:24:22: warning: comparison of integer expressions of different signedness: '__gnu_cxx::__alloc_traits<std::allocator<int>, int>::value_type' {aka 'int'} and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   24 |         ans += (z[i] == str.size());
palindrome.cpp: In function 'long long int Manacher(const string&)':
palindrome.cpp:69:54: error: no matching function for call to 'max(long long int&, long long unsigned int)'
   69 |             rasp = max(rasp , 1LL * nrAp * ans.size()) , use[ans] = 1;
      |                                                      ^
In file included from /usr/include/c++/10/bits/char_traits.h:39,
                 from /usr/include/c++/10/ios:40,
                 from /usr/include/c++/10/istream:38,
                 from /usr/include/c++/10/sstream:38,
                 from /usr/include/c++/10/complex:45,
                 from /usr/include/c++/10/ccomplex:39,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:54,
                 from palindrome.cpp:1:
/usr/include/c++/10/bits/stl_algobase.h:254:5: note: candidate: 'template<class _Tp> constexpr const _Tp& std::max(const _Tp&, const _Tp&)'
  254 |     max(const _Tp& __a, const _Tp& __b)
      |     ^~~
/usr/include/c++/10/bits/stl_algobase.h:254:5: note:   template argument deduction/substitution failed:
palindrome.cpp:69:54: note:   deduced conflicting types for parameter 'const _Tp' ('long long int' and 'long long unsigned int')
   69 |             rasp = max(rasp , 1LL * nrAp * ans.size()) , use[ans] = 1;
      |                                                      ^
In file included from /usr/include/c++/10/bits/char_traits.h:39,
                 from /usr/include/c++/10/ios:40,
                 from /usr/include/c++/10/istream:38,
                 from /usr/include/c++/10/sstream:38,
                 from /usr/include/c++/10/complex:45,
                 from /usr/include/c++/10/ccomplex:39,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:54,
                 from palindrome.cpp:1:
/usr/include/c++/10/bits/stl_algobase.h:300:5: note: candidate: 'template<class _Tp, class _Compare> constexpr const _Tp& std::max(const _Tp&, const _Tp&, _Compare)'
  300 |     max(const _Tp& __a, const _Tp& __b, _Compare __comp)
      |     ^~~
/usr/include/c++/10/bits/stl_algobase.h:300:5: note:   template argument deduction/substitution failed:
palindrome.cpp:69:54: note:   deduced conflicting types for parameter 'const _Tp' ('long long int' and 'long long unsigned int')
   69 |             rasp = max(rasp , 1LL * nrAp * ans.size()) , use[ans] = 1;
      |                                                      ^
In file included from /usr/include/c++/10/algorithm:62,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:65,
                 from palindrome.cpp:1:
/usr/include/c++/10/bits/stl_algo.h:3480:5: note: candidate: 'template<class _Tp> constexpr _Tp std::max(std::initializer_list<_Tp>)'
 3480 |     max(initializer_list<_Tp> __l)
      |     ^~~
/usr/include/c++/10/bits/stl_algo.h:3480:5: note:   template argument deduction/substitution failed:
palindrome.cpp:69:54: note:   mismatched types 'std::initializer_list<_Tp>' and 'long long int'
   69 |             rasp = max(rasp , 1LL * nrAp * ans.size()) , use[ans] = 1;
      |                                                      ^
In file included from /usr/include/c++/10/algorithm:62,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:65,
                 from palindrome.cpp:1:
/usr/include/c++/10/bits/stl_algo.h:3486:5: note: candidate: 'template<class _Tp, class _Compare> constexpr _Tp std::max(std::initializer_list<_Tp>, _Compare)'
 3486 |     max(initializer_list<_Tp> __l, _Compare __comp)
      |     ^~~
/usr/include/c++/10/bits/stl_algo.h:3486:5: note:   template argument deduction/substitution failed:
palindrome.cpp:69:54: note:   mismatched types 'std::initializer_list<_Tp>' and 'long long int'
   69 |             rasp = max(rasp , 1LL * nrAp * ans.size()) , use[ans] = 1;
      |                                                      ^
palindrome.cpp:57:9: warning: unused variable 'p' [-Wunused-variable]
   57 |     int p = 0;
      |         ^
palindrome.cpp: In function 'int main()':
palindrome.cpp:79:9: warning: unused variable 'p' [-Wunused-variable]
   79 |     int p = 0;
      |         ^
palindrome.cpp:77:13: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   77 |     freopen ("palindrome.in" , "r" , stdin);
      |     ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
palindrome.cpp:78:13: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   78 |     freopen ("palindrome.out" , "w" , stdout);
      |     ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~