MySQL
事务没有提交导致锁等待Lockwaittimeoutexceededjava.lang.Exception:###
Errorupdatingdatabase.Cause:java.sql.SQLException:Lockwaittimeout
exceeded;tryrestartingtransaction###Theerrormayinvolve
defaultParameterMap###Theerroroccurredwhilesettingparameters#..
分类:
数据库 时间:
2014-10-01 01:37:21
阅读次数:
385
Big Christmas Tree
题目分析:
叫你构造一颗圣诞树,使得 (sum of weights of all descendant nodes) × (unit price of the edge)尽量的小。转换后就是求根节点到每个节点的距离最短,也就是最短路。生成树可能会超时,我没试过。然后,求解最短路要用优化的解法不然会超时。最后的答案就是:sum = w[1]...
分类:
其他好文 时间:
2014-09-30 15:00:19
阅读次数:
173
[Line 1 in XML document from class path resource [xxx.properties] is invalid; nested exception is org.xml.sax.SAXParseException; lineNumber: 1; column...
分类:
编程语言 时间:
2014-09-27 14:32:09
阅读次数:
185
今天升级一个spring项目遇到如下错:HTTP Status 500 - Request processing failed; nested exception is org.apache.tiles.definition.DefinitionsFactoryException: I/O Erro...
分类:
编程语言 时间:
2014-09-25 21:23:17
阅读次数:
1032
HTTP Status 500 - Handler processing failed; nested exception is java.lang.OutOfMemoryError: PermGen space发生此问题的环境信息:系统:CentOS 6.5Tomcat:Tomcat 7.0.6PermGen spacePermGen space的全称是Permanent Generation ...
分类:
编程语言 时间:
2014-09-25 20:55:07
阅读次数:
240
Nested DollsTime Limit: 3000/1000 MS (Java/Others)Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 2704Accepted Submission(s): 802Problem...
分类:
其他好文 时间:
2014-09-25 14:09:09
阅读次数:
220
今天在现场的哥们发来异常,让我解决,错误信息如下:HTTP Status 500 - Read operation to server 192.168.1.110:20001 failed on database wpdb; nested exception is com.mongodb.Mongo...
分类:
数据库 时间:
2014-09-18 20:16:04
阅读次数:
330
http://entrian.com/goto/# Example 1: Breaking out from a deeply nested loop:from goto import goto, labelfor i in range(1, 10): for j in range(1, 20...
分类:
编程语言 时间:
2014-09-18 18:34:14
阅读次数:
235
题意:uva 10154 - Weights and Measures
题意:有一些乌龟有一定的体重和力量,求摞起来的最大高度、力量必须承受其上面包括自己的全部的重量。
分析:先按力量从小到大排序
然后定义dp【i】 表示摞起来 i 只乌龟的最小质量。
然后转移就是每次用遍历O(n)的负责度找最小的,然后记录,保存最大值即可。
AC代码:
#include
#i...
分类:
其他好文 时间:
2014-09-17 20:31:02
阅读次数:
224
同理 org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException:?Line?52?in?XML?document?from?class?path?resource?[bean.xml]?is?invalid;?nested?exception?is?org.xml.sax.S...
分类:
Web程序 时间:
2014-09-16 16:14:00
阅读次数:
859