Submission #1106171

#TimeUsernameProblemLanguageResultExecution timeMemory
1106171icebearPalindromes (APIO14_palindrome)C++17
47 / 100
1065 ms4272 KiB
// ~~ icebear ~~ #include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int, int> ii; typedef pair<ii, int> iii; #define FOR(i,a,b) for(int i=(a); i<=(b); ++i) #define FORR(i,a,b) for(int i=(a); i>=(b); --i) #define rep(i, n) for(int i=0; i<(n); ++i) #define red(i, n) for(int i=(n)-1; i>=0; --i) #define mp make_pair #define pb push_back #define fi first #define se second #define all(x) x.begin(), x.end() #define task "icebearat" const int MOD = 1e9 + 7; const int inf = 1e9 + 27092008; const ll LLinf = 1e18 + 27092008; const int base = 311; const int N = 3e5 + 5; int n, Hash[N], Pow[N], suffHash[N]; string s; unordered_map<int, int> cnt; int getHash(int l, int r) { return (Hash[r] - 1ll * Hash[l - 1] * Pow[r - l + 1] % MOD + MOD) % MOD; } int getSuff(int l, int r) { return (suffHash[l] - 1ll * suffHash[r + 1] * Pow[r - l + 1] % MOD + MOD) % MOD; } void solve() { cin >> s; n = (int)s.size(); s = " " + s; Pow[0] = 1; FOR(i, 1, n) { Hash[i] = (1ll * Hash[i - 1] * base + s[i]) % MOD; Pow[i] = 1ll * Pow[i - 1] * base % MOD; } FORR(i, n, 1) suffHash[i] = (1ll * suffHash[i + 1] * base + s[i]) % MOD; int res = 0; FOR(len, 1, n) { cnt.clear(); int mx = 0; FOR(i, 1, n - len + 1) if (getHash(i, i + len - 1) == getSuff(i, i + len - 1)) mx = max(mx, ++cnt[getHash(i, i + len - 1)]); res = max(res, mx * len); } cout << res; } int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); if (fopen(task".inp", "r")){ freopen(task".inp", "r", stdin); freopen(task".out", "w", stdout); } int tc = 1; // cin >> tc; while(tc--) solve(); return 0; }

Compilation message (stderr)

palindrome.cpp: In function 'int main()':
palindrome.cpp:65:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   65 |         freopen(task".inp", "r", stdin);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
palindrome.cpp:66:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   66 |         freopen(task".out", "w", stdout);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...