Submission #1846715


Source Code Expand

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

string s, t;
int n, ans, m;
vector<int> s0, t0;

int main() {
	cin >> n >> s >> t;

	if (s == t) {
		cout << "0\n";
		return 0;
	}

	int ptr = n-1;
	for (int i = n-1; i >= 0; --i) {
		if (i > 0 && t[i] == t[i-1])
			continue;
		t0.push_back(i);
		if (ptr > i)
			ptr = i;
		while (ptr >= 0 && s[ptr] != t[i])
			ptr--;
		if (ptr == -1)
			continue;
		s0.push_back(ptr);
	}

	if (s0.size() != t0.size()) {
		cout << "-1\n";
		return 0;
	}

	reverse(s0.begin(), s0.end());
	reverse(t0.begin(), t0.end());
	m = s0.size();

	for (int i = 0; i < m; ++i) {
		if (s0[i] > t0[i]) {
			cout << "0\n";
			return 0;
		}
	}

	s0.push_back(n);
	ans = 0;

	for (int i = 0; i < m; ++i) {
		int lo = 0, hi = m-i;
		while (lo != hi) {
			int mid = (lo + hi)/2;
			if (s0[mid+i]-mid >= t0[i])
				hi = mid;
			else
				lo = mid+1;
		}

		ans = max(ans, lo);
	}

	cout << ans+1 << endl;
}

Submission Info

Submission Time
Task F - Shik and Copying String
User desert97
Language C++14 (GCC 5.4.1)
Score 1500
Code Size 1001 Byte
Status AC
Exec Time 147 ms
Memory 12920 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 1500 / 1500
Status
AC × 4
AC × 63
Set Name Test Cases
Sample example0.txt, example1.txt, example2.txt, example3.txt
All 000.txt, 001.txt, 002.txt, 003.txt, 004.txt, 005.txt, 006.txt, 007.txt, 008.txt, 009.txt, 010.txt, 011.txt, 012.txt, 013.txt, 014.txt, 015.txt, 016.txt, 017.txt, 018.txt, 019.txt, 020.txt, 021.txt, 022.txt, 023.txt, 024.txt, 025.txt, 026.txt, 027.txt, 028.txt, 029.txt, 030.txt, 031.txt, 032.txt, 033.txt, 034.txt, 035.txt, 036.txt, 037.txt, 038.txt, 039.txt, 040.txt, 041.txt, 042.txt, 043.txt, 044.txt, 045.txt, 046.txt, 047.txt, 048.txt, 049.txt, 050.txt, 051.txt, 052.txt, 053.txt, 054.txt, 055.txt, 056.txt, 057.txt, 058.txt, example0.txt, example1.txt, example2.txt, example3.txt
Case Name Status Exec Time Memory
000.txt AC 1 ms 256 KB
001.txt AC 1 ms 256 KB
002.txt AC 1 ms 256 KB
003.txt AC 1 ms 256 KB
004.txt AC 1 ms 256 KB
005.txt AC 1 ms 256 KB
006.txt AC 1 ms 256 KB
007.txt AC 1 ms 256 KB
008.txt AC 1 ms 256 KB
009.txt AC 1 ms 256 KB
010.txt AC 1 ms 256 KB
011.txt AC 1 ms 256 KB
012.txt AC 1 ms 256 KB
013.txt AC 1 ms 256 KB
014.txt AC 1 ms 256 KB
015.txt AC 1 ms 256 KB
016.txt AC 1 ms 256 KB
017.txt AC 1 ms 256 KB
018.txt AC 1 ms 256 KB
019.txt AC 1 ms 256 KB
020.txt AC 1 ms 256 KB
021.txt AC 1 ms 256 KB
022.txt AC 1 ms 256 KB
023.txt AC 1 ms 256 KB
024.txt AC 1 ms 256 KB
025.txt AC 64 ms 2692 KB
026.txt AC 128 ms 10868 KB
027.txt AC 97 ms 6908 KB
028.txt AC 108 ms 9464 KB
029.txt AC 110 ms 11896 KB
030.txt AC 72 ms 3592 KB
031.txt AC 73 ms 3592 KB
032.txt AC 73 ms 3464 KB
033.txt AC 73 ms 3464 KB
034.txt AC 73 ms 3464 KB
035.txt AC 73 ms 3464 KB
036.txt AC 72 ms 3464 KB
037.txt AC 72 ms 3336 KB
038.txt AC 72 ms 3336 KB
039.txt AC 71 ms 3080 KB
040.txt AC 97 ms 7036 KB
041.txt AC 105 ms 12280 KB
042.txt AC 116 ms 10356 KB
043.txt AC 129 ms 12408 KB
044.txt AC 146 ms 10868 KB
045.txt AC 147 ms 12024 KB
046.txt AC 147 ms 12664 KB
047.txt AC 146 ms 10868 KB
048.txt AC 144 ms 10868 KB
049.txt AC 142 ms 10868 KB
050.txt AC 80 ms 12920 KB
051.txt AC 80 ms 12024 KB
052.txt AC 76 ms 10748 KB
053.txt AC 106 ms 7172 KB
054.txt AC 108 ms 7036 KB
055.txt AC 108 ms 7168 KB
056.txt AC 108 ms 6908 KB
057.txt AC 112 ms 6908 KB
058.txt AC 106 ms 6908 KB
example0.txt AC 1 ms 256 KB
example1.txt AC 1 ms 256 KB
example2.txt AC 1 ms 256 KB
example3.txt AC 1 ms 256 KB