//过河卒 //dp #include<bits/stdc++.h> using namespace std; typedef long long ll; ll mp[30][30]; ll f[30][30]; // int dir[][2]={{2,1},{2,-1},{-2,1},{-2,-1},{1,2},{1,-2},{-1,2},{-1,-2}};//八个方向 int xx[10]; // 存控制点行 int yy[10]; //存控制点列 int main() { ios::sync_with_stdio(false); cin.tie(0);co...