题目:uva103 - Stacking Boxes(DAG)

题目大意:给出N个boxes, 而且给出这些箱子的维度。要求找一个最长的序列。可以使得以下的箱子一定可以有个维度序列大于上面的那个箱子的维度序列。比如:A箱子(2 3 4),B箱子(3 4 5),由于有个序列2 3 4 。 3 4 5使得B每一个维度的值都大于A,所以A可以在B上面 。

解题思路:DAG。将这些箱子哪个能在哪个上面处理出有向图出来,这里推断能否够在上面的情况,仅仅要将这两个箱子的维度都从小到大排下序,然后比較一下是否相应的位置的值要不都比还有一个小就能够了。

比如 :

31 4 18 8 27 17

44 32 13 19 41 19

排序

4 8 17 18 27 31

13 19 19 32 41 44

发现上面的数字比以下的相应位置的数字小。就能够。

代码:

#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std; const int N = 35;
const int M = 15; int n, m;
int box[N][M];
int G[N][N];
int f[N][N];
int path[N][N]; bool judge (int a, int b) { for (int i = 0; i < m; i++)
if (box[a][i] >= box[b][i])
return false;
return true;
} void handle () { memset (G, 0, sizeof (G));
for (int i = 0; i < n; i++)
for (int j = 0; j < n; j++) { if (i == j)
continue;
if (judge(i, j))
G[i][j] = 1;
}
} void init () { for (int i = 0; i <= n; i++)
for (int j = 0; j <= n; j++)
f[i][j] = -1;
} int dp (int x, int y) { int& ans = f[x][y];
int temp;
if (ans != -1)
return ans;
for (int i = 0; i < n; i++)
if (G[y][i]) {
temp = dp(y, i) + 1;
if (temp > ans) {
ans = temp;
path[x][y] = i;
}
}
if (ans == -1) {
ans = 2;
path[x][y] = -1;
}
return ans;
} void printf_ans(int x, int y) { if (path[x][y] == -1)
return;
printf (" %d", path[x][y] + 1);
printf_ans(y, path[x][y]);
} int main () { while (scanf ("%d%d", &n, &m) != EOF) { for (int i = 0; i < n; i++)
for (int j = 0; j < m; j++)
scanf ("%d", &box[i][j]); for (int i = 0; i < n; i++)
sort (box[i], box[i] + m); handle ();
init(); int ans = 1;
int temp;
int x, y;
for (int i = 0; i < n; i++)
for (int j = 0; j < n; j++)
if (G[i][j]) {
temp = dp(i, j);
if (temp > ans) {
ans = temp;
x = i;
y = j;
}
}
printf ("%d\n", ans);
if (ans != 1) { printf("%d %d", x + 1, y + 1);
printf_ans(x, y);
} else
printf ("1");
printf ("\n");
}
return 0;
}

uva103 - Stacking Boxes(DAG)的更多相关文章

  1. UVa 103 Stacking Boxes --- DAG上的动态规划

    UVa 103 题目大意:给定n个箱子,每个箱子有m个维度, 一个箱子可以嵌套在另一个箱子中当且仅当该箱子的所有的维度大小全部小于另一个箱子的相应维度, (注意箱子可以旋转,即箱子维度可以互换),求最 ...

  2. uva 103 Stacking Boxes(DAG)

    题目连接:103 - Stacking Boxes 题目大意:有n个w维立体, 输出立体互相嵌套的层数的最大值, 并输出嵌套方式, 可嵌套的要求是外层立体的w条边可以分别对应大于内层立体. 解题思路: ...

  3. UVA 103 Stacking Boxes (dp + DAG上的最长路径 + 记忆化搜索)

     Stacking Boxes  Background Some concepts in Mathematics and Computer Science are simple in one or t ...

  4. DAG 模型 stacking boxes 动态规划

    题目:UVA 103 stacking boxes 题目大意: 给你两个数,一个是盒子的个数,一个是每一个盒子的维数.将一个个盒子互相装起来,让你求最多可以装多少个,要求字典序最小. 解析:这个就是盒 ...

  5. UVa 103 - Stacking Boxes(dp求解)

    题目来源:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=3&pa ...

  6. uva 103 Stacking Boxes(最长上升子序列)

    Description    Stacking Boxes  Background Some concepts in Mathematics and Computer Science are simp ...

  7. UVA 103 Stacking Boxes 套箱子 DAG最长路 dp记忆化搜索

    题意:给出几个多维的箱子,如果箱子的每一边都小于另一个箱子的对应边,那就称这个箱子小于另一个箱子,然后要求能够套出的最多的箱子. 要注意的是关系图的构建,对箱子的边排序,如果分别都小于另一个箱子就说明 ...

  8. UVa 103 - Stacking Boxes

    题目大意:矩阵嵌套,不过维数是多维的.有两个个k维的盒子A(a1, a1...ak), B(b1, b2...bk),若能找到(a1...ak)的一个排列使得ai < bi,则盒子A可嵌套在盒子 ...

  9. UVA 103 Stacking Boxes --LIS

    实际上是一个扩展维度的矩形嵌套问题. 一个物体能嵌入另一个物体中,当且仅当这个物体的所有维度的长度都小于另外一个(本题是小于等于),又因为可以旋转等变换,所以干脆将每个箱子的边从小到大排序,以便于判断 ...

随机推荐

  1. visual studio code(vscode)的使用(快捷键)

    Visual Studio Code初探 vscode 是一种可运行于 OS X,Windows 和 Linux 之上的免费跨平台编辑器: 1. 快捷键 ctrl + `:调出(对于 windows ...

  2. git的学习笔记整理

    Git学习较好的网址:http://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000/001373 ...

  3. 页面出现AXURE RP EXTENSION,怎么办?

    (可参考百度经验,地址:https://jingyan.baidu.com/article/54b6b9c0c1cb762d583b4706.html) 本文以强大如斯的谷歌浏览器来说明,怎么查看Ax ...

  4. Ajax的几种形式 和使用情况

    Ajax的几种形式: 1       $.get( "Login.ashx", {Name:name,Pwd:pwd,action:x}, function(data){这里用da ...

  5. codeforces 495D Sonya and Matrix

    Since Sonya has just learned the basics of matrices, she decided to play with them a little bit. Son ...

  6. mongodb 的索引

                索引加快了查询速度,但是降低了写入速度.所以不要在没必要的属性上加索引.             在 mongodb 中索引可以按倒序/正序创建,便于排序.           ...

  7. 从Chrome源码看audio/video流媒体实现二(转)

    第一篇主要介绍了Chrome加载音视频的缓冲控制机制和编解码基础,本篇将比较深入地介绍解码播放的过程.以Chromium 69版本做研究. 由于Chromium默认不能播放Mp4,所以需要需要改一下源 ...

  8. [笔记-统计学习方法]感知机模型(perceptron) 原理与实现

    前几天认把感知机这一章读完了,顺带做了点笔记 现在把笔记做第三次的整理 (不得不说博客园的LaTex公式和markdown排版真的不太舒服,该考虑在服务器上建一个博客了) 零.总结 适用于具有线性可分 ...

  9. element-ui table 行内编辑

    EditRow.ts vue+element-ui+slot-scope原生实现可编辑表格 interface NoParamConstructor<T> { new(): T; } ex ...

  10. 紫书 例题 10-10 UVa 10491(概率计算)

    公式很好推,表示被高中生物遗传概率计算虐过的人 这个公式简直不需要动脑 #include<cstdio> using namespace std; int main() { double ...