supermarket [POJ1456]

Posted keik

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了supermarket [POJ1456]相关的知识,希望对你有一定的参考价值。

** 算法二:
贪心策略

  1. 优先考虑利润大的商品
  2. 每个商品,售出的时间越晚越好。
#include <iostream>
#include <algorithm>
using namespace std;

const int N = 10000 + 10;
int n;
typedef pair<int, int> PII;
PII a[N];

int fa[N];
int get(int x)
{
    if (fa[x] == x)
        return x;
    return fa[x] = get(fa[x]);
}
int main()
{
    while (cin >> n)
    {
        int m = 0; int ans = 0;
        for (int i = 1; i <= n; i++)
        {
            cin >> a[i].first >> a[i].second;
            m = max(m, a[i].second);
        }
        sort(a + 1, a + n + 1);
        reverse(a + 1, a + n + 1);

        for (int i = 1; i <= m; i++)
        {
            fa[i] = i;
        }
        
        for (int i = 1; i <= n; i++)
        {
            int day = get(a[i].second);
            if (!day)
                continue;
            ans += a[i].first;
            fa[day] = get(day - 1);
        }
        cout << ans << endl;
    }
}

以上是关于supermarket [POJ1456]的主要内容,如果未能解决你的问题,请参考以下文章

poj1456Supermarket——并查集压缩查找

POJ-1456 Supermarket贪心+并查集

POJ1456 Supermarket

[POJ1456]Supermarket(贪心 + 优先队列 || 并查集)

POJ1456:Supermarket(并查集+贪心)

nyoj 208 + poj 1456 Supermarket (贪心)