日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

HDOJ 1224 Free DIY Tour

發布時間:2025/7/14 编程问答 26 豆豆
生活随笔 收集整理的這篇文章主要介紹了 HDOJ 1224 Free DIY Tour 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
簡單DP

Free DIY Tour

Time Limit: 2000/1000 MS (Java/Others)????Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 2550????Accepted Submission(s): 838


Problem DescriptionWeiwei 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?andN+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?

InputThe 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.

OutputFor 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 Input230 70 9041 21 32 43 430 90 7041 21 32 43 4
Sample OutputCASE 1#points : 90circuit : 1->3->1CASE 2#points : 90circuit : 1->2->1
AuthorJGShining(極光炫影)
Source杭州電子科技大學第三屆程序設計大賽
RecommendIgnatius.L

#include <iostream>#include <cstdio>#include <cstring>
using namespace std;
int vis[111][111]; ?///vis[a]int dp[111];int f[111];int p[111];int T,n,m;
int main(){int cur=0;cin>>T;while(T--){memset(dp,0,sizeof(dp));memset(vis,0,sizeof(vis));memset(p,0,sizeof(p));cin>>n;for(int i=0;i<=n+1;i++)f=i;for(int i=1;i<=n;i++)cin>>p;cin>>m;int a,b;for(int i=0;i<m;i++){cin>>a>>b;vis[a]=1;}
for(int i=2;i<=n+1;i++){int ma=-999;for(int j=0;j<i;j++){if(vis[j])if(dp[j]>ma){f=j;ma=dp[j];}}if(ma==-999) ma=0;dp=ma+p;}/*for(int i=0;i<=n+1;i++)cout<<dp<<" ";cout<<"\n-------------"<<endl;*/int cnt=1;int aa[111];memset(aa,0,sizeof(aa));aa[0]=1;int k=n+1;while(f[k]!=k){aa[cnt]=f[k];k=f[k];cnt++;}/*for(int i=0;i<cnt;i++)cout<<aa<<" ";cout<<endl;*/printf("CASE %d#\n",++cur);printf("points : %d\n",dp[n+1]);printf("circuit : ");for(int i=cnt-1;i>=0;i--){cout<<aa;if(i!=0) ?cout<<"->";}cout<<endl;if(T!=0)cout<<endl;}
return 0;}

轉載于:https://www.cnblogs.com/CKboss/archive/2013/06/07/3351034.html

總結

以上是生活随笔為你收集整理的HDOJ 1224 Free DIY Tour的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。