P1277

P1277 拼字游戏(未完)

一道毒瘤题 首先是最朴素的dfs,没有任何优化 ``` #include using namespace std; int a[5],b[5],c1,c2; int p[5][5]; bool vis; void dfs(int x,int y){ if(vis)return ; if(y==1 & ......
P1277 1277
共1篇  :1/1页 首页上一页1下一页尾页