poj1201 查分约束系统
摘要:
oj1201 查分约束系统和1716是同一类题目,求出包含区间中至少c个数的最小集合,建立约束图,就最长路径,把所有的符号转化为>=,利用spfa求解,这个题不能用bellman_ford,会超时。#include <iostream>#include <stdio.h>#include <queue>using namespace std;const int N=50002;const int INF=100000;struct node{ int to,w,next;};node edge[N*3];int n,num,maxb,dist[N],a 阅读全文
posted @ 2011-09-10 22:41 buptLizer 阅读(456) 评论(0) 推荐(0) 编辑