This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef array<int, 2> pii;
#define pb push_back
#define sz(a) (int) (a).size()
#define all(a) (a).begin(), (a).end()
const int N = 18;
int n, d[1 << N];
bool vis[1 << N];
string a, b;
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
cin >> n >> a >> b;
int ia = 0, ib = 0;
for (int i = 0; i < n; ++i) {
if (a[i] == '1')
ia += (1 << i);
if (b[i] == '1')
ib += (1 << i);
}
queue<int> q;
q.push(ia);
vis[ia] = 1;
while (!q.empty()) {
int v = q.front();
q.pop();
if (v == ib) {
cout << d[v];
return 0;
}
for (int l = 0; l < n; ++l) {
for (int r = l; r < n; ++r) {
int u = v;
for (int i = l; i <= r; ++i)
u |= (1 << i);
if (!vis[u]) {
q.push(u);
vis[u] = 1;
d[u] = d[v] + 1;
}
u = v;
for (int i = l; i <= r; ++i)
if (u & (1 << i))
u ^= (1 << i);
if (!vis[u]) {
q.push(u);
vis[u] = 1;
d[u] = d[v] + 1;
}
u = v;
for (int i = l; i <= r; ++i)
u ^= (1 << i);
if (!vis[u]) {
q.push(u);
vis[u] = 1;
d[u] = d[v] + 1;
}
}
}
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |