图论、建图--bzoj1539: [POI2005]Dwu-Double-row
生活随笔
收集整理的這篇文章主要介紹了
图论、建图--bzoj1539: [POI2005]Dwu-Double-row
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
傳送門
純思路題···
兩個相同的身高,如果在同一行,就給這兩列之間連邊權為1的邊,如果不在就連邊權為0的邊
代表要反轉幾次
然后dfs染色,權值為1的邊兩邊的顏色不同,權值為0的邊兩邊顏色相同
每個聯通塊取點數小的顏色加入答案中
?
還有一些細節問題什么的
代碼如下:
#include<iostream> #include<cstdio> #include<algorithm> #include<cstring> #include<cmath> #define maxn 50005 using namespace std; int n,a[maxn],b[maxn],c[maxn<<1],num,pos1[maxn<<1][2],pos2[maxn<<1][2]; int cnt,head[maxn],col[maxn],cntc[5],ans;struct EDGE{int to,nxt,w; }edge[maxn<<2];inline int rd(){int x=0,f=1;char c=' ';while(c<'0' || c>'9') {if(c=='-')f=-1;c=getchar();}while(c<='9' && c>='0') x=x*10+c-'0',c=getchar();return x*f; }inline void add(int x,int y,int z){edge[++cnt].to=y;edge[cnt].nxt=head[x];edge[cnt].w=z;head[x]=cnt; }inline void dfs(int u){cntc[col[u]]++;for(int i=head[u];i;i=edge[i].nxt){int v=edge[i].to;if(!col[v]) {col[v]=col[u]^edge[i].w;dfs(v);}}return; }int main(){n=rd();for(int i=1;i<=n;i++) a[i]=rd(); for(int i=1;i<=n;i++) b[i]=rd();for(int i=1;i<=n;i++){if(!pos1[a[i]][0]) pos1[a[i]][0]=1,pos1[a[i]][1]=i;else pos2[a[i]][0]=1,pos2[a[i]][1]=i;}for(int i=1;i<=n;i++){if(!pos1[b[i]][0]) pos1[b[i]][0]=2,pos1[b[i]][1]=i;else if(!pos2[b[i]][0]) pos2[b[i]][0]=2,pos2[b[i]][1]=i;}for(int i=1;i<=100000;i++){if(!pos1[i][0] || !pos2[i][0]) continue;if(pos1[i][0]==pos2[i][0]){add(pos1[i][1],pos2[i][1],1);add(pos2[i][1],pos1[i][1],1);}else{add(pos1[i][1],pos2[i][1],0);add(pos2[i][1],pos1[i][1],0);}}for(int i=1;i<=n;i++){if(!col[i]){col[i]=2; cntc[2]=cntc[3]=0;dfs(i);ans+=min(cntc[2],cntc[3]);}}printf("%d\n",ans);return 0; }?
總結
以上是生活随笔為你收集整理的图论、建图--bzoj1539: [POI2005]Dwu-Double-row的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Planbar 2018 新功能 BIM
- 下一篇: GeneXus学习记录——环境搭建