Submission #167934

# Submission time Handle Problem Language Result Execution time Memory
167934 2019-12-10T21:42:18 Z Thuleanx Difference (POI11_roz) C++14
0 / 100
41 ms 3764 KB
#include <bits/stdc++.h>
using namespace std;

const int M = 2;
int n;
string s;

int best[M][M];
int invalid[M][M];
int update_local[M];
int update_global[M];

int main() {
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);

	cin>>n>>s;
	int ans = 0;

	for (int _ = 0; _ < 2; _++) {
		for (int i = 0; i < M; i++) {
			for (int j = 0; j < M; j++)
				best[i][j] = invalid[i][j] = -1e9;
			update_local[i] = update_global[i] = 0;
		}
		for (int i = 0; i < n; i++) {
			// [i][s[i]-'a']--
			update_global[s[i]-'a']--;
			// [s[i]-'a'][i]++
			update_local[s[i]-'a']++;

			for (int c = 0; c < M; c++) if (c != s[i]-'a') {
				// make things valid
				best[c][s[i]-'a'] = max(best[c][s[i]-'a'], invalid[c][s[i]-'a']);
				best[c][s[i]-'a'] = max(best[c][s[i]-'a'], -1-update_local[c]-update_global[s[i]-'a']);
				ans = max(ans, best[s[i]-'a'][c] + update_local[s[i]-'a'] + update_global[c]);

				// now new updates are invalid until activated
				invalid[s[i]-'a'][c] = max(invalid[s[i]-'a'][c], 1 - update_local[s[i]-'a'] - update_global[c]);
			}
		}
		cout << endl;
		reverse(begin(s), end(s));
	}


	cout << ans << endl;

	return 0;
}
# Verdict Execution time Memory Grader output
1 Correct 2 ms 376 KB Output is correct
2 Correct 2 ms 376 KB Output is correct
3 Correct 2 ms 376 KB Output is correct
4 Runtime error 2 ms 504 KB Execution killed with signal 11 (could be triggered by violating memory limits)
# Verdict Execution time Memory Grader output
1 Correct 2 ms 376 KB Output is correct
2 Runtime error 3 ms 504 KB Execution killed with signal 11 (could be triggered by violating memory limits)
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 3 ms 504 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 2 ms 504 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 3 ms 632 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 7 ms 1124 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 41 ms 3732 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 41 ms 3764 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 41 ms 3700 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 41 ms 3764 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -