码迷,mamicode.com
首页 >  
搜索关键字:cow    ( 1685个结果
poj3617Best Cow Line
poj一个字符串贪心的题,欢迎讨论...
分类:其他好文   时间:2014-07-08 21:13:26    阅读次数:158
POJ 3176:Cow Bowling
Cow Bowling Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 13464   Accepted: 8897 Description The cows don't use actual bowling balls when they go bowling...
分类:其他好文   时间:2014-07-08 18:00:15    阅读次数:230
poj 2388 Who's in the Middle
Who's in the Middle Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 31149   Accepted: 18073 Description FJ is surveying his herd to find the most average cow...
分类:其他好文   时间:2014-07-08 13:30:10    阅读次数:144
POJ 3613 Cow Relays 恰好n步的最短路径
有T条路,从s到e走n步,求最短路径。...
分类:其他好文   时间:2014-07-05 23:58:20    阅读次数:324
POJ 3268 Silver Cow Party
求来回最短路加起来最长的一条。 两次SPFA,然后选某个点的来回最长。(有向图) Dijkstra+邻接矩阵 比较方便建立 反向图。 我用SPFA+2个邻接表(正图+反图),C++ 32ms。 #include #include #include #include #include #include #include #include #include #include #include ...
分类:其他好文   时间:2014-07-03 16:01:33    阅读次数:173
poj 3270 Cow Sorting 置换群 简单题
假设初始状态为  a:2 3 1 5 4 6 则目标状态为 b:1 2 3 4 5 6且下标为初始状态中的3 1 2 4 5 6(a[3],a[1]...) 将置换群写成循环的形式 (2,3,1),(5,4),6就不用移动了。 移动方式2种 1:选循环内最小的数和其他len-1个数交换 2:选整个序列最小的数和循环内最小的数交换,转到1,再换回来。 #include #inclu...
分类:其他好文   时间:2014-07-01 15:50:03    阅读次数:243
tyvj 1934 高精度
「Poetize3」Heaven Cow与God BullFrom wwwwodddd背景 Background__int64ago,there'saheavencowcalledsjy...Agodbullnamedwzcfellinlovewithher...AsanOI&MOer,wzcgav...
分类:其他好文   时间:2014-06-30 14:04:00    阅读次数:230
POJ3270 cow sorting 【polya】
题目描述: 给你一个数字序列(每个数字唯一),每次你可以交换任意两个数字,代价为这两个数字的和,问最少用多少代价能把这个序列按升序排列好。 题目的具体做法是参考刘汝佳的《算法艺术与信息学奥赛》大概思路是:以后再用别种方法解, 1.找出初始状态和目标状态。明显,目标状态就是排序后的状态。 2.画出置换群,在里面找循环。例如,数字是8 4 5 3 2 7 明显,               ...
分类:其他好文   时间:2014-06-28 08:07:33    阅读次数:183
PKU 3613 Cow Relays (指定路径条数的最短路)
题意:N,T,S,E:给你T条边,每条边两端都有编号和权值,问从S走到E允许走N条边,求最短路。 foyld加矩阵快速幂思想。 注意要把边离散 #include #include #include #include using namespace std; #define M 303 #define inf 0x3fffffff struct node { ...
分类:其他好文   时间:2014-06-27 07:39:23    阅读次数:178
HDU 3623 Best Cow Line, Gold(模拟,注意思路,简单)
题目POJ 3617 和 这道题题目一样,只是范围稍稍再小一点。//模拟试试#include#include#includeusing namespace std;char s[30010][2];bool bijiao(int st,int ed){ if(st==ed) re...
分类:其他好文   时间:2014-06-26 16:00:00    阅读次数:201
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!