zoukankan      html  css  js  c++  java
  • Free DIY Tour_DP

    Time Limit : 2000/1000ms (Java/Other)   Memory Limit : 65536/32768K (Java/Other)
    Total Submission(s) : 44   Accepted Submission(s) : 12

    Font: Times New Roman | Verdana | Georgia

    Font Size: ← →

    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
    

    Sample Output

    CASE 1#
    points : 90
    circuit : 1->3->1
    
    CASE 2#
    points : 90
    circuit : 1->2->1

    题目是说给你一个有环的图,结点之间有路径,每个结点都有个兴趣值,现在给你起点,找一条路径再次回到起点,使经过的结点的兴趣值总和最大,问最大的总和是多少并且输出其路径

    #include<iostream>
    #include<stdio.h>
    #include<string.h>
    using namespace std;
    const int N=105;
    int dp[N],pre[N],a[N];
    int mp[N][N];
    void print(int k)//递归输出路径
    {
        if(k==1)
        {
            printf("1");
            return;
        }
        print(pre[k]);
        printf("->%d",k);
    }
    int main()
    {
        int t;
        int n,m;
        int cas=0;
        cin>>t;
        while(t--)
        {
            cas++;
            memset(dp,0,sizeof(dp));
            memset(pre,0,sizeof(pre));
            memset(mp,0,sizeof(mp));
            cin>>n;
            for(int i=1;i<=n;i++)
            {
                cin>>a[i];
            }
            cin>>m;
            for(int i=1;i<=m;i++)
            {
                int p,q;
                cin>>p>>q;
                mp[p][q]=1;
            }
            a[n+1]=0;
            for(int i=1;i<=n+1;i++)
                for(int j=1;j<i;j++)
            {
                if(mp[j][i])
                {
                    if(dp[j]+a[i]>dp[i])
                    {
                        dp[i]=dp[j]+a[i];
                        pre[i]=j;
                    }
                }
            }
            if(cas!=1) cout<<endl;
             printf("CASE %d#
    ",cas);
             printf("points : %d
    ",dp[n+1]);
             printf("circuit : ");
             print(pre[n+1]);
             printf("->%d
    ",1);
    
        }
        return 0;
    }
    

      

  • 相关阅读:
    测试同学都应该知道的断言知识...
    自己如何修改Airtest的源码
    如何选择适合你的图像识别算法
    如何测试基于Unity3D引擎的游戏
    Web前端-按钮点击效果(水波纹)
    C# Email 帮助类 EmailHelper
    WinForm 加载大数据时不闪烁的ListView
    LZZ磁力资源搜索4.2.2,整合多个站点,大部分资源都能搜到
    C#7.0新特性和语法糖详解
    6种css3 transform图片悬停动态效果
  • 原文地址:https://www.cnblogs.com/iwantstrong/p/5741712.html
Copyright © 2011-2022 走看看