Modular Production Line

\[Time Limit: 1000ms\quad Memory Limit: 65536kB
\]

题意

给出 \(N\) 种零件,现在你可以用连续的一些零件组装成为一个产品,组装完你可以获得 \(w\) 的价值,要求每种零件最多使用 \(K\) 次并且每一个产品只能生产一个。问你最多可以获得的价值是多少。

思路

由于给出的 \(N\) 很大, \(M\)很小,那么显然,很多点都是没有用的,那么我们就可以将他们舍弃掉,只使用出现的点,那么可以考虑到离散化。

  • 对于给出的每一个区间 \(\left[u, v\right]\) 内的零件,我们可以从 \(u\) 到 \(v+1\) 建一条流量为\(1\),费用为 \(-w\) 的边,表示制作了这一个产品的情况。
  • 对于全部的点,我们可以建一条从 \(i\) 到 \(i+1\) 的边,表示第 \(i\) 个零件不使用的情况。
  • 对于超级源点和超级汇点,我们建一条从超级源点到第一个点,流量为 \(K\),费用为 \(0\) 的边,在建一条从最后一个点到超级汇点,流量为 \(K\),费用为 \(0\) 的边,这是为了防止任意一种零件使用次数超过 \(K\),所以从一开始就限制了流量。

最后跑最小费用最大流,算出的答案的绝对值就是要求的。

#include <map>
#include <set>
#include <list>
#include <ctime>
#include <cmath>
#include <stack>
#include <queue>
#include <cfloat>
#include <string>
#include <vector>
#include <cstdio>
#include <bitset>
#include <cstdlib>
#include <cstring>
#include <iostream>
#include <algorithm>
#define lowbit(x) x & (-x)
#define mes(a, b) memset(a, b, sizeof a)
#define fi first
#define se second
#define pii pair<int, int>
#define INOPEN freopen("in.txt", "r", stdin)
#define OUTOPEN freopen("out.txt", "w", stdout) typedef unsigned long long int ull;
typedef long long int ll;
const int maxn = 5e2 + 10;
const int maxm = 1e4 + 10;
const ll mod = 1e9 + 7;
const ll INF = 1e18 + 100;
const int inf = 0x3f3f3f3f;
const double pi = acos(-1.0);
const double eps = 1e-8;
using namespace std; int n, m, k;
int cas, tol, T; struct Node{
int u, v;
int w, val;
int next;
} node[maxm];
int head[maxn];
int pre[maxn], dis[maxn], cap[maxn], vis[maxn]; void addnode(int u, int v, int w, int val) {
node[tol].u = u;
node[tol].v = v;
node[tol].w = w;
node[tol].val = val;
node[tol].next = head[u];
head[u] = tol++;
} bool spfa(int src, int des, int &flow, int &cost) {
mes(pre, 0), mes(dis, inf), mes(cap, 0), mes(vis, false);
queue<int> q;
while(!q.empty()) q.pop();
pre[src] = src;
vis[src] = true;
cap[src] = inf;
dis[src] = 0;
q.push(src);
while(!q.empty()) {
int u = q.front();
q.pop();
vis[u] = false;
for(int i=head[u]; ~i; i=node[i].next) {
int v = node[i].v;
if(node[i].w && dis[v] > dis[u]+node[i].val) {
dis[v] = dis[u]+node[i].val;
cap[v] = min(cap[u], node[i].w);
pre[v] = i;
if(!vis[v]) {
vis[v] = true;
q.push(v);
}
}
}
}
if(dis[des] == inf) return false;
flow += cap[des];
cost += cap[des] * dis[des];
int u = des;
while(u != src) {
node[pre[u]].w -= cap[des];
node[pre[u]^1].w += cap[des];
u = node[pre[u]].u;
}
return true;
} int MCMF(int src, int des) {
int flow = 0, cost = 0;
while(spfa(src, des, flow, cost));
return cost;
} vector<int> vv;
vector<pair <pair<int, int>, int> > vec; int getid(int x) {
return lower_bound(vv.begin(), vv.end(), x) - vv.begin() + 1;
} void init() {
tol = 0;
vv.clear();
vec.clear();
mes(head, -1);
} int main() {
scanf("%d" ,&T);
while(T--) {
init();
scanf("%d%d%d", &n, &k, &m);
for(int i=1, u, v, w; i<=m; i++) {
scanf("%d%d%d", &u, &v, &w);
vec.push_back(make_pair(make_pair(u, v), w));
vv.push_back(u);
vv.push_back(v);
}
sort(vv.begin(), vv.end());
vv.erase(unique(vv.begin(), vv.end()), vv.end());
int src = 0, des = vv.size() + 2;
for(int i=1; i<=vv.size(); i++) {
addnode(i, i+1, inf, 0);
addnode(i+1, i, 0, 0);
// printf("%d %d %d %d\n", i, i+1, inf, 0);
}
addnode(src, 1, k, 0);
addnode(1, src, 0, 0);
// printf("%d %d %d %d\n", src, 1, k, 0);
addnode(vv.size()+1, vv.size()+2, k, 0);
addnode(vv.size()+2, vv.size()+1, 0, 0);
// printf("%d %d %d %d\n", vv.size()+1, vv.size()+2, k, 0);
for(auto i : vec) {
int u = i.fi.fi, v = i.fi.se, w = i.se;
u = getid(u);
v = getid(v);
addnode(u, v+1, 1, -w);
addnode(v+1, u, 0, w);
// printf("%d %d %d %d\n", u, v+1, 1, -w);
}
int ans = -MCMF(src, des);
printf("%d\n", ans);
}
return 0;
}

Modular Production Line (MCMF)的更多相关文章

  1. Modular Production Line

     Modular Production Line 时空限制: 1000ms /65536K   An automobile factory has a car production line. Now ...

  2. 【网络流】Modular Production Line

    [网络流]Modular Production Line 焦作上的一道,网络流24题中的原题.... https://nanti.jisuanke.com/t/31715 给出了1e5个点,但是因为最 ...

  3. codeforces 319B Psychos in a Line(模拟)

    There are n psychos standing in a line. Each psycho is assigned a unique integer from 1 to n. At eac ...

  4. Intervals POJ - 3680 (MCMF)

    给你一些区间,每个区间都有些价值.取一个区间就能获得对应的价值,并且一个点不能覆盖超过k次,问你最大的价值是多少. 我们可以把这些区间放到一维的轴上去,然后我们可以把它看成一个需要从左到右的过程,然后 ...

  5. POJ 3617 Best Cow Line (模拟)

    题目链接 Description FJ is about to take his N (1 ≤ N ≤ 2,000) cows to the annual"Farmer of the Yea ...

  6. P3381 【模板】最小费用最大流(MCMF)

    P3381 [模板]最小费用最大流 题目描述 如题,给出一个网络图,以及其源点和汇点,每条边已知其最大流量和单位流量费用,求出其网络最大流和在最大流情况下的最小费用. 输入格式 第一行包含四个正整数N ...

  7. Azure Command Line (一)入门

    一,引言 今天我们讲解一个新的 Azure 的知识,叫 “Azure Command Line”,简称 Azure CLI,具体概念是什么,我这里也不多说了,总结下来,Azure CLI 其实就是 用 ...

  8. 2019牛客多校训练第三场H.Magic Line(思维)

    题目传送门 大致题意: 输入测试用例个数T,输入点的个数n(n为偶数),再分别输入n个不同的点的坐标,要求输出四个整数x1,y1,x2,y2,表示有一条经过点(x1,y1),(x2,y2)的直线将该二 ...

  9. Codeforces 1159F Winding polygonal line(叉积)

    其实这个几何写起来还是比较方便,只用到了叉积.首先我们贪心的考虑一种情况,对于任意给定的LR串,我们起点的选择肯定是在这些点围成的凸包端点上,对于这样的起点来说,他对于L或者R都是有选择的机会,而且一 ...

随机推荐

  1. golang基础语法

    golang语言的常量定义: const  filename="abc.txt"; const filename String="abc.txt" golang ...

  2. 规则引擎drools封装

    一.前言 网上规则引擎drools介绍很多,并且有很多细致的说明,作者也不敢托大说自己的好用,但作者经过2个项目使用过规则引擎后,自己对规则引擎的理解并进行封装,对规则内容及如何使用,有自己的一番实践 ...

  3. Deepo

    Deepo is a series of Docker images that allows you to quickly set up your deep learning research env ...

  4. nginx跨域、防盗链、压缩等小功能详解

    原文链接:http://www.studyshare.cn/software/details/1173/0 一.跨域 跨域由来,是因为W3C组织制定的浏览器安全规范,不允许一个域名内的网站在没有别的域 ...

  5. 配置 Mac Chrome Inspect

    安装libimobiledevice :  Could not connect to lockdownd. Exiting.  报错解决 brew uninstall --ignore-depende ...

  6. 【JVM学习笔记一】Java内存区域

    1. 运行时数据区域 1) 程序计数器 | 线程私有,存储线程运行时所执行字节码的行号,实现分支.循环.跳转.异常处理.线程恢复等基础功能 | Java方法,记录正在执行的虚拟机字节码指令的行号:Na ...

  7. java实现SAP BO登录

    最近一个项目用到了SAP的businessObjects,需要进行二次开发,今天开发了登录接口,遇到了一些问题,进行了解决,现在分享一下. 1.依赖jar包的添加 bo登录需要用到一些jar包,具体在 ...

  8. 【开发笔记】-Tomcat启动时设置Jdk版本

    1. Window版本Tomcat 到bin下的setclasspath.bat文件,在文件的开始处添加如下代码: set JAVA_HOME=D:\Program Files\Java\jdk1.8 ...

  9. HTML不换行,多余用省略号代替

    最主要的css样式: white-space: nowrap; overflow: hidden; text-overflow: ellipsis; 例子: <!DOCTYPE html> ...

  10. vavr:让你像写Scala一样写Java

    本文阅读时间大约7分钟. Hystrix是Netflix开源的限流.熔断降级组件,去年发现Hystrix已经不再更新了,而在github主页上将我引导到了另一个替代项目--resilience4j,这 ...