思路:題目意思很簡單,就是通過一些位置的交換,最後變成有序數列,對於一組序列,我們可以用康托展開然後hash判重。
然後就是普通的bfs,稍微留意一下細節即可。
1 #include2 #include3 #include4 #include5 #include6view codeusing
namespace
std;
7int is_prime=;
8int fac=;910
struct
point;
1314
struct
nodest;
1819
bool mark[400000
];20
21int get_hash(node &node)
2230 val+=cnt*fac[i];31}
32return
val;33}
3435
bool judge(node &node)
3641
return
true;42
}4344 node get_node(node &p,int pos1,int pos2,int
dir)
4554 p.state[pos2-1].num=tmp;
55 p.state[pos2-1].flag=flag;
56 }else
62 p.state[pos2].num=tmp,p.state[pos2].flag=flag;63}
64 }else
if(dir==1)
71 p.state[pos2].num=tmp,p.state[pos2].flag=flag;
72 }else
78 p.state[pos2+1].num=tmp,p.state[pos2+1].flag=flag;79}
80}81return
p;82}83
8485
void
bfs()
8698
for(int i=0;i<8;i++)
110}
111}
112}
113}
114}
115 puts("-1"
);116
}117
118119
intmain()
120128 st.step=0
;129 printf("
case %d:
",t++);
130bfs();
131}
132return0;
133 }
康托展開 康托逆展開
x a n n 1 a n 1 n 2 a i i 1 a 1 0 其中a i 為當前未出現的元素中是排在第幾個 從0開始 這就是康托展開。康托展開可用 實現。編輯 把乙個整數x展開成如下形式 x a n n 1 a n 1 n 2 a i i 1 a 2 1 a 1 0 其中a i 為當前未出現的...
康托展開 逆康托展開
康托展開 問題 給定的全排列,計算出它是第幾個排列 求序列號 方法 康托展開 對於乙個長度為 n 的排列 num 1 n 其序列號 x 為 x a 1 n i a 2 n 2 a i n i a n 1 1 a n 0 其中a i 表示在num i 1 n 中比num i 小的數的數量 includ...
康托展開 逆康托展開
用途 康托展開是一種雙射,用於排列和整數之間的對映,可用於排列的雜湊 康托展開 公式 i n1pi i 1 sum limits p i i 1 i n 1 pi i 1 其中p ip i pi 為第i ii個數構成的逆序的個數,n為排列數的個數 例 排列 2134 i n1pi i 1 sum l...