妙妙构造题。
很容易可以看出要构造出一种可以交换相邻两格数的操作。
这部分可以写个爆搜找到规律。
然后就 AC 了。
代码也不长。
点击查看代码
/*
Tips:
你数组开小了吗?
你MLE了吗?
你觉得是贪心,是不是该想想dp?
一个小时没调出来,是不是该考虑换题?
*/
#include<bits/stdc++.h>
using namespace std;
#define map unordered_map
#define forl(i,a,b) for(register long long i=a;i<=b;i++)
#define forr(i,a,b) for(register long long i=a;i>=b;i--)
#define forll(i,a,b,c) for(register long long i=a;i<=b;i+=c)
#define forrr(i,a,b,c) for(register long long i=a;i>=b;i-=c)
#define lc(x) x<<1
#define rc(x) x<<1|1
#define mid ((l+r)>>1)
#define cin(x) scanf("%lld",&x)
#define cout(x) printf("%lld",x)
#define lowbit(x) x&-x
#define pb push_back
#define pf push_front
#define IOS ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);
#define endl '\n'
#define QwQ return 0;
#define ll long long
#define lcm(x,y) x/__gcd(x,y)*y
#define Sum(x,y) 1ll*(x+y)*(y-x+1)/2
ll t;
char a[8][8];
ll id[8][8];
vector<string>ans;
void f(ll x,ll y,ll pd)
{
forl(i,0,12)
{
string s="";
if(!pd)
{
if(i%2)
{
if(i/2%2)
s+='D';
else
s+='U';
s+=(char)(y+'0'+1);
}
else
s+='R',s+=(char)(x+'0'+1);
}
else
{
if(i%2)
{
if(i/2%2)
s+='R';
else
s+='L';
s+=(char)(x+'0'+1);
}
else
s+='D',s+=(char)(y+'0'+1);
}
ans.pb(s);
}
if(pd)
swap(id[x][y],id[x][y+1]);
else
swap(id[x][y],id[x+1][y]);
}
void SPJ()
{
forl(i,0,5)
forl(j,0,5)
if(id[i][j]!=i*6+j)
{
cout<<"Wrong Answer.\n";
return ;
}
if((ll)ans.size()>10000)
{
cout<<"Wrong Answer.\n";
return ;
}
cout<<"Accepted!\n";
}
void solve()
{
forl(i,0,5)
forl(j,0,5)
cin>>a[i][j];
forl(i,0,5)
forl(j,0,5)
{
if(a[i][j]>='0' && a[i][j]<='9')
id[i][j]=a[i][j]-'0';
else
id[i][j]=a[i][j]-'A'+10;
}
forl(i,0,5)
forl(j,0,5)
{
ll pd=0;
forl(k,0,5)
{
forl(l,0,5)
{
if(id[k][l]==i*6+j)
{
pd|=1;
while(l>j)
f(k,l-1,1),l--;
while(l<j)
f(k,l,1),l++;
while(k>i)
f(k-1,l,0),k--;
if(pd)
break;
}
}
if(pd)
break;
}
}
// SPJ();
cout<<ans.size()<<endl;
forl(i,0,(ll)ans.size()-1)
cout<<ans[i]<<endl;
}
int main()
{
IOS;
t=1;
// cin>>t;
while(t--)
solve();
/******************/
/*while(L<q[i].l) */
/* del(a[L++]);*/
/*while(L>q[i].l) */
/* add(a[--L]);*/
/*while(R<q[i].r) */
/* add(a[++R]);*/
/*while(R>q[i].r) */
/* del(a[R--]);*/
/******************/
QwQ;
}