如何查找有效元组的序列

发布于 2025-01-20 09:54:35 字数 443 浏览 0 评论 0原文

我有n元组(x_i,y_i,z_i)。我想找到最小数量的序列,以便序列(x_i,y_i,z_i)中的每个元组> x_i> = x_jy_i> = y_jz_i> = z_jj。所有n元组必须分配给一个且仅一个序列。

例如,如果我有三个具有值(1、2、3),(2、2、3)和(1、1、7)的元素,则有效序列的最小数量为2 ,是(2,2,3)和(1,2,3)(1,1,7)本身。

我想找到一种算法,可以在o(n^3)时间中返回此最小数字。我正在考虑检查每个元组相互对面的元组,但是必须有一种更有效的方法来解决此问题。任何指针都将不胜感激!

I have n tuples (x_i, y_i, z_i). I want to find the minimum number of sequences such that each tuple in the sequence (x_i, y_i, z_i) and (x_j, y_j, z_j) is such that x_i >= x_j, y_i >= y_j, and z_i >= z_j. All n tuples must be assigned to one and only one sequence.

For example, if I had three tuples with values (1, 2, 3), (2, 2, 3), and (1, 1, 7), the minimum number of valid sequences is 2, which are (2, 2, 3) and (1, 2, 3) and (1, 1, 7) by itself.

I want to find an algorithm that can return this minimum number in O(n^3) time. I was considering checking each tuple against each other tuple but there must be a more efficient way to solve this. Any pointers would be appreciated!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文