为什么只拿了88分?
#include<bits/stdc++.h>
using namespace std;
struct node{
int kt,ans,bz[1005];
int a[10];
}st,ed;
bool b[50000];
queue<node>q;
long kt(node t)
{
long long s=1;
for(int i=1;i<=8;i++)
{
int index=1,f=1,count=0;
for(int j=i+1;j<=8;j++)
{
if(t.a[i]>t.a[j]) count++;
f*=index++;
}
s=s+f*count;
}
return s;
}
int main()
{
for(int i=1;i<=8;i++) st.a[i]=i;
st.kt=kt(st);
b[st.kt]=1;
for(int i=1;i<=8;i++) scanf("%d",&ed.a[i]);
ed.kt=kt(ed);
cout<<ed.kt;
q.push(st);
while(!q.empty())
{
for(int i=1;i<=3;i++)
{
node ne=q.front();
switch(i)
{
case 1:
for(int i=1;i<=4;i++)
{
swap(ne.a[i],ne.a[9-i]);
}
break;
case 2:
for(int i=1;i<=3;i++)
{
swap(ne.a[i],ne.a[4]);
swap(ne.a[9-i],ne.a[5]);
}
break;
case 3:
swap(ne.a[3],ne.a[6]);
swap(ne.a[7],ne.a[3]);
swap(ne.a[3],ne.a[2]);
}
ne.ans++;
ne.kt=kt(ne);
if(!b[ne.kt])
{
for(int k=1;k<=q.front().ans;k++) ne.bz[k]=q.front().bz[k];
ne.bz[ne.ans]=i;
b[ne.kt]=1;
q.push(ne);
if(ne.kt==ed.kt)
{
printf("%d",q.back().ans);
exit(0);
}
}
}
q.pop();
}
}