Who's in the Middle
Time Limit: 1000MS
Memory Limit: 65536K
Total Submissions: 31449
Accepted: 18269
Description
FJ is surveying his herd to find the most average cow...
分类:
其他好文 时间:
2014-07-23 13:08:26
阅读次数:
221
Catch That CowTime Limit:2000MSMemory Limit:65536KTotal Submissions:45648Accepted:14310DescriptionFarmer John has been informed of the location of a f...
分类:
其他好文 时间:
2014-07-22 22:41:54
阅读次数:
280
本文出自:http://blog.csdn.net/svitter
题意:给你一个数字n, 一个数字k,分别代表主人的位置和奶牛的位置,主任可以移动的方案有x+1, x-1, 2*x,求主人找到奶牛的时间(奶牛不移动)
题解:最基础的BFS但是脑子犯抽WA了3遍- =
注意:
1.数组范围1~1
2.visit去重。(BFS最基础的)
代码:
#include
#i...
分类:
其他好文 时间:
2014-07-22 14:25:33
阅读次数:
180
array_merge() 函数把两个或多个数组合并为一个数组。 例子 1 <?php
$a1=array("a"=>"Horse","b"=>"Dog");
$a2=array("c"=>"Cow","b"=>"Cat");
print_r(array_merge($a1,$a2));
?> 输出: Array?(?[a]?=>?Hor...
分类:
Web程序 时间:
2014-07-22 08:37:34
阅读次数:
187
Many years ago , in Teddy’s hometown there was a man who was called “Bone Collector”. This man like to collect varies of bones , such as dog’s , cow’s...
分类:
其他好文 时间:
2014-07-22 00:33:36
阅读次数:
271
题目链接:
啊哈哈,选我
题目:
The Cow Lexicon
Time Limit: 2000MS
Memory Limit: 65536K
Total Submissions: 7963
Accepted: 3734
Description
Few know that the cows have the...
分类:
其他好文 时间:
2014-07-20 23:04:05
阅读次数:
311
最短路水题,这次用SPFA写#include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std...
分类:
其他好文 时间:
2014-07-18 21:02:55
阅读次数:
207
最好牛线(Best Cow Line) 代码(C)本文地址: http://blog.csdn.net/caroline_wendy题目: 给定长度为N的字符串S, 要构造一个长度为N的字符串T. 反复进行如下任意操作.从S的头部删除一个字符, 放入T的尾部;从S的尾部删除一个字符, 放入T的尾部;目标是要构造字典序尽可能小的字符串T.使用贪心算法, 不断选取S首尾最小的字符, 放入T, 如果相等...
分类:
其他好文 时间:
2014-07-17 20:28:41
阅读次数:
225
这题有两个费用,一个是聪明度s,另一个是幽默度f。可以把其中一个当做体积,另一个当做价值,因为有负数的原因,当做体积的那一个加上1000dp[i]用来表示体积为i 的最大价值自己在敲的时候,更新的时候出了问题 1 for(j=mmax; j>=a; j--) 2 i...
分类:
其他好文 时间:
2014-07-16 18:53:48
阅读次数:
230
Catch That Cow
Time Limit: 2000MS
Memory Limit: 65536K
Total Submissions: 45087
Accepted: 14116
Description
Farmer John has been informed of the location of a fugitiv...
分类:
其他好文 时间:
2014-07-16 13:22:55
阅读次数:
233