QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#115396 | #6628. Flip it and Stick it | hos_lyric# | 13 | 2ms | 4300kb | C++14 | 5.2kb | 2023-06-26 08:44:55 | 2024-05-31 14:12:59 |
Judging History
answer
#include <cassert>
#include <cmath>
#include <cstdint>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <algorithm>
#include <bitset>
#include <complex>
#include <deque>
#include <functional>
#include <iostream>
#include <limits>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <sstream>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <utility>
#include <vector>
using namespace std;
using Int = long long;
template <class T1, class T2> ostream &operator<<(ostream &os, const pair<T1, T2> &a) { return os << "(" << a.first << ", " << a.second << ")"; };
template <class T> ostream &operator<<(ostream &os, const vector<T> &as) { const int sz = as.size(); os << "["; for (int i = 0; i < sz; ++i) { if (i >= 256) { os << ", ..."; break; } if (i > 0) { os << ", "; } os << as[i]; } return os << "]"; }
template <class T> void pv(T a, T b) { for (T i = a; i != b; ++i) cerr << *i << " "; cerr << endl; }
template <class T> bool chmin(T &t, const T &f) { if (t > f) { t = f; return true; } return false; }
template <class T> bool chmax(T &t, const T &f) { if (t < f) { t = f; return true; } return false; }
int solve0(const string &S) {
const int cnt0 = count(S.begin(), S.end(), '0');
return cnt0 ? -1 : 0;
}
int solve00(const string &S) {
const int N = S.size();
const int cnt0 = count(S.begin(), S.end(), '0');
if (cnt0 > N - N / 2) {
return -1;
}
int ans = 0;
for (int i = 0; i < N - 1; ++i) if (S[i] == '0' && S[i + 1] == '0') {
++ans;
}
return ans;
}
int solve01(const string &S) {
const int N = S.size();
int ans = 0;
for (int i = 0, j = 0; i < N; i = j) {
for (; j < N && S[i] == S[j]; ++j) {}
if (S[i] == '1' && 0 < i) {
++ans;
}
}
return ans;
}
int solve000(const string &S) {
const int N = S.size();
const int cnt0 = count(S.begin(), S.end(), '0');
const int cnt1 = count(S.begin(), S.end(), '1');
if (cnt0 > N - N / 3) {
return -1;
}
int ans = 0;
int a = 0, b = 0;
for (int i = 0, j = 0; i < N; i = j) {
for (; j < N && S[i] == S[j]; ++j) {}
if (S[i] == '0') {
ans += (j - i - 1) / 2;
if (j - i == 1) {
++a;
} else if ((j - i) % 2 != 0) {
++b;
}
}
}
a -= b;
assert((cnt0 - a) % 2 == 0);
for (; a + (cnt0 - a) / 2 > cnt1 + 1; ) {
assert(a >= 2);
ans += 1;
a -= 2;
}
return ans;
}
int solve001(const string &S) {
const int N = S.size();
int ans = 0;
for (int i = 0; i + 3 <= N; ++i) if (S[i] == '0' && S[i + 1] == '0' && S[i + 2] == '1') {
++ans;
}
return ans;
}
int solve010(const string &S) {
return -2;
}
int solve(string T, string S) {
const int M = T.size();
const int N = S.size();
if (T == "011" || T == "100") {
reverse(T.begin(), T.end());
reverse(S.begin(), S.end());
}
if (T[0] == '1') {
for (int i = 0; i < M; ++i) T[i] ^= '0' ^ '1';
for (int i = 0; i < N; ++i) S[i] ^= '0' ^ '1';
}
if (false) {}
else if (T == "0") return solve0(S);
else if (T == "00") return solve00(S);
else if (T == "01") return solve01(S);
else if (T == "000") return solve000(S);
else if (T == "001") return solve001(S);
else if (T == "010") return solve010(S);
else assert(false);
}
void stress() {
for (int m = 1; m <= 3; ++m) for (int q = 0; q < 1 << m; ++q) {
string t(m, '?');
for (int i = 0; i < m; ++i) t[i] = "01"[q >> i & 1];
for (int n = 1; n <= 12; ++n) {
queue<int> que;
vector<int> dist(1 << n, -1);
for (int u = 0; u < 1 << n; ++u) {
string s(n, '?');
for (int i = 0; i < n; ++i) s[i] = "01"[u >> i & 1];
if (!~s.find(t)) {
dist[u] = 0;
que.push(u);
}
}
for (; !que.empty(); ) {
const int u = que.front();
que.pop();
string s(n, '?');
for (int i = 0; i < n; ++i) s[i] = "01"[u >> i & 1];
for (int l = 0; l < n; ++l) for (int r = l + 1; r <= n; ++r) {
reverse(s.begin() + l, s.begin() + r);
int v = 0;
for (int i = 0; i < n; ++i) v |= (s[i] - '0') << i;
if (!~dist[v]) {
dist[v] = dist[u] + 1;
que.push(v);
}
reverse(s.begin() + l, s.begin() + r);
}
}
if (t == "001") {
map<int, int> freq;
for (int u = 0; u < 1 << n; ++u) {
string s(n, '?');
for (int i = 0; i < n; ++i) s[i] = "01"[u >> i & 1];
++freq[dist[u]];
cout << t << " " << s << " " << dist[u] << endl;
}
cerr << n << ": "; pv(freq.begin(), freq.end());
}
for (int u = 0; u < 1 << n; ++u) {
string s(n, '?');
for (int i = 0; i < n; ++i) s[i] = "01"[u >> i & 1];
const int slv = solve(t, s);
if (slv != -2 && dist[u] != slv) {
cerr << t << " " << s << ": " << dist[u] << " " << slv << endl;
assert(false);
}
}
}
}
}
char S[200'010];
char T[3];
int main() {
#ifdef LOCAL
stress();
#endif
for (; ~scanf("%s%s", S, T); ) {
const int ans = solve(string(T), string(S));
printf("%d\n", ans);
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Subtask #1:
score: 1
Accepted
Test #1:
score: 1
Accepted
time: 0ms
memory: 3820kb
input:
1 0
output:
0
result:
ok 1 number(s): "0"
Test #2:
score: 0
Accepted
time: 0ms
memory: 3812kb
input:
1 1
output:
-1
result:
ok 1 number(s): "-1"
Test #3:
score: 0
Accepted
time: 0ms
memory: 4288kb
input:
000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000...
output:
-1
result:
ok 1 number(s): "-1"
Test #4:
score: 0
Accepted
time: 1ms
memory: 4000kb
input:
111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111...
output:
0
result:
ok 1 number(s): "0"
Test #5:
score: 0
Accepted
time: 1ms
memory: 4072kb
input:
101001000011101010101001001010010110111111001100110001111101111110110110101011111010001101111001101101010111101100000110001110001100000101111100000110111110001010101101101110001000011010000101000110110010110110100001110001111001010000000010000000101000000100110011101110100111111101111111111110010101...
output:
-1
result:
ok 1 number(s): "-1"
Test #6:
score: 0
Accepted
time: 1ms
memory: 4076kb
input:
000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000...
output:
0
result:
ok 1 number(s): "0"
Test #7:
score: 0
Accepted
time: 1ms
memory: 4036kb
input:
000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000...
output:
-1
result:
ok 1 number(s): "-1"
Subtask #2:
score: 3
Accepted
Test #8:
score: 3
Accepted
time: 0ms
memory: 3884kb
input:
0 01
output:
0
result:
ok 1 number(s): "0"
Test #9:
score: 0
Accepted
time: 0ms
memory: 3868kb
input:
0 10
output:
0
result:
ok 1 number(s): "0"
Test #10:
score: 0
Accepted
time: 0ms
memory: 3808kb
input:
01 01
output:
1
result:
ok 1 number(s): "1"
Test #11:
score: 0
Accepted
time: 0ms
memory: 3776kb
input:
01 10
output:
0
result:
ok 1 number(s): "0"
Test #12:
score: 0
Accepted
time: 0ms
memory: 3820kb
input:
1010101010 10
output:
5
result:
ok 1 number(s): "5"
Test #13:
score: 0
Accepted
time: 1ms
memory: 4060kb
input:
000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000...
output:
0
result:
ok 1 number(s): "0"
Test #14:
score: 0
Accepted
time: 0ms
memory: 3968kb
input:
100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000...
output:
0
result:
ok 1 number(s): "0"
Test #15:
score: 0
Accepted
time: 1ms
memory: 4064kb
input:
010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101...
output:
100000
result:
ok 1 number(s): "100000"
Test #16:
score: 0
Accepted
time: 2ms
memory: 3992kb
input:
000110111001011000010001010010010000010100100000011101010000001000110011100000011011100101110110000001000000000011001010001101001110011111001101110010001100000000010000000100100011000111010011100110011101100011000100011001010000010001001010010101100000100000010010110000000001011100100001000010100100...
output:
43860
result:
ok 1 number(s): "43860"
Test #17:
score: 0
Accepted
time: 2ms
memory: 4004kb
input:
111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111...
output:
44072
result:
ok 1 number(s): "44072"
Subtask #3:
score: 4
Accepted
Dependency #2:
100%
Accepted
Test #18:
score: 4
Accepted
time: 0ms
memory: 3812kb
input:
0 01
output:
0
result:
ok 1 number(s): "0"
Test #19:
score: 0
Accepted
time: 0ms
memory: 3808kb
input:
0 10
output:
0
result:
ok 1 number(s): "0"
Test #20:
score: 0
Accepted
time: 0ms
memory: 4092kb
input:
01 01
output:
1
result:
ok 1 number(s): "1"
Test #21:
score: 0
Accepted
time: 0ms
memory: 3796kb
input:
01 10
output:
0
result:
ok 1 number(s): "0"
Test #22:
score: 0
Accepted
time: 0ms
memory: 3808kb
input:
1 00
output:
0
result:
ok 1 number(s): "0"
Test #23:
score: 0
Accepted
time: 0ms
memory: 3800kb
input:
1 11
output:
0
result:
ok 1 number(s): "0"
Test #24:
score: 0
Accepted
time: 0ms
memory: 3808kb
input:
10 00
output:
0
result:
ok 1 number(s): "0"
Test #25:
score: 0
Accepted
time: 0ms
memory: 3748kb
input:
11 11
output:
-1
result:
ok 1 number(s): "-1"
Test #26:
score: 0
Accepted
time: 0ms
memory: 4104kb
input:
1010101010 10
output:
5
result:
ok 1 number(s): "5"
Test #27:
score: 0
Accepted
time: 1ms
memory: 4236kb
input:
000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000...
output:
0
result:
ok 1 number(s): "0"
Test #28:
score: 0
Accepted
time: 1ms
memory: 4008kb
input:
100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000...
output:
0
result:
ok 1 number(s): "0"
Test #29:
score: 0
Accepted
time: 1ms
memory: 3940kb
input:
010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101...
output:
100000
result:
ok 1 number(s): "100000"
Test #30:
score: 0
Accepted
time: 0ms
memory: 4020kb
input:
001000001110000110101100000001110000011000100001010001110010010101110110111000000000100000010110100000101110001000001010000000010101000010001000100010111010000110000001000001100110001010000010000101001001110100000011001000100100100101000101000100000100001001000000111000100101010010101100101001001010...
output:
43612
result:
ok 1 number(s): "43612"
Test #31:
score: 0
Accepted
time: 2ms
memory: 4072kb
input:
111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111...
output:
43815
result:
ok 1 number(s): "43815"
Test #32:
score: 0
Accepted
time: 0ms
memory: 4104kb
input:
0011001101 00
output:
2
result:
ok 1 number(s): "2"
Test #33:
score: 0
Accepted
time: 1ms
memory: 4000kb
input:
000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000...
output:
1
result:
ok 1 number(s): "1"
Test #34:
score: 0
Accepted
time: 2ms
memory: 4028kb
input:
011110101001110000100100101010111010100110011010001001000110011111010101111000110100000110010011001010111001000110000110001110110100011111100010111010101101001100101110100001101111110110000100110110111001000001101110011010100110000111101101101111011000110010100100100001000011010100000100110101001000...
output:
50001
result:
ok 1 number(s): "50001"
Test #35:
score: 0
Accepted
time: 1ms
memory: 4256kb
input:
111011011000111010010001101100000110011000000101110011111110010110001010001000011100011100101011110101101001011101010011110100011101111111000011110101010001000011000100110001011110100010111101111110011001010110011001110111001011000000110100000011001110110110000101010100001001110100111010100100100101...
output:
-1
result:
ok 1 number(s): "-1"
Test #36:
score: 0
Accepted
time: 1ms
memory: 4300kb
input:
110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110...
output:
50000
result:
ok 1 number(s): "50000"
Test #37:
score: 0
Accepted
time: 1ms
memory: 4220kb
input:
111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111...
output:
99999
result:
ok 1 number(s): "99999"
Test #38:
score: 0
Accepted
time: 2ms
memory: 4008kb
input:
000100100001010000001000011101100101000000000000100000101000100110111001000100000000001000100011101100010010100100000011110101010010010001000001000010000011101000011101010010000110000001000000010100001100010011001001010100010001010000001101101001010110011001000001110000001100010001000101000010110000...
output:
24091
result:
ok 1 number(s): "24091"
Test #39:
score: 0
Accepted
time: 2ms
memory: 4072kb
input:
011000011010000110001000000000100110011001001101011100010010100000100011010110010010011101100000011100110100001010000000100010011100001010010100000100000000100010010101110000001000001010111001100001001011101011110011100101110110101010110000100010001110111010111010000000101111010001010000001111111001...
output:
58668
result:
ok 1 number(s): "58668"
Subtask #4:
score: 5
Accepted
Test #40:
score: 5
Accepted
time: 0ms
memory: 3844kb
input:
11 011
output:
0
result:
ok 1 number(s): "0"
Test #41:
score: 0
Accepted
time: 0ms
memory: 3812kb
input:
0 110
output:
0
result:
ok 1 number(s): "0"
Test #42:
score: 0
Accepted
time: 0ms
memory: 3804kb
input:
01 100
output:
0
result:
ok 1 number(s): "0"
Test #43:
score: 0
Accepted
time: 0ms
memory: 3800kb
input:
110 110
output:
1
result:
ok 1 number(s): "1"
Test #44:
score: 0
Accepted
time: 0ms
memory: 4024kb
input:
010 001
output:
0
result:
ok 1 number(s): "0"
Test #45:
score: 0
Accepted
time: 0ms
memory: 3804kb
input:
001001001001 001
output:
4
result:
ok 1 number(s): "4"
Test #46:
score: 0
Accepted
time: 1ms
memory: 3996kb
input:
000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000...
output:
0
result:
ok 1 number(s): "0"
Test #47:
score: 0
Accepted
time: 1ms
memory: 3992kb
input:
111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111...
output:
0
result:
ok 1 number(s): "0"
Test #48:
score: 0
Accepted
time: 2ms
memory: 3996kb
input:
111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111...
output:
24856
result:
ok 1 number(s): "24856"
Test #49:
score: 0
Accepted
time: 1ms
memory: 4256kb
input:
111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111...
output:
0
result:
ok 1 number(s): "0"
Test #50:
score: 0
Accepted
time: 1ms
memory: 4056kb
input:
010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010010...
output:
62521
result:
ok 1 number(s): "62521"
Test #51:
score: 0
Accepted
time: 1ms
memory: 4004kb
input:
011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011011...
output:
66666
result:
ok 1 number(s): "66666"
Test #52:
score: 0
Accepted
time: 1ms
memory: 4000kb
input:
110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110...
output:
66666
result:
ok 1 number(s): "66666"
Subtask #5:
score: 0
Wrong Answer
Test #53:
score: 5
Accepted
time: 0ms
memory: 4096kb
input:
11 011
output:
0
result:
ok 1 number(s): "0"
Test #54:
score: 0
Accepted
time: 0ms
memory: 3748kb
input:
01 100
output:
0
result:
ok 1 number(s): "0"
Test #55:
score: 0
Accepted
time: 0ms
memory: 3816kb
input:
011 011
output:
1
result:
ok 1 number(s): "1"
Test #56:
score: 0
Accepted
time: 0ms
memory: 3812kb
input:
010 100
output:
0
result:
ok 1 number(s): "0"
Test #57:
score: -5
Wrong Answer
time: 0ms
memory: 3752kb
input:
0 010
output:
-2
result:
wrong answer 1st numbers differ - expected: '0', found: '-2'
Subtask #6:
score: 0
Skipped
Dependency #4:
100%
Accepted
Dependency #5:
0%