这道题要看出是背包问题,不容易,跟FB一面 paint house很像,比那个难一点 定义res[i][j] 表示前 i个number with 最后一个number是j,这样的minimum adjusting cost ...
分类:
其他好文 时间:
2017-08-06 15:05:13
阅读次数:
109
这道题是之前那道House Robber 打家劫舍的拓展,现在房子排成了一个圆圈,则如果抢了第一家,就不能抢最后一家,因为首尾相连了,所以第一家和最后一家只能抢其中的一家,或者都不抢,那我们这里变通一下,如果我们把第一家和最后一家分别去掉,各算一遍能抢的最大值,然后比较两个值取其中较大的一个即为所求 ...
分类:
其他好文 时间:
2017-08-04 13:52:38
阅读次数:
116
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
多个字段拼接成一个字段进行查询SELECTCONCAT(area.name,house.block,‘栋‘,house.unit,‘单元‘,house.room_number,‘室‘,room.apart_name)ASname,FROMhouse_apartASroom;查询结果name‘上海2栋1单元1室Aaa‘‘上海2栋1单元1室A1‘
分类:
数据库 时间:
2017-07-26 18:13:09
阅读次数:
231
The thief has found himself a new place for his thievery again. There is only one entrance to this area, called the "root." Besides the root, each hou ...
分类:
其他好文 时间:
2017-07-25 18:05:52
阅读次数:
148
今天在看编程思想的时候,突然发现自己的java基础有多渣,习惯了get/set方法后,一直以为类成员变量在类初始化的时候只有调用类成员变量的时候并手动将其输出才可以其打印出来。看了上面这个例子才发现如果类成员变量在类内部初始化后(上例中的window类的构造器初始化后),在new一个House对象出 ...
分类:
其他好文 时间:
2017-07-23 22:41:08
阅读次数:
149
Total Accepted: 1341 Total Submissions: 3744 Difficulty: Medium The thief has found himself a new place for his thievery again. There is only one entr ...
分类:
其他好文 时间:
2017-07-23 21:10:51
阅读次数:
142
题目链接:acm.hdu.edu.cn/showproblem.php?pid=5538 House Building Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 262144/262144 K (Java/Others) Total S ...
分类:
其他好文 时间:
2017-07-22 16:47:10
阅读次数:
192
SELECT hou.*,uname FROM hos_house AS hou INNER JOIN sys_user AS usr INNER JOIN hos_type AS hty ON hou.uid=usr.uid AND hty.htname='三室一厅' AND hou.hTid=h ...
分类:
数据库 时间:
2017-07-18 22:14:59
阅读次数:
264
题目: Note: This is an extension of House Robber. After robbing those houses on that street, the thief has found himself a new place for his thievery so ...
分类:
其他好文 时间:
2017-07-17 09:54:58
阅读次数:
160