参考了别人的思路:将迷宫外围四面都筑墙‘X’。方便减少代码量。 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 vector v; 7 int n,m; 8 int x_1,y_1,x_2,y_2; 9...
分类:
其他好文 时间:
2015-01-15 00:06:40
阅读次数:
349
I am the bone of my sword. ―――――― 体は剣で出来ている。Steel is my body, and fire is my blood. 血潮は鉄で 心は硝子。 I have created over a thousand blades. 幾たびの戦場を越えて不敗。 ....
分类:
其他好文 时间:
2015-01-13 08:57:31
阅读次数:
100
大家好,我是孙广东。 转载请注明出处:http://blog.csdn.net/u010019717更全的内容请看我的游戏蛮牛地址:http://www.unitymanual.com/space-uid-18602.html ??1、BONE CREATION为骨骼选择层。请单击“Create Bone Tool”按钮。你会留在这种模式下,直到您按输入enter或单击“Finish Bon...
分类:
编程语言 时间:
2015-01-03 07:07:54
阅读次数:
213
题意:经典的01背包题,给出了石头的数量与背包的容量,然后分别给出每个石头的容量与价值,要求最优解,可以说是01背包果题。http://acm.hdu.edu.cn/showproblem.php?pid=2602#include#include#include#includeusing names...
分类:
其他好文 时间:
2014-12-25 20:02:37
阅读次数:
144
Tempter of the BoneTime Limit: 2000/1000 MS (Java/Others)Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 75141Accepted Submission(s): 20...
分类:
其他好文 时间:
2014-12-16 20:53:59
阅读次数:
218
Tempter of the BoneTime Limit:1000MSMemory Limit:32768KB64bit IO Format:%I64d & %I64uSubmitStatusDescriptionThe doggie found a bone in an ancient maze...
分类:
其他好文 时间:
2014-12-16 00:56:05
阅读次数:
142
http://acm.hdu.edu.cn/showproblem.php?pid=2602 Bone CollectorTime Limit: 2000/1000 MS (Java/Others)Memory Limit: 32768/32768 K (Java/Others) Total Sub...
分类:
其他好文 时间:
2014-12-15 21:38:37
阅读次数:
243
Tempter of the Bone
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 74916 Accepted Submission(s): 20481
Problem Description
The ...
分类:
其他好文 时间:
2014-12-12 07:47:47
阅读次数:
201
解题思路:对于01背包的状态转移方程式f[v]=max(f[v],f[v-c[i]+w[i]]);其实01背包记录了每一个装法的背包值,但是在01背包中我们通常求的是最优解,即为取的是f[v],f[v-c[i]]+w[i]中的最大值,但是现在要求第k大的值,我们就分别用两个数组保留f[v]的前k个值...
分类:
其他好文 时间:
2014-12-09 08:08:56
阅读次数:
278
Bone Collector IITime Limit: 5000/2000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 2464 Accepted Submission(s): 1295
Problem DescriptionThe title of this pr...
分类:
其他好文 时间:
2014-12-02 01:36:20
阅读次数:
263