답안 #882080

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
882080 2023-12-02T14:49:29 Z DucNguyen2007 Necklace (Subtask 4) (BOI19_necklace4) C++14
15 / 15
162 ms 1116 KB
#include <bits/stdc++.h>
using namespace std;
 
#define fast ios::sync_with_stdio(0);cin.tie(0);
#define s second
#define f first
typedef long long ll;
const ll MOD = 1e9+9;
const ll P = 31;
const ll LOGN = 20; 
const ll MAXN = 1e5 + 5;
 
int ans[3], n, m;
int p1[MAXN], p2[MAXN];
void compute(string s, int p_array[]) {
	int q = s.length();
	p_array[0] = 0;
	for (int i = 1; i < q; i++) {
		int j = p_array[i-1];
		while (j && s[i] != s[j])
			j = p_array[j-1];
		if (s[i] == s[j])
			j++;
		p_array[i] = j;
	}
}
 
void solve(string s, string t, bool rev) {
	string t_rev = t;
	reverse(t_rev.begin(), t_rev.end());
	for (int i = 0; i < n; i++) {
		string l_up = s.substr(0, i), r_up = s.substr(i, n);
 
		reverse(l_up.begin(), l_up.end());
		string for_a = l_up + "#" + t;
		string for_b = r_up + "#" + t_rev;
		compute(for_a, p1);
		compute(for_b, p2);
 
		for (int j = 1; j <= m; j++) {
			int a = p1[i+j];
			int b = p2[n+m-i-j];
			if (a + b > ans[0]) {
				ans[0] = a + b;
				ans[1] = i - p1[i+j];
				ans[2] = (rev ? m - j - b : j - a);
			}
		}
	}
}
 
int main() {
	fast
	string s, t;
	cin >> s >> t;
	n = s.size(), m = t.size();
 
	solve(s, t, 0);
	reverse(t.begin(), t.end());
	solve(s, t, 1);
	cout << ans[0] << "\n" << ans[1] << " " << ans[2] << "\n";
}
# 결과 실행 시간 메모리 Grader output
1 Correct 140 ms 856 KB Output is correct
2 Correct 98 ms 604 KB Output is correct
3 Correct 162 ms 592 KB Output is correct
4 Correct 110 ms 604 KB Output is correct
5 Correct 64 ms 1116 KB Output is correct
6 Correct 76 ms 608 KB Output is correct
7 Correct 94 ms 600 KB Output is correct
8 Correct 118 ms 608 KB Output is correct
9 Correct 119 ms 600 KB Output is correct