Submission #887388

# Submission time Handle Problem Language Result Execution time Memory
887388 2023-12-14T11:29:51 Z Kutan Palindromes (APIO14_palindrome) C++14
23 / 100
120 ms 131072 KB
// Cao Quang Hung
#include <cassert>
#include <cctype>
#include <cerrno>
#include <cfloat>
#include <ciso646>
#include <climits>
#include <clocale>
#include <cmath>
#include <csetjmp>
#include <csignal>
#include <cstdarg>
#include <cstddef>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <ctime>
#include <ccomplex>
#include <cfenv>
#include <cinttypes>
#include <cstdbool>
#include <cstdint>
#include <ctgmath>
#include <cwchar>
#include <cwctype>
#include <algorithm>
#include <bitset>
#include <complex>
#include <deque>
#include <exception>
#include <fstream>
#include <functional>
#include <iomanip>
#include <ios>
#include <iosfwd>
#include <iostream>
#include <istream>
#include <iterator>
#include <limits>
#include <list>
#include <locale>
#include <map>
#include <memory>
#include <new>
#include <numeric>
#include <ostream>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <stdexcept>
#include <streambuf>
#include <string>
#include <typeinfo>
#include <utility>
#include <valarray>
#include <vector>
#include <array>
#include <atomic>
#include <chrono>
#include <condition_variable>
#include <forward_list>
#include <future>
#include <initializer_list>
#include <mutex>
#include <random>
#include <ratio>
#include <regex>
#include <scoped_allocator>
#include <system_error>
#include <thread>
#include <tuple>
#include <typeindex>
#include <type_traits>
#include <unordered_map>
#include <unordered_set>

using namespace std;
#define pb push_back
#define eb emplace_back
#define mp make_pair
#define pii pair<int,int>
#define pll pair<long long , long long>
#define vi vector<int>
#define vpii vector<pii>
#define SZ(x) ((int)(x.size()))
#define fi first
#define se second
#define IN(x,y) ((y).find((x))!=(y).end())
#define ALL(t) t.begin(),t.end()
#define FOREACH(i,t) for (typeof(t.begin()) i=t.begin(); i!=t.end(); i++)
#define REP(i,a,b) for(int (i)=(a);(i)<=(b);++i)
#define REPD(i,a,b) for(int (i)=(a); (i)>=(b);--i)
#define FOR(i, n) for (int (i) = 0; (i) < (n); ++(i))
#define dem(x) __builtin_popcount(x)
#define Mask(x) (1LL << (x))
#define BIT(x, i) ((x) >> (i) & 1)
#define ln '\n'
#define io_faster ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
///mt19937 rnd(time(0));

const int INF = 1e9 , mod = 1e9 + 7;

template <class T1, class T2>
inline T1 mul(T1& x, const T2 &k){ return x = (1LL * x * k) % mod; }

template <class T1 , class T2>
inline T1 pw(T1 x, T2 k){T1 res = 1; for (; k ; k >>= 1){ if (k & 1) mul(res, x); mul(x, x); } return res;}

template <class T>
inline bool minimize(T &x, const T &y){ if (x > y){x = y; return 1;} return 0; }

template <class T>
inline bool maximize(T &x, const T &y){ if (x < y){x = y; return 1;} return 0; }

template <class T>
inline void add(T &x , const T &y){ if ((x += y) >= mod) x -= mod; }

template <class T>
inline T product (const T &x , const T &y) { return 1LL * x * y % mod; }

#define PROB "a"
void file(){
    if(fopen(PROB".inp", "r")){
        freopen(PROB".inp","r",stdin);
        freopen(PROB".out","w",stdout);
    }
}
void sinh_(){
//    srand(time(0));
//    freopen(PROB".inp" , "w" , stdout);
//    int n;
}

typedef long long ll;
typedef double db;
const int N = 3e5 + 5;

string s;
int n;

void readip(){
    cin >> s;
    n = SZ(s);
    s = ' ' + s;
}

namespace sub1 {
    vector<int> Hashup, Hashdown, Pow;
    const int base = 9907;


    int gethashup(int l, int r) {
        return (Hashup[r] + 1LL * mod * mod - 1LL * Hashup[l - 1] * Pow[r - l + 1]) % mod;
    }

    int gethashdown(int l, int r) {
        return (Hashdown[l] + 1LL * mod * mod - 1LL * Hashdown[r + 1] * Pow[r - l + 1]) % mod;
    }


    void solve() {
        Hashup.assign(n + 2, 0);
        Hashdown.assign(n + 2, 0);
        Pow.assign(n + 2, 0);
        Pow[0] = 1;
        REP(i, 1, n) Pow[i] = product(Pow[i - 1], base);

        Hashup[0] = 0;
        REP(i, 1, n) Hashup[i] = (1LL * Hashup[i - 1] * base + s[i] - 'a' + 1) % mod;
        Hashdown[n + 1] = 0;
        REPD(i, n, 1) Hashdown[i] = (1LL * Hashdown[i + 1] * base + s[i] - 'a' + 1) % mod;

        vpii v;
        REP(i, 1, n) REP(j, i, n) { 
            int hashlef = gethashup(i, j);
            if (gethashdown(i, j) == hashlef) 
                v.eb(hashlef, j - i + 1);
        }
        sort(ALL(v));
        ll res = 0;
        FOR(i, v.size()) {
            int j = i;
            while(j < v.size() && v[i] == v[j]) ++j; --j;
            maximize(res, 1LL * (j - i + 1) * v[i].second);
            i = j;
        }
        cout << res << ln;
    }       
};

void solve(){   
    if (n <= 1e4) {
        sub1::solve();
        return;
    }
}

int main(){
    sinh_();
    io_faster
    file();
    int t = 1;
//    cin >> t;
    while (t--){
        readip();
        solve();
    }
}

Compilation message

palindrome.cpp: In function 'void sub1::solve()':
palindrome.cpp:92:28: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
   92 | #define REP(i,a,b) for(int (i)=(a);(i)<=(b);++i)
      |                            ^
palindrome.cpp:167:9: note: in expansion of macro 'REP'
  167 |         REP(i, 1, n) Pow[i] = product(Pow[i - 1], base);
      |         ^~~
palindrome.cpp:92:28: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
   92 | #define REP(i,a,b) for(int (i)=(a);(i)<=(b);++i)
      |                            ^
palindrome.cpp:170:9: note: in expansion of macro 'REP'
  170 |         REP(i, 1, n) Hashup[i] = (1LL * Hashup[i - 1] * base + s[i] - 'a' + 1) % mod;
      |         ^~~
palindrome.cpp:93:29: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
   93 | #define REPD(i,a,b) for(int (i)=(a); (i)>=(b);--i)
      |                             ^
palindrome.cpp:172:9: note: in expansion of macro 'REPD'
  172 |         REPD(i, n, 1) Hashdown[i] = (1LL * Hashdown[i + 1] * base + s[i] - 'a' + 1) % mod;
      |         ^~~~
palindrome.cpp:92:28: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
   92 | #define REP(i,a,b) for(int (i)=(a);(i)<=(b);++i)
      |                            ^
palindrome.cpp:175:9: note: in expansion of macro 'REP'
  175 |         REP(i, 1, n) REP(j, i, n) {
      |         ^~~
palindrome.cpp:92:28: warning: unnecessary parentheses in declaration of 'j' [-Wparentheses]
   92 | #define REP(i,a,b) for(int (i)=(a);(i)<=(b);++i)
      |                            ^
palindrome.cpp:175:22: note: in expansion of macro 'REP'
  175 |         REP(i, 1, n) REP(j, i, n) {
      |                      ^~~
palindrome.cpp:94:28: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
   94 | #define FOR(i, n) for (int (i) = 0; (i) < (n); ++(i))
      |                            ^
palindrome.cpp:182:9: note: in expansion of macro 'FOR'
  182 |         FOR(i, v.size()) {
      |         ^~~
palindrome.cpp:94:41: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   94 | #define FOR(i, n) for (int (i) = 0; (i) < (n); ++(i))
      |                                     ~~~~^~~~~
palindrome.cpp:182:9: note: in expansion of macro 'FOR'
  182 |         FOR(i, v.size()) {
      |         ^~~
palindrome.cpp:184:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  184 |             while(j < v.size() && v[i] == v[j]) ++j; --j;
      |                   ~~^~~~~~~~~~
palindrome.cpp:184:13: warning: this 'while' clause does not guard... [-Wmisleading-indentation]
  184 |             while(j < v.size() && v[i] == v[j]) ++j; --j;
      |             ^~~~~
palindrome.cpp:184:54: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'while'
  184 |             while(j < v.size() && v[i] == v[j]) ++j; --j;
      |                                                      ^~
palindrome.cpp: In function 'void file()':
palindrome.cpp:125:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
  125 |         freopen(PROB".inp","r",stdin);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
palindrome.cpp:126:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
  126 |         freopen(PROB".out","w",stdout);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 0 ms 348 KB Output is correct
2 Correct 0 ms 348 KB Output is correct
3 Correct 0 ms 348 KB Output is correct
4 Correct 0 ms 348 KB Output is correct
5 Correct 0 ms 348 KB Output is correct
6 Correct 0 ms 348 KB Output is correct
7 Correct 0 ms 344 KB Output is correct
8 Correct 0 ms 348 KB Output is correct
9 Correct 0 ms 348 KB Output is correct
10 Correct 0 ms 348 KB Output is correct
11 Correct 0 ms 344 KB Output is correct
12 Correct 0 ms 348 KB Output is correct
13 Correct 1 ms 348 KB Output is correct
14 Correct 0 ms 348 KB Output is correct
15 Correct 0 ms 348 KB Output is correct
16 Correct 1 ms 348 KB Output is correct
17 Correct 1 ms 348 KB Output is correct
18 Correct 0 ms 348 KB Output is correct
19 Correct 1 ms 348 KB Output is correct
20 Correct 0 ms 348 KB Output is correct
21 Correct 1 ms 348 KB Output is correct
22 Correct 0 ms 348 KB Output is correct
23 Correct 1 ms 348 KB Output is correct
24 Correct 0 ms 348 KB Output is correct
25 Correct 1 ms 348 KB Output is correct
26 Correct 1 ms 348 KB Output is correct
27 Correct 0 ms 456 KB Output is correct
28 Correct 0 ms 348 KB Output is correct
29 Correct 1 ms 344 KB Output is correct
30 Correct 1 ms 348 KB Output is correct
31 Correct 0 ms 348 KB Output is correct
32 Correct 0 ms 348 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 20 ms 2516 KB Output is correct
2 Correct 10 ms 1496 KB Output is correct
3 Correct 34 ms 6096 KB Output is correct
4 Correct 4 ms 860 KB Output is correct
5 Correct 34 ms 5692 KB Output is correct
6 Correct 33 ms 5840 KB Output is correct
7 Correct 3 ms 348 KB Output is correct
8 Correct 18 ms 2548 KB Output is correct
9 Correct 4 ms 604 KB Output is correct
10 Correct 3 ms 348 KB Output is correct
11 Correct 2 ms 348 KB Output is correct
12 Correct 3 ms 348 KB Output is correct
# Verdict Execution time Memory Grader output
1 Runtime error 120 ms 131072 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 600 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 1448 KB Output isn't correct
2 Halted 0 ms 0 KB -