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<iostream>
#include<stdio.h>
#include<vector>
#include<cmath>
#include<queue>
#include<string.h>
#include<unordered_map>
#include<set>
#include<algorithm>
#define ll int
#define pi pair < ll,ll >
#define mp(a,b) make_pair(a,b)
#define mid (low+high)/2
#define rep(i,a,b) for(int i = a;i < b;i++)
#define N 300004
#define INF 1e9+7
using namespace std;
ll n;
string s,t;
bool vis[N][2];
int steps[N][2];
void solve()
{
queue < pair <int,int> > q;
int ss = 0;
rep(i,0,n)
ss += (s[i]-'0')*(1 << i);
q.push(mp(ss,0));
vis[ss][0]=true;
steps[ss][0] = 0;
while(!q.empty())
{
pair < int,int > cc = q.front();
q.pop();
int cur = cc.first;
int used = cc.second;
int tmp = cur;
if(used==0)
{
rep(i,0,n)
{
tmp = cur;
rep(j,i,n)
{
tmp |= (1 << j);
if(!vis[tmp][0])
{
vis[tmp][0]=true;
steps[tmp][0]=steps[cur][0]+1;
q.push(mp(tmp,0));
}
}
}
rep(i,0,n)
{
tmp = cur;
rep(j,i,n)
{
tmp &= ~(1 << j);
if(!vis[tmp][0])
{
vis[tmp][0]=true;
steps[tmp][0]=steps[cur][0]+1;
q.push(mp(tmp,0));
}
}
}
}
rep(i,0,n)
{
tmp = cur;
rep(j,i,n)
{
tmp ^= (1 << j);
if(!vis[tmp][1])
{
vis[tmp][1]=true;
steps[tmp][1]=steps[cur][1]+1;
q.push(mp(tmp,1));
}
}
}
}
return;
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(0);
cin >> n;
cin >> s;
cin >> t;
solve();
int tt=0;
rep(i,0,n)
tt += (t[i]-'0')*(1<<i);
cout << min(steps[tt][0],steps[tt][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... |