昆明网站建设公司,wordpress采集别人公众号,保险平台有哪些,做阿里巴巴网站找谁传送门 文章目录题意#xff1a;思路#xff1a;题意#xff1a; 思路#xff1a;
看错题导致误入歧途#xff0c;如果能早点看见翻译也不至于一天多也没想出来。 求联通的最小代价#xff0c;自然的想到了能不能建边跑最小生成树。 对于两点之间比较好弄#xff0c;直…传送门
文章目录题意思路题意 思路
看错题导致误入歧途如果能早点看见翻译也不至于一天多也没想出来。 求联通的最小代价自然的想到了能不能建边跑最小生成树。 对于两点之间比较好弄直接n2n^2n2暴力建边即可。对于给每个点建发电站的代价我们可以设置一个虚拟节点将所有点向其连个边即可。 让后跑一个裸的最小生成树注意数组要开大点以及要开LLLLLL。
// Problem: D. Shichikuji and Power Grid
// Contest: Codeforces - Codeforces Round #597 (Div. 2)
// URL: https://codeforces.com/contest/1245/problem/D
// Memory Limit: 256 MB
// Time Limit: 2000 ms
//
// Powered by CP Editor (https://cpeditor.org)//#pragma GCC optimize(Ofast,no-stack-protector,unroll-loops,fast-math)
//#pragma GCC target(sse,sse2,sse3,ssse3,sse4.1,sse4.2,avx,avx2,popcnt,tunenative)
//#pragma GCC optimize(2)
#includecstdio
#includeiostream
#includestring
#includecstring
#includemap
#includecmath
#includecctype
#includevector
#includeset
#includequeue
#includealgorithm
#includesstream
#includectime
#includecstdlib
#includerandom
#includecassert
#define X first
#define Y second
#define L (u1)
#define R (u1|1)
#define pb push_back
#define mk make_pair
#define Mid ((tr[u].ltr[u].r)1)
#define Len(u) (tr[u].r-tr[u].l1)
#define random(a,b) ((a)rand()%((b)-(a)1))
#define db puts(---)
using namespace std;//void rd_cre() { freopen(d://dp//data.txt,w,stdout); srand(time(NULL)); }
//void rd_ac() { freopen(d://dp//data.txt,r,stdin); freopen(d://dp//AC.txt,w,stdout); }
//void rd_wa() { freopen(d://dp//data.txt,r,stdin); freopen(d://dp//WA.txt,w,stdout); }typedef long long LL;
typedef unsigned long long ULL;
typedef pairint,int PII;const int N6000010,mod1e97,INF0x3f3f3f3f;
const double eps1e-6;int n;
int p[N],k[N];
PII a[N];
struct Edge {int a,b;LL w;bool operator (const EdgeW) const {return wW.w;}
}edge[N];int find(int x) {return xp[x]? x:p[x]find(p[x]);
}int get(int i,int j) {int dxa[i].X-a[j].X;int dya[i].Y-a[j].Y;return abs(dx)abs(dy);
}int main()
{
// ios::sync_with_stdio(false);
// cin.tie(0);cinn;int tot0;for(int i1;in;i) scanf(%d%d,a[i].X,a[i].Y);for(int i1;in;i) {int x; scanf(%d,x);edge[tot]{0,i,x};}for(int i1;in;i) {scanf(%d,k[i]);for(int j1;ji;j) edge[tot]{i,j,1ll*(k[i]k[j])*get(i,j)};}sort(edge1,edge1tot);for(int i1;in;i) p[i]i;LL ans0;vectorintv1; vectorPIIv2;for(int i1;itot;i) {int aedge[i].a,bedge[i].b; LL wedge[i].w;int pafind(a),pbfind(b);if(papb) continue;if(a0||b0) v1.pb(max(a,b));else v2.pb({a,b});p[pa]pb; answ;}coutansendl;printf(%d\n,v1.size()); for(auto x:v1) printf(%d ,x); puts();printf(%d\n,v2.size()); for(auto x:v2) printf(%d %d\n,x.X,x.Y); puts();return 0;
}
/**/