摘要: 本文地址:http://www.cnblogs.com/maplefighting/p/7470033.html 一、创建web项目 首先呢,要有一个安装配置好maven等的eclipse,若没有,可见本博客以前记录 File --> new --> maven project -->然后选上 Cr 阅读全文
posted @ 2017-09-03 17:08 maplefighting 阅读(719) 评论(0) 推荐(0) 编辑
摘要: 题目地址: http://acm.hdu.edu.cn/showproblem.php?pid=6146 分析:这道题有点麻烦啊!貌似是原题,讨论情况好恶心啊。 1、首先呢,我们考虑从左上角出发,先从左往右抓到底,再从右往左抓,因为题目要的是步数最少的,所以不能随便 走。每一步选择有2种可能,所以总 阅读全文
posted @ 2017-08-19 22:07 maplefighting 阅读(286) 评论(0) 推荐(0) 编辑
摘要: 题目地址:http://acm.hdu.edu.cn/showproblem.php?pid=6144 分析:这道题挺水的,就是讲(a)#(b)表示有b个相连的a,当然也有可能有穿插不是这样表示直接给数字的,比如题目的(12)#(2)4(2)#(3)表示12124222,照着模拟就行了,注意下要到处 阅读全文
posted @ 2017-08-18 23:29 maplefighting 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 本文地址:http://www.cnblogs.com/maplefighting/p/7384679.html maven下载地址:http://maven.apache.org/download.cgi 1、解压,配置环境 变量名:MAVEN_HOME 变量值(解压的目录):E:\javaPro 阅读全文
posted @ 2017-08-17 22:15 maplefighting 阅读(241) 评论(0) 推荐(0) 编辑
摘要: 本文地址:http://www.cnblogs.com/maplefighting/p/7381070.html Eclipse官网下载:http://www.eclipse.org/downloads/ Tomcat下载: http://tomcat.apache.org/ eclipse压缩包解 阅读全文
posted @ 2017-08-17 13:17 maplefighting 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 本文地址:http://www.cnblogs.com/maplefighting/p/7375563.html jdk下载地址: http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html 阅读全文
posted @ 2017-08-16 20:13 maplefighting 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 题目地址: http://acm.hdu.edu.cn/showproblem.php?pid=6119分析: 我们一看到这题呢,因为题目明确告诉我们有重叠,所以我们肯定要先排序预处理下啦,然后呢,因为题意给的是补签次数,我们就可以求一下每两端连签之间的缺签天数,记录下这些坑的天数。然后两指针尺取下... 阅读全文
posted @ 2017-08-13 19:01 maplefighting 阅读(143) 评论(0) 推荐(0) 编辑
摘要: 题目地址: http://acm.hdu.edu.cn/showproblem.php?pid=6118分析: 看题意知道了是求最大价值,那么我们转换一下加个负号就变成了最小费用最大流,建图嘛,因为每个点都费用,所以把点拆分成两个,然后建图。我们弄一个起始点和终点,然后连接到每个点上,起始点到片区的... 阅读全文
posted @ 2017-08-13 18:53 maplefighting 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=6114分析:手推了下发现就是对应在一串n个方格上取m个车放(n>m),然后看下横着放和竖着放都一样的。所以就是C(n,m)代码如下:#includeusing namespace std;typedef ... 阅读全文
posted @ 2017-08-13 18:09 maplefighting 阅读(224) 评论(0) 推荐(0) 编辑
摘要: 今天坑爹的安装了几个补丁,然后就提醒我要预订win10了。。桌面右下角都多了一个“获取Windows10”的图标,而且没有任何可以关闭推送通知、去掉图标的选项。。而且看了下c盘,也好像多了三四G东西,估计是自动下载了win10安装包1、关闭"获取win10"图标KB3035583补丁是Windows... 阅读全文
posted @ 2016-06-21 22:00 maplefighting 阅读(152) 评论(0) 推荐(0) 编辑