POJ 3160 Father Christmas flymouse
摘要:
很简单的一道题,先tarjan缩点,然后SPFA求最长路。#include<cstdio>
#include<string.h>
#include<math.h>
#include<queue>
#define N 30100
#define M 150100
using namespace std;
struct edge{ int v,next;
}edge[M];
int n,m;
int num[N];
int cnt,head1[N],head2[N];
int scc,index,dfn[N],low[N],belong[N],sum 阅读全文
posted @ 2012-02-16 22:08 c语言源码 阅读(136) 评论(0) 推荐(0) 编辑