码迷,mamicode.com
首页 > 其他好文 > 详细

某邻居的WIFI密码

时间:2014-08-22 19:44:39      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   for   ar   2014   log   amp   

bubuko.com,布布扣

看到这么小气的邻居,屌丝不能忍了!!! 暴力DFS破解之~

#include <cstdio>
#include <vector>
using namespace std;
bool mark[9];
vector <int>ans;
int cas=0;
void check()
{
        int tp3=ans[0]-ans[1];
        int tp6=ans[3]/ans[4];
        int tp9=ans[6]+ans[7];
        if(tp3*tp6==tp9&&tp3==ans[2]&&tp6==ans[5]&&tp9==ans[8])
        {
                printf("Case #%d:\n",++cas);
                for(int i=0;i<9;i++)
                {
                        printf("%d ",ans[i]);
                        if(i%3==2)
                        {
                                puts("");
                        }
                }
        }
}
bool dfs(int deep)
{
        if(deep==9)
        {
                check();
        }
        for(int i=9;i>0;i--)
        {
                if(mark[i]==0)
                {
                        mark[i]=1;
                        ans.push_back(i);
                        dfs(deep+1);
                        ans.pop_back();
                        mark[i]=0;
                }
        }
}
int main()
{
        dfs(0);
        return 0;
}


某邻居的WIFI密码

标签:style   blog   http   io   for   ar   2014   log   amp   

原文地址:http://blog.csdn.net/alpc_paul/article/details/38760817

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!