Leftmost Digit
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 12947 Accepted Submission(s): 4953
Problem Description
Given a positi...
分类:
其他好文 时间:
2014-07-29 15:04:40
阅读次数:
196
题意:用所给的硬币面值构成所需的面值
思路:因为所用硬币数量不限,所以很容易想到完全背包。
递推:
#include
#include
#include
#include
using namespace std;
const int MAXN = 10005;
int n;
int coin[] = {1, 5, 10, 25, 50};
long long d...
分类:
其他好文 时间:
2014-07-29 15:02:39
阅读次数:
214
下载apache2.2 http server,安装next,见到set type,选择custom类型安装,change改变安装路径,next到finsh安装完成,默认80端口,打开浏览器http://localhost,show view "it works !"成功安装。 配置环境变量...
分类:
其他好文 时间:
2014-07-29 11:23:36
阅读次数:
244
HTML代码: 返回 ios下载 Android下载 CSS代码(reset):body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,te...
分类:
移动开发 时间:
2014-07-27 23:25:59
阅读次数:
414
问题:横竖屏切换时Activity的生命周期?答案:1、不设置Activity的android:configChanges时,切屏会重新调用各个生命周期,切横屏时会执行一次,切竖屏时会执行两次2、设置Activity的android:configChanges=”orientation”时,切屏还是...
分类:
移动开发 时间:
2014-07-27 22:20:59
阅读次数:
271
If you have lost or forgot root password of RHEL7, you can follow this step to change to a new password, this is different with the RHEL6 single-user mode...
分类:
其他好文 时间:
2014-07-26 02:49:36
阅读次数:
276
1、How Do I change extension of php file RewriteEngine?On
RewriteCond?%{REQUEST_FILENAME}?!-f
RewriteRule?^(.*)\.html$?$1.php?[L]...
分类:
其他好文 时间:
2014-07-25 11:39:41
阅读次数:
255
Private Sub Worksheet_Change(ByVal Target As Range)Dim srg As Range, x As ShapeIf Target.Count = Target.EntireRow.Cells.Count Then For Each x In Shape...
分类:
其他好文 时间:
2014-07-25 03:50:35
阅读次数:
237
提交时忘记编写日志,事后想在版本库浏览器中编辑日志信息,却弹出错误,“此版本库不允许修改版本属性请管理员创建pre-revprop-change钩子”。解决方法如下: 在版本库的hooks目录中,新建pre-revprop-change.ba...
分类:
其他好文 时间:
2014-07-25 00:11:44
阅读次数:
285
与服务器进行数据交换时,尤其是数据中含有中文时,要注意中文的编码问题。要选择服务器接受的编码方式,否则会造成显示乱码。
经验:
实验室服务器的数据库,中文用GBK编码,但我提交的是UTF-8编码的中文,结果出现乱码:
于是借鉴了网上的代码,添加了自动转换指定编码的函数:
#Change encoding type
def chmod(mes, encodin...
分类:
编程语言 时间:
2014-07-24 23:16:03
阅读次数:
255