• HDU


    题目:

    Free DIY Tour

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


    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
     
     
      题意:给你一些点(n个),然后每个点都有一个权值,每走到一个点就可以得到这个点这么多的价值,然后给出边,问你从起点(1号点)走到第n+1号点,怎样走才可以使得到的价值最大,同时打印路径。同时还规定了这个图有某些特殊条件,1、只存在从编号小的点去到编号大的点,2、起点的价值为0。
      这一题一开始读错了题,以为是只可以从标号小的点去到编号大的点,于是就以为要用差分约束来做,后来才发现是读错题了= =,如果按照正确的题意来理解的话就会变成这样,图上面的边都是有向边,同时不存在环。然后,然后这一题就瞬间变成普通的最短路了= =,只是多了一个打印路径,这里我用的是递归的写法,主要是因为这里的点不多。
      因为一开始格式不对贡献了几个WA,看来以后要小心= =。
     
    代码:
     
     1 #include <cstdio>
     2 #include <cstring>
     3 #include <queue>
     4 #define MAX 50010
     5 #define INF 1000000000
     6 using namespace std;
     7 
     8 typedef struct
     9 {
    10     int to,l,next;
    11 }node;
    12 
    13 node N[MAX];
    14 int head[110],dis[110],val[110],per[110],tot,n;
    15 
    16 void add(int u,int v)
    17 {
    18     N[tot].to=v; N[tot].l=val[v]; N[tot].next=head[u]; head[u]=tot++;
    19 }
    20 
    21 void Init()
    22 {
    23     memset(N,0,sizeof(N));
    24     memset(head,-1,sizeof(head));
    25     memset(val,0,sizeof(val));
    26     memset(per,-1,sizeof(per));
    27     tot=0;
    28 }
    29 
    30 void spfa()
    31 {
    32     int i,u;
    33     queue<int> q;
    34     bool vin[110];
    35     for(i=2;i<=n+1;i++) dis[i]=-INF;
    36     dis[1]=0;
    37     memset(vin,0,sizeof(vin));
    38     q.push(1);
    39     vin[1]=1;
    40     while(!q.empty())
    41     {
    42         u=q.front();
    43         q.pop();
    44         vin[u]=0;
    45         for(i=head[u];i!=-1;i=N[i].next)
    46         {
    47             int len;
    48             len=dis[u]+N[i].l;
    49             if(dis[N[i].to]<len)
    50             {
    51                 dis[N[i].to]=len;
    52                 per[N[i].to]=u;
    53                 if(!vin[N[i].to])
    54                 {
    55                     q.push(N[i].to);
    56                     vin[N[i].to]=1;
    57                 }
    58             }
    59         }
    60     }
    61 }
    62 
    63 void print_path(int e)
    64 {
    65     if(per[e]>0) print_path(per[e]);
    66     if(e==n+1) printf("1");
    67     else
    68     {
    69         printf("%d->",e);
    70     }
    71 }
    72 
    73 int main()
    74 {
    75     int i,j,t,m,a,b;
    76     //freopen("data.txt","r",stdin);
    77     scanf("%d",&t);
    78     for(i=0;i<t;)
    79     {
    80         Init();
    81         scanf("%d",&n);
    82         for(j=1;j<=n;j++) scanf("%d",&val[j]);
    83         scanf("%d",&m);
    84         for(j=0;j<m;j++)
    85         {
    86             scanf("%d %d",&a,&b);
    87             add(a,b);
    88         }
    89         spfa();
    90         i++;
    91         printf("CASE %d#
    ",i);
    92         printf("points : %d
    ",dis[n+1]);
    93         printf("circuit : ");
    94         print_path(n+1);
    95         printf("
    ");
    96         if(i!=t) printf("
    ");
    97     }
    98     return 0;
    99 }
    1224
     
  • 相关阅读:
    第六章 装饰模式
    第二章 策略模式
    第一章 简单工厂模式
    HTTPS-post请求
    import&export
    Flask(Jinja2) 服务端模板注入漏洞vulhub
    MySQL UDF提权 过程及注意事项
    centos7 安装jdk1.8.0_271 以及错误解决
    WEB、FTP服务器所有响应码解释(超详细)
    Wolf CMS后台文件上传getshell并提权
  • 原文地址:https://www.cnblogs.com/sineatos/p/3304486.html
Copyright © 2020-2023  润新知