码迷,mamicode.com
首页 >  
搜索关键字:buildings    ( 105个结果
[leedcode 218] The Skyline Problem
A city's skyline is the outer contour of the silhouette formed by all the buildings in that city when viewed from a distance. Now suppose you aregiven...
分类:其他好文   时间:2015-08-06 23:55:27    阅读次数:204
HDU 4372 Count the Buildings(组合数+斯特林数)
?? 题意:N座高楼,高度均不同且为1-N中的数,从前向后看能看到F个,从后向前看能看到B个,问有多少种可能的排列数。 思路:一开始想的是dp,但是数据范围达到2000,空间复杂度无法承受。 考虑以最高的楼分界,左边有f-1个递增的楼,右边有b-1个递减的楼,考虑将剩下n-1楼分为f+b-2组,规定每组中最高的在最左边,那么只需要 再从n-1组选出f-1组放到左边即可。 现在解决将n-1...
分类:其他好文   时间:2015-08-05 20:29:16    阅读次数:117
hdoj 5301 Buildings
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5301 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 int n,m,x,y,s,l; 7 int ma...
分类:其他好文   时间:2015-08-05 06:24:32    阅读次数:119
The Skyline Problem
A city's skyline is the outer contour of the silhouette formed by all the buildings in that city when viewed from a distance. Now suppose you aregiven...
分类:其他好文   时间:2015-07-29 06:13:38    阅读次数:95
HDU 5301 Buildings
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5301 题面: Buildings Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others) Total Submission(s): 1421    Accepted ...
分类:其他好文   时间:2015-07-25 12:21:24    阅读次数:96
hdu 5301 Buildings (2015多校第二场第2题) 简单模拟
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5301题意:给你一个n*m的矩形,可以分成n*m个1*1的小矩形,再给你一个坐标(x,y),表示黑格子在n*m矩形中的位置,黑格子占一个1*1的小矩形的空间,用各种矩形去填充n*m矩形,(x,y)位置不能填,且每个去填充的小矩形都..
分类:其他好文   时间:2015-07-24 18:48:02    阅读次数:137
hdu 5301 Buildings (2015多校第二场第2题) 简单模拟
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5301题意:给你一个n*m的矩形,可以分成n*m个1*1的小矩形,再给你一个坐标(x,y),表示黑格子在n*m矩形中的位置,黑格子占一个1*1的小矩形的空间,用各种矩形去填充n*m矩形,(x,y)位置不能...
分类:其他好文   时间:2015-07-24 14:15:22    阅读次数:111
hdu 5301 Buildings
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5301题意: n*m的矩阵,删除一个格子x,y。用矩形来填充矩阵。且矩形至少有一边是在矩阵的边缘上。求满足条件的矩形填充方式中面积最大的矩形,要使得该最大矩形的面积最小。解法见代码代码:#include #include #include #inclu...
分类:其他好文   时间:2015-07-24 13:07:41    阅读次数:129
hdu5301(2015多校2)--Buildings(构造)
Buildings Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others) Total Submission(s): 472    Accepted Submission(s): 104 Problem Description Your current tas...
分类:其他好文   时间:2015-07-23 21:49:50    阅读次数:202
数学 HDOJ 5301 Buildings
题目传送门 1 /* 2 题意:n*m列的矩阵,删除一个格子x,y。用矩形来填充矩阵。且矩形至少有一边是在矩阵的边缘上。 3 求满足条件的矩形填充方式中面积最大的矩形,要使得该最大矩形的面积最小。 4 分析:任何矩形都可以分为宽度为1的小矩形,所以只考虑矩形的可以的最小长度即...
分类:其他好文   时间:2015-07-23 21:30:46    阅读次数:148
105条   上一页 1 ... 6 7 8 9 10 11 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!