zoukankan      html  css  js  c++  java
  • 【例7-15 UVA-1603】Square Destroyer

    【链接】 我是链接,点我呀:)
    【题意】

    在这里输入题意

    【题解】

    先预处理出所有的正方形(长度为1,2...n的)所包含哪些边。 然后记录每个正方形的应有边长和实际边长(有些边被删掉了); 然后搜的时候,每次找到第一个还是完整的正方形。 枚举删掉它的哪一条边。 然后看看哪些正方形会受到影响。 修改那些受影响的正方形的实际边长。 然后进入下一层。继续搜。 然后回溯影响。 直到所有的正方形都变成不完整的就可以了。 暴力就好。不用加优化。

    【代码】

    /*
      	1.Shoud it use long long ?
      	2.Have you ever test several sample(at least therr) yourself?
      	3.Can you promise that the solution is right? At least,the main ideal
      	4.use the puts("") or putchar() or printf and such things?
      	5.init the used array or any value?
      	6.use error MAX_VALUE?
      	7.use scanf instead of cin/cout?
      	8.whatch out the detail input require
    */
    /*
        一定在这里写完思路再敲代码!!!
    */
    #include <bits/stdc++.h>
    using namespace std;
    
    const int N = 150;
    
    int T,n,cnt[N],tot,fullsize[N],realsize[N],ans,totm;
    bool contain[N][N];
    
    int GetColumn(int x,int y){
        int temp1 = (x-1)*(n+1) + x*n + y;
        return temp1;
    }
    
    int GetRow(int x,int y){
        int temp1 = (x-1)*(n+1) + (x-1)*n +y;
        return temp1;
    }
    
    int findfirst(){
        for (int i = 1;i <= tot;i++)
            if (fullsize[i]==realsize[i]) return i;
        return -1;
    }
    
    void dfs(int dep){
        if (dep >= ans) return;
        int idx = findfirst();
        if (idx==-1){
            ans = dep;
            return;
        }
    
        for (int i = 1;i <= totm;i++)
            if (cnt[i] == 1 && contain[idx][i]){
                cnt[i] = 0;
                for (int j = 1;j <= tot;j++) if (contain[j][i]) realsize[j]--;
    
    
                dfs(dep+1);
    
                cnt[i] = 1;
                for (int j = 1;j <= tot;j++) if (contain[j][i]) realsize[j]++;
            }
    }
    
    int main(){
    	#ifdef LOCAL_DEFINE
    	    freopen("rush_in.txt", "r", stdin);
    	#endif
    	ios::sync_with_stdio(0),cin.tie(0);
        cin >> T;
        while (T--){
            tot = 0;
            memset(contain,0,sizeof contain);
            memset(fullsize,0,sizeof fullsize);
            memset(realsize,0,sizeof realsize);
    
            cin >>n;
            totm = 2*n*(n+1);
            for (int i = 1;i <= totm;i++) cnt[i] = 1;
    
            int k;cin >> k;
            while(k--){
                int x;cin >>x;cnt[x] = 0;
            }
            for (int len = 1;len <= n;len++){
                for (int i = 1;i <= n-len+1;i++){
                    for (int j = 1;j <= n - len+1;j++){
                        //(i,j)
                        tot++;
                        int x;
                        fullsize[tot] = len*4;
                        for (int k = 0;k < len;k++){
    
                            x = GetColumn(i+k,j);
                            contain[tot][x] = 1;
                            realsize[tot]+=cnt[x];
    
                            x = GetColumn(i+k,j+len);
                            contain[tot][x] = 1;
                            realsize[tot]+=cnt[x];
    
                            x = GetRow(i,j+k);
                            contain[tot][x] = 1;
                            realsize[tot]+=cnt[x];
    
                            x = GetRow(i+len,j+k);
                            contain[tot][x] = 1;
                            realsize[tot]+=cnt[x];
                        }
                    }
                }
            }
    
            ans = 1000;
            dfs(0);
            cout << ans << endl;
        }
    	return 0;
    }
    
  • 相关阅读:
    在数据库中加字段方法
    【原创】AE套用模板教程
    mysql 在windows server下发生系统错误 1067, 进程意外终止的解决方法
    对unidbgrid的单元格操作
    unigui与uniurlframe的互动
    推荐ajaxfilemanager for tiny_mce 比较完善的tiny_mce编辑器的图片上传及图片管理插件PHP版 支持中文
    html编辑器的调用
    mysqldump导出格式
    Gmail,QMail,163邮箱的 IMAP/SMTP/POP3 地址
    Delphi程序的自动升级功能的实现(AutoUpdate使用指南)
  • 原文地址:https://www.cnblogs.com/AWCXV/p/8066351.html
Copyright © 2011-2022 走看看