zoukankan      html  css  js  c++  java
  • usaco PROB Checker Challenge 搜索

    搜索的过程中用2进制保存状态,通过位运算判断可行性。

    //#pragma comment(linker, "/STACK:1024000000,1024000000")
    #include<cstdio>
    #include<cstring>
    #include<cstdlib>
    #include<algorithm>
    #include<iostream>
    #include<sstream>
    #include<cmath>
    #include<climits>
    #include<string>
    #include<map>
    #include<queue>
    #include<vector>
    #include<stack>
    #include<set>
    using namespace std;
    typedef long long ll;
    typedef unsigned long long ull;
    typedef pair<int,int> pii;
    #define pb(a) push(a)
    #define INF 0x1f1f1f1f
    #define lson idx<<1,l,mid
    #define rson idx<<1|1,mid+1,r
    #define PI  3.1415926535898
    template<class T> T min(const T& a,const T& b,const T& c) {
        return min(min(a,b),min(a,c));
    }
    template<class T> T max(const T& a,const T& b,const T& c) {
        return max(max(a,b),max(a,c));
    }
    void debug() {
    #ifdef ONLINE_JUDGE
    #else
    
        freopen("d:\in1.txt","r",stdin);
        freopen("d:\out1.txt","w",stdout);
    #endif
    }
    int getch() {
        int ch;
        while((ch=getchar())!=EOF) {
            if(ch!=' '&&ch!='
    ')return ch;
        }
        return EOF;
    }
    int res[3][20];
    int buf[20];
    int n;
    int num;
    int dfs(int k,int col,int dl,int dr)
    {
        if(k>n)
        {
            if(num<3)
            {
                memcpy(res[num],buf,sizeof(buf));
            }
            num++;
            return 0;
        }
        for(int i=1;i<=n;i++)
        {
            if(
               !(col&(1<<i))&&
               !(dl&(1<<(k+i)))&&
               !(dr&(1<<(k-i+n)))
               )
            {
                buf[k]=i;
                dfs(k+1,col|(1<<i),dl|(1<<(k+i)),dr|(1<<(k-i+n)));
            }
        }
        return 0;
    }
    int main()
    {
        freopen("checker.in","r",stdin);
        freopen("checker.out","w",stdout);
    
        scanf("%d",&n);
        num=0;
        dfs(1,0,0,0);
        for(int i=0;i<3;i++)
        {
            for(int j=1;j<=n;j++)
                printf("%d%c",res[i][j],j==n?'
    ':' ');
    
        }
        printf("%d
    ",num);
        return 0;
    }
    View Code
  • 相关阅读:
    java对象转json对象
    cas-client登录后报INVALID_PROXY_CALLBACK
    tomcat启动一闪而过,调试tomcat
    获取url中的参数
    cas 退出后跳转指定页面
    cas增加验证码
    spring security+cas(cas proxy配置)
    oracle 导入导出指定表
    Marshaller根据对象生成xml文件
    webpack学习笔记
  • 原文地址:https://www.cnblogs.com/BMan/p/3558262.html
Copyright © 2011-2022 走看看