码迷,mamicode.com
首页 > 其他好文
HUNNU 11568 Interstellar Travel(DP+优先队列)
Interstellar Travel Time Limit: 1000ms, Special Time Limit:2500ms, Memory Limit:65536KB Total submit users: 2, Accepted users: 1 Problem 11568 : No special judgement Problem desc...
分类:其他好文   时间:2015-08-08 19:59:00    阅读次数:127
sendRedirect和getRequestDispatcher的一些区别
二:response.sendRedirect(request.getContextPath() + "/welcome.jsp"); //response.sendRedirect()和request.getRequestDispatcher().forward()均可以实现跳转,并且也存在一些区别,其中一点就是在sendRedirect()中必须通过request.getContextPath()来获取项目的跟目录,不然会出现The requested resource is not available...
分类:其他好文   时间:2015-08-08 19:58:18    阅读次数:103
智力题:1-28题
1、你让工人为你工作7天,给工人的回报是一根金条。金条平分成相连的7段 ,你必须在每天结束时给他们一段金条,如果只许你两次把金条弄断,你如何给你 的工人付费? 答案:分成1/7,2/7,4/7,因为1,2,4可以组合成1-7的任何一个数字。  2、请把一盒蛋糕切成8份,分给8个人,但蛋糕盒里还必须留有一份。 答案:面对这样的怪题,把切成的8份蛋糕先拿出7份分给7人,剩下的...
分类:其他好文   时间:2015-08-08 19:57:50    阅读次数:198
【CF 459D】 Pashmak and Parmida's problem
【CF 459D】 Pashmak and Parmida’s problem...
分类:其他好文   时间:2015-08-08 19:59:08    阅读次数:169
代码从记事本拷贝到 source insight 工程出现中文乱码解决办法
1、代码从记事本拷贝到source insight 工程,此时出现乱码,解决办法,将输入法切换到中午输入法即可。2、source insight 阅读VC++源码,注释为乱码解决方案1、options->preferences->Syntax Formatting->Styles; 2、在Style Name 选择 Comment,再对其Font Name 选择Pick,然后再选择“新宋体”。3、...
分类:其他好文   时间:2015-08-08 19:56:57    阅读次数:122
【CF 515D】 Drazil and Tiles
【CF 515D】 Drazil and Tiles 拓扑的思想 如果满足条件 ‘.’未遍历完之前肯定存在度为1的点(上下左右仅有一个’.’)遍历到一个1度点u时 将与他连的点v用对应括号括起 此时v也已匹配 入度归零 同时将与v相连的其余点入度减1 不断遍历知道遍历完所有’.’ 若能遍历完 则满足条件否则无解或多解 (吐槽一下 原本用的纯粹拓扑思路 想想也是绝对要T的。。后来改换BFS代码如下:...
分类:其他好文   时间:2015-08-08 19:59:15    阅读次数:103
Codeforces 566 F. Clique in the Divisibility Graph
Codeforces 566F 的传送门As you must know, the maximum clique problem in an arbitrary graph is NP-hard. Nevertheless, for some graphs of specific kinds it can be solved effectively.Just in case, let us remi...
分类:其他好文   时间:2015-08-08 19:59:04    阅读次数:133
UVA 534 Frogger 【最小瓶颈树】
https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=475题意:求点1到2所有路径上最大边的最小值。解法:Kruskal按边值排序。直到1,2联通。代码:#include #include #include <algor...
分类:其他好文   时间:2015-08-08 19:58:43    阅读次数:112
Intellij IDEA 14的注册机及源代码
注册机下载 IntelliJ IDEA 14 注册机及源代码 程序源代码 IDEAKeyGen.java FXMLDocumentController.java FXMLDocument.fxml 参考文章 IntelliJ IDEA 14 注册码...
分类:其他好文   时间:2015-08-08 19:56:15    阅读次数:168
HDU 4095 Y (树上计数问题)
HDU 4095 Y (树上计数问题)...
分类:其他好文   时间:2015-08-08 19:58:11    阅读次数:85
【笔试】1、斐波拉契数列
/* * 题目:题目:古典问题:有一对兔子,从出生后第3个月起每个月都生一对兔子,小兔子长到第三个月后每个月又生一对兔子,假如兔子都不死, 问每个月的兔子总数为多少? * 时间:2015年7月27日08:47:08 * 文件:lianxi01.cpp * 作者:cutter_point */ #include #include using namespace std; int...
分类:其他好文   时间:2015-08-08 19:55:43    阅读次数:108
ZOJ 3813 Pretty Poem (暴力)
Pretty Poem Time Limit: 2 Seconds      Memory Limit: 65536 KB Poetry is a form of literature that uses aesthetic and rhythmic qualities of language. There are many famous poets in the contem...
分类:其他好文   时间:2015-08-08 19:57:28    阅读次数:120
欢迎使用CSDN-markdown编辑器
一直对设计模式有一种敬畏之心,每次想要看设计模式的时候就会想到Erich Gamma,Richard Helm , Ralph Johnson, John Vlissides的黑皮《设计模式》,基本都望而止步,要把那本书看完可不是一时半会的,而且在没有项目经验的情况下,个人感觉基本都是纸上谈兵。今天在IBM Developerworks上看到一篇文章将PHP中常用的五种设计模式,感觉还不错,而且只有...
分类:其他好文   时间:2015-08-08 19:57:07    阅读次数:131
Course Schedule II -- leetcode
There are a total of n courses you have to take, labeled from 0 to n - 1. Some courses may have prerequisites, for example to take course 0 you have to first take course 1, which is expressed as ...
分类:其他好文   时间:2015-08-08 19:54:17    阅读次数:106
Reveal UI 分析工具简单使用
官网下载地址(30天免费试用):http://revealapp.com/作用:在 iOS 开发中,我们有时很希望有一款类似 Web 开发中的 UI Debug 工具(例如:Firebug),让我们能够实时查看 UI 的结构,还可以实时更改某个 UIView 的位置和大小的相关属性值查看效果。这里我...
分类:其他好文   时间:2015-08-08 19:54:42    阅读次数:160
欧拉回路基础 HDU1878 欧拉回路||并差集
欢迎参加——每周六晚的BestCoder(有米!)欧拉回路Time Limit: 2000/1000 MS (Java/Others)Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 10544Accepted Submiss...
分类:其他好文   时间:2015-08-08 19:55:43    阅读次数:167
关于自定义导航条UIBarButtonItem偏移的问题
在自定义导航条左按钮的时候发现按钮的位置向右偏移,下面给出了解决方法// 设置导航条的左按钮 UIButton *leftButton = [UIButton buttonWithType:UIButtonTypeCustom]; leftButton.frame = CGRectMake(0,.....
分类:其他好文   时间:2015-08-08 19:52:53    阅读次数:89
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!