DescriptionFreddy Frog is sitting on a stone in
the middle of a lake. Suddenly he notices Fiona Frog who is sitting on another
stone. He plans to visi...
分类:
其他好文 时间:
2014-05-26 21:55:01
阅读次数:
352
题目链接题目描写叙述:哈密尔顿路问题。n个点,每个点有权值,设哈密尔顿路为
C1C2...Cn,Ci的权值为Vi,一条哈密尔顿路的值分为三部分计算:1.每个点的权值之和2.对于图中的每一条CiCi+1,加上Vi*Vi+13.对于路径中的连续三个点:CiCi+1Ci+2,若在图中,三点构成三角形,则要...
分类:
其他好文 时间:
2014-05-26 15:14:18
阅读次数:
192
Fence RepairTime Limit: 2000MSMemory Limit:
65536KTotal Submissions: 24252Accepted: 7766DescriptionFarmer John wants to
repair a small length of the f...
分类:
其他好文 时间:
2014-05-26 15:12:15
阅读次数:
193
区域查询操作。
ma[i]:i区间内的最大值
mi[i]:i区间内的最小值
#include
#include
#include
#include
#include
using namespace std;
#define INF 99999999
#define lmin 1
#define rmax n
#define lson l,(l+r)/2,rt<<1
#define rson ...
分类:
其他好文 时间:
2014-05-26 04:11:41
阅读次数:
202
题目来源:POJ 3164 Command Network
题意:求以1为根的最小树形图 没有输出字符串
思路:直接高朱刘算法 不懂的可以百度 学会了就是直接套模板的事情 其实就是不断消圈而已 不构成圈就有解 无法从根到达其他点就无解
#include
#include
#include
const int maxn = 110;
const int maxm = 500...
分类:
Web程序 时间:
2014-05-24 19:34:36
阅读次数:
325
ParencodingsTime Limit: 1000MSMemory Limit:
10000KTotal Submissions: 19068Accepted: 11503DescriptionLet S = s1 s2...s2n be a
well-formed string of par...
分类:
其他好文 时间:
2014-05-24 09:16:54
阅读次数:
191
题意:给你个矩阵,里面有n个标记的点,许多只青蛙在上面跳,每次跳的距离都是一样的且轨迹是直线,目标是从一边跳到另一边,求最多步数的青蛙
思路:排序后,枚举判断
#include
#include
#include
#include
using namespace std;
const int MAXN = 5050;
struct point{
int x,y;
void ini...
分类:
其他好文 时间:
2014-05-22 18:50:02
阅读次数:
255
Hotel
Time Limit: 3000MS
Memory Limit: 65536K
Total Submissions: 10959
Accepted: 4732
Description
The cows are journeying north to Thunder Bay in Canada to gain cul...
分类:
其他好文 时间:
2014-05-22 18:29:19
阅读次数:
237
Description
两只青蛙在网上相识了,它们聊得很开心,于是觉得很有必要见一面。它们很高兴地发现它们住在同一条纬度线上,于是它们约定各自朝西跳,直到碰面为止。可是它们出发之前忘记了一件很重要的事情,既没有问清楚对方的特征,也没有约定见面的具体位置。不过青蛙们都是很乐观的,它们觉得只要一直朝着某个方向跳下去,总能碰到对方的。但是除非这两只青蛙在同一时间跳到同一点上,不然是永远都不可能碰面...
分类:
其他好文 时间:
2014-05-22 17:35:34
阅读次数:
214
题目:http://poj.org/problem?id=1226
http://acm.hdu.edu.cn/showproblem.php?pid=1238
其实用hash+lcp可能也可以,甚至可能写起来更快,不过我没试,我最近在练习后缀数组,所以来练手
后缀数组的典型用法之一----------------后缀数组+lcp+二分
思路:1、首先将所有的字符串每读...
分类:
其他好文 时间:
2014-05-22 17:14:08
阅读次数:
289