zoukankan      html  css  js  c++  java
  • hdu 1224(动态规划 DAG上的最长路)

    Free DIY Tour

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
    Total Submission(s): 5815    Accepted Submission(s): 1855


    Problem Description
    Weiwei is a software engineer of ShiningSoft. He has just excellently fulfilled a software project with his fellow workers. His boss is so satisfied with their job that he decide to provide them a free tour around the world. It's a good chance to relax themselves. To most of them, it's the first time to go abroad so they decide to make a collective tour.

    The tour company shows them a new kind of tour circuit - DIY circuit. Each circuit contains some cities which can be selected by tourists themselves. According to the company's statistic, each city has its own interesting point. For instance, Paris has its interesting point of 90, New York has its interesting point of 70, ect. Not any two cities in the world have straight flight so the tour company provide a map to tell its tourists whether they can got a straight flight between any two cities on the map. In order to fly back, the company has made it impossible to make a circle-flight on the half way, using the cities on the map. That is, they marked each city on the map with one number, a city with higher number has no straight flight to a city with lower number.

    Note: Weiwei always starts from Hangzhou(in this problem, we assume Hangzhou is always the first city and also the last city, so we mark Hangzhou both 1 and N+1), and its interesting point is always 0.

    Now as the leader of the team, Weiwei wants to make a tour as interesting as possible. If you were Weiwei, how did you DIY it?
     
    Input
    The input will contain several cases. The first line is an integer T which suggests the number of cases. Then T cases follows.
    Each case will begin with an integer N(2 ≤ N ≤ 100) which is the number of cities on the map.
    Then N integers follows, representing the interesting point list of the cities.
    And then it is an integer M followed by M pairs of integers [Ai, Bi] (1 ≤ i ≤ M). Each pair of [Ai, Bi] indicates that a straight flight is available from City Ai to City Bi.
     
    Output
    For each case, your task is to output the maximal summation of interesting points Weiwei and his fellow workers can get through optimal DIYing and the optimal circuit. The format is as the sample. You may assume that there is only one optimal circuit.

    Output a blank line between two cases.
     
    Sample Input
    2 3 0 70 90 4 1 2 1 3 2 4 3 4 3 0 90 70 4 1 2 1 3 2 4 3 4
     
    还是坑人的格式问题...dp[i] = max(dp[i],dp[j]+v[i])
    #include <iostream>
    #include <stdio.h>
    #include <string.h>
    #include <stdlib.h>
    #include <math.h>
    #include <algorithm>
    #define N 105
    using namespace std;
    
    int dp[N];  ///dp[i]表示前i个城市能够获得的最大权值
    int mp[N][N];
    int v[N];
    int pre[N];
    int path[N];
    int main()
    {
        int tcase;
        scanf("%d",&tcase);
        int cnt = 1;
        while(tcase--){
            int n,m;
            scanf("%d",&n);
    
            memset(dp,0,sizeof(dp));
            memset(mp,0,sizeof(mp));
            for(int i=1;i<=n;i++){
                scanf("%d",&v[i]);
            }
            v[n+1]=0;///不要忘了,会WA
            scanf("%d",&m);
            int a,b;
            for(int i=1;i<=m;i++){
                scanf("%d%d",&a,&b);
                mp[a][b]=1;
            }
            for(int i=1;i<=n+1;i++){
                for(int j=1;j<i;j++){
                    if(mp[j][i]==1){
                        if(dp[i]<dp[j]+v[i]){
                            dp[i]=dp[j]+v[i];
                            pre[i]=j;
                        }
                    }
                }
            }
            printf("CASE %d#
    points : %d
    ",cnt++,dp[n+1]);
            int t = n+1;
            int k=0;
            while(t!=1){
                path[++k] = pre[t];
                t=pre[t];
            }
            printf("circuit : ");
            for(int i=k;i>=1;i--)printf("%d->",path[i]);
            printf("1
    ");
            if(tcase) printf("
    ");
        }
        return 0;
    }
  • 相关阅读:
    集合中的3个经典练习题
    创建泛类集合List以及数组转集合,集合转数组的应用
    添加一个txt文件(例如在桌面),利用后台对文件写入内容
    File类的创建,删除文件
    集合中存放随机数的问题之解析
    集合中的类型转化 以及求集合中元素的最大值,平均值
    response.sendRedirect()使用注意事项
    request.getContextPath是为了解决相对路径的问题,可返回站点的根路径
    java中instanceof的用法
    getParameter 与 getAttribute的区别
  • 原文地址:https://www.cnblogs.com/liyinggang/p/5418705.html
Copyright © 2011-2022 走看看