House Man Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 3174 Accepted Submission(s): 1325 Probl ...
分类:
其他好文 时间:
2018-05-26 10:40:55
阅读次数:
155
"Holiday is coming, holiday is coming, hurray hurray!" shouts Joke in the last day of his college. On this holiday, Joke plans to go to his grandmothe ...
分类:
其他好文 时间:
2018-05-25 23:36:32
阅读次数:
337
题目大意: 一个平面直角坐标系中有给定的$n(n\le50)$个红点和$m(m\le50)$个蓝点,每个点可以选择画一个半径为$r$(所有的$r$相同)的圆或不画。圆的半径上限为$R(R\le1000)$。且不同颜色的点所画成的圆不能相交,问所有圆面积的和最大是多少? 思路: 枚举每一对不同颜色的点 ...
分类:
其他好文 时间:
2018-05-21 12:27:46
阅读次数:
181
class Lz(object): def __init__(self): self.money=1000000000000 self.house='大别野' def sing(self): print('唱歌') def dance(self): print('跳广场舞') def lm(self ...
分类:
其他好文 时间:
2018-05-20 16:42:09
阅读次数:
189
Just_Do_IT! N:8A:8B:7C:6D:8总分:37 Miracle-House N:8A:8B:7C:6D:8总分:37 Miracle-House N:8A:6B:7C:6D:8总分:35 Spring_Four N:8A:6B:7C:6D:8总分:35 Spring_Four N: ...
分类:
其他好文 时间:
2018-05-02 13:11:28
阅读次数:
209
2018-04-29 20:20:56 House Robber问题是leetcode上经典的系列题,这里对其中的题目做一个讲解。 198. House Robber 198. House Robber 问题描述: 问题求解: 本质上就是求解不连续取数的情况下能获得最大价值。可以使用动态规划来解决。 ...
分类:
其他好文 时间:
2018-04-30 19:47:25
阅读次数:
143
You are a professional robber planning to rob houses along a street. Each house has a certain amount of money stashed, the only constraint stopping yo ...
分类:
其他好文 时间:
2018-04-20 22:08:09
阅读次数:
144
#coding=utf-8#给列表加上序号,enumerate(l1),默认从0开始l1=['money','house','joo']for item in enumerate(l1,1): #print item print item[0],item[1] ...
分类:
编程语言 时间:
2018-04-20 21:57:59
阅读次数:
152
198 House Robber DP 0~n-1 ans=dp[n-1] dp[i] = max(dp[i-2]+nums[i], dp[i-1]) i>=2 213 House Robber II Since we cannot rob nums[0] and nums[n-1] at the ...
分类:
其他好文 时间:
2018-04-18 14:25:44
阅读次数:
148
题目链接: https://vjudge.net/problem/POJ-2195 题目大意: 给定一个N*M的地图,地图上有若干个man和house,且man与house的数量一致。man每移动一格需花费$1(即单位费用=单位距离),一间house只能入住一个man。现在要求所有的man都入住ho ...
分类:
编程语言 时间:
2018-04-15 23:51:39
阅读次数:
340