标签:
题目地址:https://icpcarchive.ecs.baylor.edu/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=4634
思路:图中两条边之间不能交叉,则最终的选择的点集中的点只能有1,2,3,4个,暴力枚举即可。
#include<cstdio> #include<cstring> #include<iostream> #include<algorithm> using namespace std; const int maxn=1000; const int INF=0x3f3f3f3f; struct Node { int x,y; Node(int x=0,int y=0):x(x),y(y){} }; int n,m; int w[maxn]; Node p[maxn]; int g[maxn][maxn]; int main() { while(scanf("%d%d",&n,&m)!=EOF) { int ans=-INF; memset(g,0,sizeof(g)); for(int i=1;i<=n;i++) { scanf("%d",&w[i]); ans=max(ans,w[i]); } for(int i=1;i<=m;i++) { int u,v; scanf("%d%d",&u,&v); p[i]=Node(u,v); g[u][v]=1,g[v][u]=1; ans=max(ans,w[u]+w[v]); } for(int i=1;i<=m;i++) { int u=p[i].x,v=p[i].y; for(int j=1;j<=n;j++) { if(g[u][j]&&g[v][j]) ans=max(ans,w[u]+w[v]+w[j]); } } for(int i=1;i<=m;i++) for(int j=1;j<=m;j++) { int u1=p[i].x,v1=p[i].y; int u2=p[j].x,v2=p[j].y; if(g[u1][u2]&&g[u1][v2]&&g[u2][v1]&&g[v1][v2]) ans=max(ans,w[u1]+w[v1]+w[u2]+w[v2]); } printf("%d\n",ans); } return 0; }
UVAlive 6623 Battle for Silver(暴力+思路)
标签:
原文地址:http://blog.csdn.net/wang2147483647/article/details/52263133