题目:光玉小镇 分析:首先将每个电线杆标号,之后bfs建图,建完图后就是道状压dp的模板题了(旅行商问题)。 #include <bits/stdc++.h> using namespace std; typedef long long ll; const ll INF=1e12+10; const int N=205; typedef pair<int,int> P; typedef struct Node{ P point; int H; }Node; int Next[][2]={{1,0},{-1,0},{0,1},{0,-1}}; int n,m,t,c...