-
Notifications
You must be signed in to change notification settings - Fork 0
/
P2196.cpp
57 lines (57 loc) · 1009 Bytes
/
P2196.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#include<bits/stdc++.h>
using namespace std;
int N;
int num[300];
bool links[300][300];
int dp[200];
int pre[300];
int main()
{
cin>>N;
for(int i=1;i<=N;i++)
{
cin>>num[i];
}
for(int i=1;i<=N-1;i++)
{
for(int j=i+1;j<=N;j++)
{
cin>>links[i][j];
links[j][i]=links[i][j];
}
}
for(int i=0;i<=N;i++){
pre[i]=i;
}
for(int i=1;i<=N;i++){
int maxi=i;
for(int j=1;j<=N;j++){
if(dp[j]>dp[maxi]&&links[j][i]==1){
maxi=j;
}
}
dp[i]=num[i]+dp[maxi];
pre[i]=maxi;
}
int maxi=0;
for(int i=1;i<=N;i++)
{
if(dp[i]>dp[maxi]){
maxi=i;
}
}
int i=maxi;
int *way=new int [N+1];
int l=0;
way[l++]=maxi;
while (pre[i]!=i)
{
way[l++]=pre[i];
i=pre[i];
}
for(int i=l-1;i>=0;i--){
cout<<way[i]<<' ';
}
cout<<endl<<dp[maxi];
return 0;
}