题目链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3993 题意: 给出n幢建筑,每个都以一个点表示,给出点坐标。 有一个以原点为圆心,以R为半径的圆,记为圆O,是原始安全范围; then,安全范围变为在原来那个圆内任 ...
分类:
其他好文 时间:
2017-11-05 18:31:32
阅读次数:
115
class Building(models.Model): corporation = models.ForeignKey('company.Corporation', verbose_name=u'学校', related_name='buildings') number = models.Cha ...
分类:
其他好文 时间:
2017-11-03 19:09:30
阅读次数:
210
P3467 [POI2008]PLA-Postering P3467 [POI2008]PLA-Postering P3467 [POI2008]PLA-Postering 题目描述 All the buildings in the east district of Byteburg were bu ...
分类:
其他好文 时间:
2017-10-11 19:19:51
阅读次数:
188
The capital of Berland has n multifloor buildings. The architect who built up the capital was very creative, so all the houses were built in one row. ...
分类:
其他好文 时间:
2017-09-23 21:31:23
阅读次数:
278
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4372 题意: 有n栋高楼横着排成一排,各自的高度为1到n的一个排列。 从左边看可以看到f栋楼,从右边看可以看到b栋楼,并且高的楼会挡住低的楼。 问你这些楼有多少种排列方法。 题解: 由于高的楼会挡住低的 ...
分类:
其他好文 时间:
2017-08-17 21:35:52
阅读次数:
201
配置编译环境: 进sublime,然后点击Tools->Build System->New build System 直接用下面的替换 保存文件,文件名任意 每次使用前,我们按Ctrl+shift+B来选择编译选项 配置一键编译&运行快捷键 点击Preferences->Key Buildings ...
分类:
编程语言 时间:
2017-08-13 21:40:17
阅读次数:
1802
解题关键: n的环排列的个数与n-1个元素的排列的个数相等。 首先可以肯定,无论从最左边还是从最右边看,最高的那个楼一定是可以看到的,从这里入手。 假设最高的楼的位置固定,最高楼的编号为n,那么我们为了满足条件,可以在楼n的左边分x-1组,右边分y-1组,且用每组最高的那个元素代表这一组,那么楼n的 ...
分类:
其他好文 时间:
2017-08-12 12:38:16
阅读次数:
93
2017-08-10 21:10:08 writer:pprp 标解: 标解中组合数是用杨辉三角求解的 杨辉三角dp法 dp[i][j]=dp[i-1][j-1]+dp[i-1][j] O(n^2)~O(1) ...
分类:
其他好文 时间:
2017-08-10 22:30:24
阅读次数:
156
#include #include #include #include #include #include #include #include #include #include #include #define ll long long #define pb push_back #define m... ...
分类:
其他好文 时间:
2017-07-30 15:49:16
阅读次数:
118
DESCRIPTION There are nn buildings lined up, and the height of the ii-th house is hihi. An inteval [l,r][l,r](l≤r)(l≤r) is harmonious if and only if m ...
分类:
其他好文 时间:
2017-07-30 13:50:54
阅读次数:
162