Cow Relays
Time Limit: 1000MS
Memory Limit: 65536K
Total Submissions: 5411
Accepted: 2153
Description
For their physical fitness program, N (2 ≤ N ≤ 1,000,000) cows h...
分类:
其他好文 时间:
2014-10-30 10:22:45
阅读次数:
195
Description奶牛们在被划分成N行M列(2 #include#include#include#include#include#include#includeusing namespace std;int n,m,t,i,j,k,map[200][200],f[120][120][20],x1...
分类:
其他好文 时间:
2014-10-28 15:17:08
阅读次数:
229
点击打开链接链接
Cow Exhibition
Time Limit: 1000MS
Memory Limit: 65536K
Total Submissions: 9288
Accepted: 3551
Description
"Fat and docile, big and dumb, they look so ...
分类:
其他好文 时间:
2014-10-23 22:50:23
阅读次数:
189
Language:
Default
Tallest Cow
Time Limit: 2000MS
Memory Limit: 65536K
Total Submissions: 1964
Accepted: 906
Description
FJ's N (1 ≤ N ≤ 10,000) cows conveniently ...
分类:
其他好文 时间:
2014-10-23 22:44:04
阅读次数:
281
Language:
Default
Dining
Time Limit: 2000MS
Memory Limit: 65536K
Total Submissions: 9631
Accepted: 4446
Description
Cows are such finicky eaters. Each cow has a p...
分类:
其他好文 时间:
2014-10-23 14:34:17
阅读次数:
149
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-10-22 21:38:43
阅读次数:
269
题目大意:有一些奶牛在一些牧场里,这些牧场有些单向边,牧场中的牛按照单向边行走,问有哪些牧场所有牛都能到达。
思路:图的连通性本来应该是tarjan或者并查集什么的,但是这个题数据范围是在是太弱了,所以就搜索就行了。
CODE:
#include
#include
#include
#include
#define MAX 10010
using namespac...
分类:
其他好文 时间:
2014-10-22 18:24:57
阅读次数:
229
BZOJ200题纪念!一个非常巧妙的方法求曼哈顿距离:如果原来坐标是(x, y),令新的坐标为(X, Y), 其中X = x + y, Y= x - y那么:曼哈顿距离 = |x1 - x2| + |y1 - y2| = max(|X1 - X2|, |Y1 - Y2|)于是我们先进行坐标变换,按X...
分类:
其他好文 时间:
2014-10-22 12:34:05
阅读次数:
259
看不懂题,蒟蒻中文英文都太差了。。。于是Orz itwiiioi巨巨!结果终于理解了:就是求有向图非单点的强连通分量个数。tarjan妥妥的。。。(板子*1 get√) 1 /**************************************************************...
分类:
其他好文 时间:
2014-10-21 19:06:57
阅读次数:
212
描述 Description给定一个整数n,求一个整数m,满足mn,输出前一个。因为保证最小所以只乘一次,因为p/(p-1)单调减,所以从小的开始选。高精度写错搞了好久,然后有卡了几次时才过了代码: 1 #include 2 3 #include 4 5 #include 6 7...
分类:
其他好文 时间:
2014-10-21 16:58:38
阅读次数:
179