基准时间限制:1 秒 空间限制:131072 KB 分值: 160
有n个长方形盒子,第i个长度为Li,宽度为Wi,我们需要把他们套放。注意一个盒子只可以套入长和宽分别不小于它的盒子,并且一个盒子里最多只能直接装入另外一个盒子 (但是可以不断嵌套),例如1 * 1 可以套入2 * 1,而2 * 1再套入2 * 2。套入之后盒子占地面积是最外面盒子的占地面积。给定N个盒子大小,求最终最小的总占地面积。
Input
第一行一个数N表示盒子的个数。
接下来N行,每行两个正整数,表示每个盒子的长度和宽度。
所有整数都是正的(N,以及盒子的长宽),且不超过200。
Output
一行一个整数表示最终最小的占地面积。
Input示例
3
1 1
1 2
2 1
Output示例
4

想了很久,发现具有二分图的性质:每个点只能被包含在另外一个点当中。那么拆点,然后A可以被包含在B中就由左侧的A向右侧的B建一条边,这时构成一个二分图.
由于题目要求是的占地面积最小,那么考虑最大匹配时的连边情况,若最大匹配有A->B的这一条边存在,也就说明A被放在了B中,那么占地面积是不要包括A的面积的,所以考虑连边时,将A->B的边权值设为A的面积,那么最后答案就是所有点面积的总和 减去 最优匹配的权值和。 这里n<=200,所以考虑要使用N^3的最优匹配. 同样可以用二分图的题一定可以用网络流,然后网络流跑了一发(最小费用最大流)。
最后二分图最优匹配32ms,而网络流64ms
 #pragma comment(linker, "/STACK:1677721600")
#include <map>
#include <set>
#include <stack>
#include <queue>
#include <cmath>
#include <ctime>
#include <bitset>
#include <vector>
#include <cstdio>
#include <cctype>
#include <cstring>
#include <cstdlib>
#include <iostream>
#include <algorithm>
using namespace std;
#define INF 0x3f3f3f3f
#define inf (-((LL)1<<40))
#define lson k<<1, L, (L + R)>>1
#define rson k<<1|1, ((L + R)>>1) + 1, R
#define mem0(a) memset(a,0,sizeof(a))
#define mem1(a) memset(a,-1,sizeof(a))
#define mem(a, b) memset(a, b, sizeof(a))
#define FIN freopen("in.txt", "r", stdin)
#define FOUT freopen("out.txt", "w", stdout)
#define rep(i, a, b) for(int i = a; i <= b; i ++)
#define dec(i, a, b) for(int i = a; i >= b; i --) //typedef __int64 LL;
typedef long long LL;
typedef pair<int, int> Pair;
const int MAXN = + ;
const int MAXM = ;
const double eps = 1e-;
LL MOD = ; int n; struct KM {
const static int maxn = 1e3 + ;
int A[maxn], B[maxn];
int visA[maxn], visB[maxn];
int match[maxn], slack[maxn], Map[maxn][maxn];
int M, H; void add(int u, int v, int w) {
Map[u][v] = w;
}
bool find_path ( int i ) {
visA[i] = true;
for ( int j = ; j < H; j++ ) {
if ( !visB[j] && A[i] + B[j] == Map[i][j] ) {
visB[j] = true;
if (match[j] == - || find_path(match[j])) {
match[j] = i;
return true;
}
} else if ( A[i] + B[j] > Map[i][j] ) //j属于B,且不在交错路径中
slack[j] = min(slack[j], A[i] + B[j] - Map[i][j]);
}
return false;
} int solve (int M, int H) {
this->M = M; this->H = H;
int i, j, d;
memset(A, , sizeof(A));
memset(B, , sizeof(B));
memset(match, -, sizeof(match));
for ( i = ; i < M; i++ )
for ( j = ; j < H; j++ )
A[i] = max (Map[i][j], A[i]);
for ( i = ; i < M; i++ ) {
for ( j = ; j < H; j++ )
slack[j] = INF;
while ( ) {
memset(visA, , sizeof(visA));
memset(visB, , sizeof(visB));
if ( find_path ( i ) ) break; //从i点出发找到交错路径则跳出循环
for ( d = INF, j = ; j < H; j++ ) //取最小的slack[j]
if (!visB[j] && d > slack[j]) d = slack[j];
for ( j = ; j < M; j++ ) //集合A中位于交错路径上的-d
if ( visA[j] ) A[j] -= d;
for ( j = ; j < H; j++ ) //集合B中位于交错路径上的+d
if ( visB[j] ) B[j] += d;
else slack[j] -= d; //注意修改不在交错路径上的slack[j]
}
}
int res = ;
for ( j = ; j < H; j++ )
res += Map[match[j]][j];
return res;
}
}km;//点从0开始编号 struct Node {
int w, h;
bool operator < (const Node &A) const {
if(w != A.w) return w < A.w;
return h < A.h;
}
bool operator == (const Node &A) const {
return w == A.w && h == A.h;
}
}r[MAXN]; void handle() {
sort(r + , r + n + );
int cnt = ;
rep (i, , n) if(!(r[i] == r[i - ])) {
r[++cnt] = r[i];
}
n = cnt;
} int solve() {
int ans = ;
rep (i, , n) {
scanf("%d %d", &r[i].w, &r[i].h);
}
handle();
rep (i, , n) ans += r[i].w * r[i].h;
rep (i, , n) rep (j, , n) if(i != j && r[i].h >= r[j].h && r[i].w >= r[j].w) {
km.add(j - , i - , r[j].w * r[j].h);
}
ans -= km.solve(n, n);
cout << ans << endl;
} int main()
{
// FIN;
cin >> n;
solve();
return ;
}
 #pragma comment(linker, "/STACK:1677721600")
#include <map>
#include <set>
#include <stack>
#include <queue>
#include <cmath>
#include <ctime>
#include <bitset>
#include <vector>
#include <cstdio>
#include <cctype>
#include <cstring>
#include <cstdlib>
#include <iostream>
#include <algorithm>
using namespace std;
#define INF 0x3f3f3f3f
#define inf (-((LL)1<<40))
#define lson k<<1, L, (L + R)>>1
#define rson k<<1|1, ((L + R)>>1) + 1, R
#define mem0(a) memset(a,0,sizeof(a))
#define mem1(a) memset(a,-1,sizeof(a))
#define mem(a, b) memset(a, b, sizeof(a))
#define FIN freopen("in.txt", "r", stdin)
#define FOUT freopen("out.txt", "w", stdout)
#define rep(i, a, b) for(int i = a; i <= b; i ++)
#define dec(i, a, b) for(int i = a; i >= b; i --) //typedef __int64 LL;
typedef long long LL;
typedef pair<int, int> Pair;
const int MAXN = + ;
const int MAXM = ;
const double eps = 1e-;
LL MOD = ; //以下是使用邻接表存边,不是使用vector,某些时候比上述要稍快一下
/*******************************************************************/
struct Edge {
int to, cap, flow, cost, next;
Edge(){}
Edge(int _n, int _v, int _c, int _f, int _cost){
next = _n; to = _v; cap = _c;
flow = _f; cost = _cost;
}
}; struct MCMF
{
int n, m, src, des;
int head[MAXN], tot;
Edge edges[MAXM];
int inq[MAXN];
int d[MAXN];
int p[MAXN];
int a[MAXN]; void init(int n, int src, int des) {
this->tot = ;
this->n = n;
this->src = src;
this->des = des;
mem1(head);
} void add_edge(int from, int to, int cap, int cost) {
edges[tot] = Edge(head[from], to, cap, , cost);
head[from] = tot ++;
edges[tot] = Edge(head[to], from, , , -cost);
head[to] = tot ++;
} bool bellman_ford(int s, int t, int& flow, int& cost) {
for(int i = ; i < n; i ++) {
d[i] = INF;
inq[i] = ;
}
d[s] = ; inq[s] = ;
p[s] = ; a[s] = INF; queue<int>Q;
Q.push(s);
while(!Q.empty()) {
int u = Q.front(); Q.pop();
inq[u] = false;
for(int i = head[u]; i != -; i = edges[i].next) {
int v = edges[i].to;
if(edges[i].cap > edges[i].flow && d[v] > d[u] + edges[i].cost) {
d[v] = d[u] + edges[i].cost;
p[v] = i;
a[v] = min(a[u], edges[i].cap - edges[i].flow);
if(!inq[v]) {
Q.push(v);
inq[v] = ;
}
}
}
}
if(d[t] >= ) return false; flow += a[t];
cost += d[t] * a[t]; int u = t;
while(u != s) {
edges[p[u]].flow += a[t];
edges[p[u]^].flow -= a[t];
u = edges[p[u]^].to;
}
return true;
} int min_cost() {
int flow = , cost = ;
while(bellman_ford(src, des, flow, cost));
return cost;
} }mcmf;
/***************************************************************/ struct Node {
int w, h;
bool operator < (const Node &A) const {
if(w != A.w) return w < A.w;
return h < A.h;
}
bool operator == (const Node &A) const {
return w == A.w && h == A.h;
}
}r[MAXN];
int n; void handle() {
sort(r + , r + n + );
int cnt = ;
rep (i, , n) if(!(r[i] == r[i - ])) {
r[++cnt] = r[i];
}
n = cnt;
} int solve() {
int ans = ;
rep (i, , n) {
scanf("%d %d", &r[i].w, &r[i].h);
}
handle();
mcmf.init( * (n + ), , * n + );
rep (i, , n) {
ans += r[i].w * r[i].h;
mcmf.add_edge(mcmf.src, * i - , , );
mcmf.add_edge( * i, mcmf.des, , );
}
rep (i, , n) rep (j, , n) if(i != j && r[i].h >= r[j].h && r[i].w >= r[j].w) {
mcmf.add_edge( * j - , * i, , -r[j].w * r[j].h);
}
ans += mcmf.min_cost();
cout << ans << endl;
} int main()
{
// FIN;
cin >> n;
solve();
return ;
}

51nod 算法马拉松4 D装盒子(网络流 / 二分图最优匹配)的更多相关文章

  1. 网络流——二分图最优匹配KM算法

    前言 其实这个东西只是为了把网络流的内容凑齐而写的(反正我是没有看到过这样子的题不知道田忌赛马算不算) 算法过程 我们令左边的点(其实二分图没有什么左右)为女生,右边的点为男生,那么: 为每一个女生定 ...

  2. 51NOD 算法马拉松8

    题目戳这里:51NOD算法马拉松8 某天晚上kpm在玩OSU!之余让我看一下B题...然后我就被坑进了51Nod... A.还是01串 水题..怎么乱写应该都可以.记个前缀和然后枚举就行了.时间复杂度 ...

  3. 51nod 算法马拉松 34 Problem D 区间求和2 (FFT加速卷积)

    题目链接  51nod 算法马拉松 34  Problem D 在这个题中$2$这个质数比较特殊,所以我们先特判$2$的情况,然后仅考虑大于等于$3$的奇数即可. 首先考虑任意一个点对$(i, j)$ ...

  4. 随便玩玩系列之一:SPOJ-RNG+51nod 算法马拉松17F+51nod 1034 骨牌覆盖v3

    先说说前面的SPOJ-RNG吧,题意就是给n个数,x1,x2,...,xn 每次可以生成[-x1,x1]范围的浮点数,把n次这种操作生成的数之和加起来,为s,求s在[A,B]内的概率 连续形的概率 假 ...

  5. 51Nod 算法马拉松21(迎新年)

    这次打算法马拉松是在星期五的晚上,发挥还算正常(废话,剩下的题都不会= =). 讲讲比赛经过吧. 8:00准时发题,拿到之后第一时间开始读. A配对,看上去像是二分图最大权匹配,一看范围吓傻了,先跳过 ...

  6. [hdu2255]奔小康赚大钱(二分图最优匹配、KM算法)

    题目大意:求二分图的最优匹配(首先数目最大, 其次权值最大). 解题关键:KM算法 复杂度:$O(n^3)$ #include<cstdio> #include<cstring> ...

  7. 51Nod 算法马拉松22 开黑记

    这是一场惨烈的开黑大战,始于全机房开黑指望刷进rank前十拿钱的壮志,终于被各路神犇怒踩成rank20,差点200点头盾不保的落魄,想起将近一年前ad和zcg等学长挤进rank10的壮举,不由得唏嘘, ...

  8. 51Nod 算法马拉松15 记一次悲壮而又开心的骗分比赛

    OwO 故事的起源大概是zcg前天发现51Nod晚上有场马拉松,然后他就很开心的过去打了 神奇的故事就开始了: 晚上的时候我当时貌似正在写线段树?然后看见zcg一脸激动告诉我第一题有九个点直接输出B就 ...

  9. 51Nod 算法马拉松23 开黑记

    惨啊……虽然开了半天黑,但是还是被dalao们踩了…… 第二次开黑,还是被卡在rank20了,我好菜啊……= = 写一写比赛经过吧…… 看到题之后习惯性都打开,A~D看上去似乎并没有什么思路,F应该是 ...

随机推荐

  1. VS2010/MFC编程入门之十二(对话框:非模态对话框的创建及显示)

    上一节鸡啄米讲了模态对话框及其弹出过程,本节接着讲另一种对话框--非模态对话框的创建及显示. 鸡啄米已经说过,非模态对话框显示后,程序其他窗口仍能正常运行,可以响应用户输入,还可以相互切换.鸡啄米会将 ...

  2. python的构建工具setup.py

    一.构建工具setup.py的应用场景 在安装python的相关模块和库时,我们一般使用“pip install  模块名”或者“python setup.py install”,前者是在线安装,会安 ...

  3. redis入门学习记录(二)

    继第一节 redis入门学习记录(一)之后,我们来学习redis的基本使用. 接下来我们看看/usr/local/redis/bin目录下的几个文件作用是什么? redis-benchmark:red ...

  4. this指向 - 总结

    /* 总结: this 的指向: 1.this 的指向 是在执行上下文时才确定的, 并且确定后不可更改: 2.this 指向 “其执行上下文的环境对象”; “其执行上下文的环境对象” 判读依据如下: ...

  5. mongodb的分片(2)

    在上一片博客,详细说明了mongodb的分片搭建的详细过程:分片搭建 在这里会说一些分片的维护与操作! 在集群搭建完,我们使用了sh.status()查看分片之后的数据,如下: #连接的是mongos ...

  6. 20145336张子扬 《网络对抗》逆向及bof基础

    20145336张子扬 <网络对抗>逆向及bof基础 学习知识点 缓冲区溢出 缓冲区溢出 一种非常普遍.非常危险的漏洞,在各种操作系统.应用软件中广泛存在.利用缓冲区溢出攻击,可以导致程序 ...

  7. linux及安全第五周总结——20135227黄晓妍

    (注意:本文总结备份中有较多我手写笔记的图片,其中重要的部分打出来了.本文对分析system_call对应的汇编代码的工作过程,系统调用处理过程”的理解,以及流程图都写在实验部分.) 实验部分 使用g ...

  8. Spring Data JPA 关系映射(一对一,一对多,多对多 )

    CascadeType.REMOVE 级联删除操作,删除当前实体时,与它有映射关系的实体也会跟着被删除.CascadeType.MERGE 级联更新(合并)操作,当Student中的数据改变,会相应地 ...

  9. [POJ2625][UVA10288]Coupons

    Description Coupons in cereal boxes are numbered 1 to n, and a set of one of each is required for a ...

  10. POJ 3281 Dining(最大流)

    http://poj.org/problem?id=3281 题意: 有n头牛,F种食物和D种饮料,每头牛都有自己喜欢的食物和饮料,每种食物和饮料只能给一头牛,每头牛需要1食物和1饮料.问最多能满足几 ...