이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#ifdef LOCAL
#define _GLIBCXX_DEBUG
#endif
#include <bits/stdc++.h>
#define ull unsigned long long
#define pll pair<ll, ll>
#define mp make_pair
#define ll long long
#define pb push_back
#define deb(x) cout << #x << " = " << x << endl
#define all(x) x.begin(), x.end()
#define ld long double
const ll mod1 = (ll)1e9 + 7;
const ll mod2 = (ll)1e9 + 9;
const ll BASE = 47;
const ll inf = (ll)1e18;
const long double e = 2.718281828459;
const long double pi = 3.141592653;
const ld EPS = 1e-9;
using namespace std;
template <class T>
istream& operator>>(istream &in, vector<T> &arr) {
for (T &cnt : arr) {
in >> cnt;
}
return in;
};
void solve() {
ll n;
cin >> n;
vector<string> arr(n);
cin >> arr;
ll LEN = 2000000 + 1;
vector<int> p1(LEN);
p1[0] = 1;
for (int i = 1; i < LEN; i++) {
p1[i] = ((ll)p1[i - 1] * BASE) % mod1;
}
vector<int> lens(n);
vector<vector<int>> hash1(n);
for (int i = 0 ; i < n; i++) {
hash1[i].resize(arr[i].size() + 1);
lens[i] = arr[i].size();
ll h1 = 0;
ll j = 1;
for (auto c : arr[i]) {
h1 = (h1 * BASE + c - 'A' + 1) % mod1;
hash1[i][j] = h1;
j++;
}
arr[i].clear();
}
map<int, int> dp;
int answer = 0;
for (int i = 0; i < n; i++) {
int mx = 0;
int len = 1;
while (len <= lens[i]) {
ll h1 = ((ll)hash1[i].back() - (ll)hash1[i][lens[i] - len] * p1[len]) % mod1;
if (h1 < 0) {
h1 += mod1;
}
if (h1 == hash1[i][len] and dp.count(h1) != 0) {
mx = max(mx, dp[h1]);
}
len++;
}
dp[hash1[i].back()] = mx + 1;
answer = max(answer, mx + 1);
}
cout << answer;
}
int main() {
#ifndef LOCAL
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
#else
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif
cout.precision(30);
ll seed = time(0);
//cerr << "Seed: " << seed << "\n";
srand(seed);
solve();
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |