# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
40030 | funcsr | 구간 성분 (KOI15_interval) | C++14 | 237 ms | 15440 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <cstdio>
#include <iostream>
#include <algorithm>
#include <string>
#include <cstring>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <cmath>
#include <iomanip>
#include <cassert>
#include <bitset>
using namespace std;
typedef pair<int, int> P;
#define rep(i, n) for (int i=0; i<(n); i++)
#define all(c) (c).begin(), (c).end()
#define uniq(c) c.erase(unique(all(c)), (c).end())
#define index(xs, x) (int)(lower_bound(all(xs), x) - xs.begin())
#define _1 first
#define _2 second
#define pb push_back
#define INF 1145141919
#define MOD (1000000009LL*1000000007LL)
const int B = 2111;
vector<long long> mp[1501];
string S, T;
long long pB[26];
signed main() {
ios::sync_with_stdio(false); cin.tie(0);
pB[0] = 1;
for (int i=1; i<26; i++) pB[i] = (1LL*B*pB[i-1]) % MOD;
cin >> S >> T;
rep(l, S.size()) {
long long cnt = 0;
for (int r=l; r<S.size(); r++) {
cnt = (cnt + pB[S[r]-'a']) % MOD;
mp[r-l+1].pb(cnt);
}
}
rep(i, 1501) sort(all(mp[i])), uniq(mp[i]);
int m = 0;
rep(l, T.size()) {
long long cnt = 0;
for (int r=l; r<T.size(); r++) {
cnt = (cnt + pB[T[r]-'a']) % MOD;
if (binary_search(all(mp[r-l+1]), cnt)) m = max(m, r-l+1);
}
}
cout << m << "\n";
return 0;
}
Compilation message (stderr)
# | 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... |