`
antsmall
  • 浏览: 15648 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
最近访客 更多访客>>
社区版块
存档分类
最新评论

poj 1020 Anniversary Cake

阅读更多

/*
** poj 1020 Anniversary Cake
** http://poj.org/problem?id=1020
** antsmall 2010-12-4
** this problem is about cutting a square-shaped cake into specifying pieces which lead to no waste
** i.e. the cake is 4x4, and can be cut into pieces of 1x1 1x1 1x1 1x1 1x1 3x3 1x1 1x1
** 
** p.s. today, we are happy to see ximei, a funny little girl of my colleague Mr Liu, whom helps 
** me a lot in my daily work, and a master of database and etl
*/

#include <iostream>
using namespace std;


char* STR_S = "KHOOOOB!"; // for success
char* STR_F = "HUTUTU!";   // for fail

int t;   // num of test cases
int s;   // side of the cake
int n;   // pieces num of each testcase
int cnt[11]; // side of each piece, and there are at most 16 pieces 
int cols[41]; // the used len of each column 
int cakeSize; // size of the cake
int piecesSize; // sum of the pieces' size

// judge is it cutable, using dfs
bool canCut(int used) {
if(used == n) 
   return true;

int minLen = 41;
int minInd = 41;

// find the min col to start put 
for(int i = 0; i < s; i++) {
   if(cols[i] < minLen) {
    minLen = cols[i]; minInd = i;
   }
}

for(int i = 10; i >= 1; i--) {
   if(cnt[i] > 0 && minLen + i <= s && minInd + i <= s) {
    // check if can reach the request
    bool found = true;
    for(int j = minInd; j <= minInd + i - 1; j++) {
     if(cols[j] > minLen) {
      found = false; break;
     }
    }
    if(found) {
     for(int j = minInd; j <= minInd + i - 1; j++) cols[j] += i;
     cnt[i]--;
     // dfs
     if(canCut(used + 1)) return true;
     cnt[i]++;
     for(int j = minInd; j <= minInd + i - 1; j++) cols[j] -= i;
    }
   }
}

return false;
}

int main(){
int side;
scanf("%d", &t);

while(t--) {
   memset(cols, 0, sizeof(cols));
   memset(cnt, 0, sizeof(cnt));

   scanf("%d%d", &s, &n);
   cakeSize   = s*s; 
   piecesSize = 0;
   for(int i = 0; i < n; i++) {
    scanf("%d", &side);
    piecesSize += side*side;
    cnt[side]++;
   }
  
   // judge whether can cut
   if(cakeSize == piecesSize && canCut(0)) {
    printf("%s\n", STR_S); // yes 
   } else {
    printf("%s\n", STR_F); // no 
   }

}
//system("pause");
return 0;
}
分享到:
评论

相关推荐

    POJ1020-Anniversary Cake【有技巧的DFS】

    【标题】"POJ1020-Anniversary Cake【有技巧的DFS】"是一个源自北京大学在线编程平台POJ的编程题目,它涉及到深度优先搜索(DFS)算法的应用。这道题目要求参赛者通过编程解决一个有趣的问题,即在特定条件下如何...

    PKU POJ 1162 Building with Blocks解题报告

    与同类题目比较,如线性情况的1011 Sticks、二维情况的1020 Anniversary Cake以及需要坐标变换的1069 The Bermuda Triangle等,本题作为三维情况,其复杂度达到了顶峰。 #### 解题思路 解题的关键在于良好的搜索...

    POJ.rar_poj java_poj1048

    【标题】"POJ.rar_poj java_poj1048" 涉及的知识点主要围绕编程竞赛中的“约瑟夫环”问题,这里是一个加强版,使用Java语言进行解决。 【描述】"POJ1048,加强版的约瑟夫问题 难度中等" 提示我们,这个问题是编程...

    POJ算法题目分类

    * 图的深度优先遍历和广度优先遍历:图的深度优先遍历和广度优先遍历是指遍历图的两种方式,如 poj1860、poj3259、poj1062、poj2253、poj1125、poj2240。 * 最短路径算法:最短路径算法是指计算图中两点之间的最短...

    POJ1159-Palindrome

    【标题】"POJ1159-Palindrome" 是北京大学在线编程平台POJ上的一道编程题目。这道题目主要考察的是字符串处理和回文判断的知识点。 【描述】"北大POJ1159-Palindrome 解题报告+AC代码" 暗示了解决这道问题的方法和...

    ACM-POJ 算法训练指南

    1. **状态转移方程**:设计复杂的动态规划状态转移方程(poj1191, poj1054, poj3280, poj2029, poj2948, poj1925, poj3034)。 2. **记忆化搜索**:结合动态规划和递归搜索(POJ3254, poj2411, poj1185)。 3. **...

    poj训练计划.doc

    根据给定的文件信息,我们可以总结出一份详细的IT知识训练计划,主要针对编程竞赛和算法学习,特别是聚焦于POJ(Problem Online Judge)平台上的题目训练。这份计划分为两个阶段,初级阶段和中级阶段,共计涉及了165...

    POJ3253-POJ3253-Fence Repair【STL优先队列】

    标题“POJ3253-POJ3253-Fence Repair【STL优先队列】”指的是一个在线编程竞赛题目,源自北京大学的在线判题系统POJ(Problem Online Judge)。该题目要求参赛者使用C++编程语言解决特定的问题,并且在解决方案中...

    POJ2002-Squares

    【标题】"POJ2002-Squares"是一个经典的计算机编程题目,源自北京大学的在线判题系统(POJ,即PKU Online Judge)。这个题目主要涉及到算法设计和实现,尤其是数学和动态规划方面的知识。 【描述】"解题报告+AC代码...

    jihe.rar_2289_POJ 3714_poj3714_poj3714 Ra_visual c

    标题中的"jihe.rar_2289_POJ 3714_poj3714_poj3714 Ra_visual c" 提到了一个压缩文件,可能包含有关编程竞赛或算法解决的资源,特别是与POJ(Problem On Judge)平台上的问题3714相关的。"Ra_visual c"可能指的是...

    poj题目分类

    * 较为复杂的动态规划:例如 poj1191、poj1054、poj3280、poj2029、poj2948、poj1925、poj3034。 数学 1. 组合数学: * 加法原理和乘法原理。 * 排列组合。 * 递推关系:例如 poj3252、poj1850、poj1019、poj...

    POJ分类POJ分类POJ分类POJ分类POJ分类POJ分类POJ分类

    - **例题**:poj1860, poj3259, poj1062, poj2253, poj1125, poj2240 - **解释**:最短路径算法包括Dijkstra算法、Bellman-Ford算法、Floyd算法以及堆优化的Dijkstra算法等。 ##### (3) 最小生成树算法 - **例题**...

    POJ入门题库(含解题思路和答案)

    这些题目是针对ACM竞赛(ACM International Collegiate Programming Contest,简称ICPC)中的编程训练,POJ(Problem Set for Online Judges)是一个在线的编程竞赛平台,提供了许多算法和逻辑思维的练习题目。...

    poj各种分类

    标题和描述中的“poj各种分类”主要指向的是在POJ(Peking University Online Judge)平台上,根据解题策略和算法类型对题目进行的分类。POJ作为一个知名的在线编程平台,提供了大量的算法练习题,适合从初学者到...

    POJ1837-Balance

    【标题】"POJ1837-Balance"是一个在线编程竞赛题目,源自著名的编程练习平台POJ(Programming Online Judge)。这个题目旨在测试参赛者的算法设计和实现能力,特别是处理平衡问题的技巧。 【描述】"解题报告+AC代码...

    poj 3414解题报告

    poj 3414解题报告poj 3414解题报告poj 3414解题报告poj 3414解题报告

    poj 1012解题报告

    poj 1012解题报告poj 1012解题报告poj 1012解题报告poj 1012解题报告

    poj 2329解题报告

    poj 2329解题报告poj 2329解题报告poj 2329解题报告poj 2329解题报告

    POJ1201-Intervals

    【标题】"POJ1201-Intervals" 是北京大学在线编程平台POJ上的一道题目,这道题目主要涉及计算机科学中的算法设计与分析,尤其是数据结构和时间复杂度优化方面的知识。 【描述】"北大POJ1201-Intervals 解题报告+AC...

    poj 1659解题报告

    poj 1659解题报告poj 1659解题报告poj 1659解题报告poj 1659解题报告

Global site tag (gtag.js) - Google Analytics