程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> 關於C++ >> POJ1062

POJ1062

編輯:關於C++

Description
年輕的探險家來到了一個印第安部落裡。在那裡他和酋長的女兒相愛了,於是便向酋長去求親。酋長要他用10000個金幣作為聘禮才答應把女兒嫁給他。探險家拿不出這麼多金幣,便請求酋長降低要求。酋長說:”嗯,如果你能夠替我弄到大祭司的皮襖,我可以只要8000金幣。如果你能夠弄來他的水晶球,那麼只要5000金幣就行了。”探險家就跑到大祭司那裡,向他要求皮襖或水晶球,大祭司要他用金幣來換,或者替他弄來其他的東西,他可以降低價格。探險家於是又跑到其他地方,其他人也提出了類似的要求,或者直接用金幣換,或者找到其他東西就可以降低價格。不過探險家沒必要用多樣東西去換一樣東西,因為不會得到更低的價格。探險家現在很需要你的幫忙,讓他用最少的金幣娶到自己的心上人。另外他要告訴你的是,在這個部落裡,等級觀念十分森嚴。地位差距超過一定限制的兩個人之間不會進行任何形式的直接接觸,包括交易。他是一個外來人,所以可以不受這些限制。但是如果他和某個地位較低的人進行了交易,地位較高的的人不會再和他交易,他們認為這樣等於是間接接觸,反過來也一樣。因此你需要在考慮所有的情況以後給他提供一個最好的方案。
為了方便起見,我們把所有的物品從1開始進行編號,酋長的允諾也看作一個物品,並且編號總是1。每個物品都有對應的價格P,主人的地位等級L,以及一系列的替代品Ti和該替代品所對應的”優惠”Vi。如果兩人地位等級差距超過了M,就不能”間接交易”。你必須根據這些數據來計算出探險家最少需要多少金幣才能娶到酋長的女兒。

Input
輸入第一行是兩個整數M,N(1 <= N <= 100),依次表示地位等級差距限制和物品的總數。接下來按照編號從小到大依次給出了N個物品的描述。每個物品的描述開頭是三個非負整數P、L、X(X < N),依次表示該物品的價格、主人的地位等級和替代品總數。接下來X行每行包括兩個整數T和V,分別表示替代品的編號和”優惠價格”。

Output
輸出最少需要的金幣數。

Sample Input

1 4
10000 3 2
2 8000
3 5000
1000 2 1
4 200
3000 2 1
4 200
50 2 0

Sample Output

5250

Source
浙江

根據題意,建圖很容易,但是難點在於如何把握等級,我們考慮分區間,可以和1交易的點的等級一定處在[m1 - m, m1 + m],然後我們考慮 [m1 - m, m1] , [m1 - m + 1, m1 + 1]…..[m, m1 + m] 這些區間,然後再建圖,求最小代價即可

/*************************************************************************
    > File Name: poj1062.cpp
    > Author: ALex
    > Mail: [email protected] 
    > Created Time: 2015年02月05日 星期四 17時57分51秒
 ************************************************************************/

#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
using namespace std;

const double pi = acos(-1);
const int inf = 0x3f3f3f3f;
const double eps = 1e-15;
typedef long long LL;
typedef pair  PLL;

const int N = 200;
int head[N], dist[N];
int tot;

vector  re[N];

struct DATA
{
    int c;
    int sta;
    int num;
}res[N];

struct node
{
    int w;
    int next;
    int to;
}edge[N * N];

void addedge (int from, int to, int w)
{
    edge[tot].w = w;
    edge[tot].to = to;
    edge[tot].next = head[from];
    head[from] = tot++;
}

void spfa (int s)
{
    memset (dist, inf, sizeof(dist));
    dist[s] = 0;
    queue  qu;
    while (!qu.empty())
    {
        qu.pop();
    }
    qu.push (s);
    while (!qu.empty())
    {
        int u = qu.front();
        qu.pop();
        for (int i = head[u]; ~i; i = edge[i].next)
        {
            int v = edge[i].to;
            if (dist[v] > dist[u] + edge[i].w)
            {
                dist[v] = dist[u] + edge[i].w;
                qu.push (v);
            }
        }
    }
}

int main ()
{
    int m, n, c, w;
    while (~scanf("%d%d", &m, &n))
    {
        for (int i = 1; i <= n; ++i)
        {
            re[i].clear();
        }
        for (int i = 1; i <= n; ++i)
        {
            scanf("%d%d%d", &res[i].c, &res[i].sta, &res[i].num);
            for (int j = 1; j <= res[i].num; ++j)
            {
                scanf("%d%d", &c, &w);
                re[i].push_back ( make_pair(c, w) );
            }
        }
        int ans = inf;
        for (int i = res[1].sta - m; i <= res[1].sta; ++i)
        {
            memset (head, -1, sizeof(head));
            tot = 0;
            int j = i + m;
//          printf("[%d, %d]\n", i, j);
            for (int k = 1; k <= n; ++k)
            {
                if (res[k].sta > j || res[k].sta < i)
                {
                    continue;
                }
                addedge (n + 1, k, res[k].c);
//              printf("<%d, %d> cost %d\n", n + 1, k, res[k].c);
                int size = re[k].size();
                for (int l = 0; l < size; ++l)
                {
                    int x = re[k][l].first;
                    int y = re[k][l].second;
                    if (res[x].sta < i || res[x].sta > j)
                    {
                        continue;
                    }
                    addedge (x, k, y);
//                  printf("<%d, %d> cost %d\n", x, k, y);
                }
            }
            spfa (n + 1);
            ans = min (ans, dist[1]);
        }
        printf("%d\n", ans);
    }
    return 0;
}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved