QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#99345 | #6299. Binary String | Hunster | WA | 2ms | 5640kb | C++14 | 1.7kb | 2023-04-21 22:05:55 | 2023-04-21 22:05:58 |
Judging History
answer
#include <bits/stdc++.h>
char str[10000005];
int n, next[10000005];
int main() {
int data_count;
scanf("%d", &data_count);
for (int data = 1; data <= data_count; data++) {
scanf("%s", str);
n = std::strlen(str);
[&] {
int cnt0 = 0;
for (int i = 0; i < n; i++) cnt0 += str[i] == '0';
if (cnt0 <= n / 2) {
std::reverse(str, str + n);
for (int i = 0; i < n; i++) str[i] = str[i] == '0' ? '1' : '0';
}
}();
int ans = [&] {
int max = 0;
for (int i = 0, now = 0; i < 5 * n; i++) {
int p = i % n;
if (str[p] == '1') now++;
else now--;
if (now < 0) now = 0;
max = std::max(max, now);
}
return max;
}() - 1;
for (int i = 0, now = 0, tag = 0; i < 5 * n; i++) {
int p = i % n;
if (str[p] == '1') now++;
if (now && !tag) {
str[p] = '1';
now--;
tag = 1;
}
else {
str[p] = '0';
tag = 0;
}
}
printf("%s\n", str);
for (int i = n - 1; i >= 0; i--) str[i + 1] = str[i];
next[1] = 0;
for (int i = 2, j = 0; i <= n; i++) {
while (j != 0 && str[j + 1] != str[i]) j = next[j];
if (str[j + 1] == str[i]) j++;
next[i] = j;
}
if (n % (n - next[n]) == 0) ans += n - next[n];
else ans += n;
printf("%d\n", ans);
}
return 0;
}
/*
3
1
001001
0001111
*/
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 2ms
memory: 5640kb
input:
3 1 001001 0001111
output:
0 0 001001 3 0100101 9
result:
wrong answer 1st numbers differ - expected: '1', found: '0'