BZOJ4536 : 最大异或和II
建立个点的无向图,其中个点表示输入的数列,个点表示答案的个二进制位。
- 对于输入的两个数,若它们存在公共二进制位,则可以通过同时选某一公共位来对答案贡献,并完成两个数的选择,因此在数和数之间连边,边权为二维权值。
- 对于输入的某个数,若它二进制下第位为,则可以通过让它选这一位来对答案贡献,因此在数和位之间连边,边权为二维权值。
显然每个点最多只允许匹配一次,目标就是最大化二维权值的总和,即先保证个数都完成了选择,再最大化每一位选择个数为奇数的贡献和。
利用一般图最大权匹配算法求出答案即可。
时间复杂度。
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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 | #include<bits/stdc++.h> using namespace std; typedef long long ll; const int N=1023; struct Num{ int a;ll b; Num(){a=b=0;} Num( int _a,ll _b){a=_a;b=_b;} Num operator+( const Num&p) const { return Num(a+p.a,b+p.b);} Num operator-( const Num&p) const { return Num(a-p.a,b-p.b);} Num operator*( int p) const { return Num(a*p,b*p);} Num operator/( int p) const { return Num(a/p,b/p);} void operator+=( const Num&p){a+=p.a;b+=p.b;} void operator-=( const Num&p){a-=p.a;b-=p.b;} bool operator<( const Num&p) const { if (a!=p.a) return a<p.a; return b<p.b; } bool operator>( const Num&p) const { if (a!=p.a) return a>p.a; return b>p.b; } bool operator<=( const Num&p) const { if (a!=p.a) return a<p.a; return b<=p.b; } bool operator==( const Num&p) const { return a==p.a&&b==p.b;} }; const Num INF(1e9,4e18),ZERO(0,0); struct Edge{ int u,v;Num w; Edge(){} Edge( int _u, int _v, const Num&_w){u=_u,v=_v,w=_w;} }g[N][N]; int n,n_x,match[N],slack[N],st[N],pa[N],flower_from[N][N],S[N],vis[N]; Num lab[N]; vector< int > flower[N]; deque< int > q; inline Num DIST( const Edge&e){ return lab[e.u]+lab[e.v]-g[e.u][e.v].w*2;} inline void update_slack( int u, int x){ if (!slack[x]||DIST(g[u][x])<DIST(g[slack[x]][x]))slack[x]=u; } inline void set_slack( int x){ slack[x]=0; for ( int u=1; u<=n; ++u) if (g[u][x].w>ZERO&&st[u]!=x&&S[st[u]]==0)update_slack(u,x); } inline void q_push( int x){ if (x<=n) return q.push_back(x); for ( int i=0; i<flower[x].size(); i++)q_push(flower[x][i]); } inline void set_st( int x, int b){ st[x]=b; if (x<=n) return ; for ( int i=0; i<flower[x].size(); ++i)set_st(flower[x][i],b); } inline int get_pr( int b, int xr){ int pr=find(flower[b].begin(),flower[b].end(),xr)-flower[b].begin(); if (pr%2==1){ reverse(flower[b].begin()+1,flower[b].end()); return ( int )flower[b].size()-pr; } else return pr; } inline void set_match( int u, int v){ match[u]=g[u][v].v; if (u<=n) return ; Edge e=g[u][v]; int xr=flower_from[u][e.u],pr=get_pr(u,xr); for ( int i=0; i<pr; ++i)set_match(flower[u][i],flower[u][i^1]); set_match(xr,v); rotate(flower[u].begin(),flower[u].begin()+pr,flower[u].end()); } inline void augment( int u, int v){ int xnv=st[match[u]]; set_match(u,v); if (!xnv) return ; set_match(xnv,st[pa[xnv]]); augment(st[pa[xnv]],xnv); } inline int get_lca( int u, int v){ static int t=0; for (++t; u||v; swap(u,v)){ if (u==0) continue ; if (vis[u]==t) return u; vis[u]=t; u=st[match[u]]; if (u)u=st[pa[u]]; } return 0; } inline void add_blossom( int u, int lca, int v){ int b=n+1; while (b<=n_x&&st[b])++b; if (b>n_x)++n_x; lab[b]=ZERO; S[b]=0; match[b]=match[lca]; flower[b].clear(); flower[b].push_back(lca); for ( int x=u,y; x!=lca; x=st[pa[y]]) flower[b].push_back(x),flower[b].push_back(y=st[match[x]]),q_push(y); reverse(flower[b].begin()+1,flower[b].end()); for ( int x=v,y; x!=lca; x=st[pa[y]]) flower[b].push_back(x),flower[b].push_back(y=st[match[x]]),q_push(y); set_st(b,b); for ( int x=1; x<=n_x; ++x)g[b][x].w=g[x][b].w=ZERO; for ( int x=1; x<=n; ++x)flower_from[b][x]=0; for ( int i=0; i<flower[b].size(); ++i){ int xs=flower[b][i]; for ( int x=1; x<=n_x; ++x) if (g[b][x].w==ZERO||DIST(g[xs][x])<DIST(g[b][x])) g[b][x]=g[xs][x],g[x][b]=g[x][xs]; for ( int x=1; x<=n; ++x) if (flower_from[xs][x])flower_from[b][x]=xs; } set_slack(b); } inline void expand_blossom( int b){ for ( int i=0; i<flower[b].size(); ++i) set_st(flower[b][i],flower[b][i]); int xr=flower_from[b][g[b][pa[b]].u],pr=get_pr(b,xr); for ( int i=0; i<pr; i+=2){ int xs=flower[b][i],xns=flower[b][i+1]; pa[xs]=g[xns][xs].u; S[xs]=1,S[xns]=0; slack[xs]=0,set_slack(xns); q_push(xns); } S[xr]=1,pa[xr]=pa[b]; for ( int i=pr+1; i<flower[b].size(); ++i){ int xs=flower[b][i]; S[xs]=-1,set_slack(xs); } st[b]=0; } inline bool on_found_Edge( const Edge &e){ int u=st[e.u],v=st[e.v]; if (S[v]==-1){ pa[v]=e.u,S[v]=1; int nu=st[match[v]]; slack[v]=slack[nu]=0; S[nu]=0,q_push(nu); } else if (S[v]==0){ int lca=get_lca(u,v); if (!lca) return augment(u,v),augment(v,u),1; else add_blossom(u,lca,v); } return 0; } inline void umin(Num&a, const Num&b){ if (a>b)a=b;} inline bool matching(){ fill(S,S+n_x+1,-1),fill(slack,slack+n_x+1,0); q.clear(); for ( int x=1; x<=n_x; ++x) if (st[x]==x&&!match[x])pa[x]=0,S[x]=0,q_push(x); if (q.empty()) return 0; for (;;){ while (q.size()){ int u=q.front(); q.pop_front(); if (S[st[u]]==1) continue ; for ( int v=1; v<=n; ++v) if (g[u][v].w>ZERO&&st[u]!=st[v]){ if (DIST(g[u][v])==ZERO){ if (on_found_Edge(g[u][v])) return 1; } else update_slack(u,st[v]); } } Num d=INF; for ( int b=n+1; b<=n_x; ++b) if (st[b]==b&&S[b]==1)umin(d,lab[b]/2); for ( int x=1; x<=n_x; ++x) if (st[x]==x&&slack[x]){ if (S[x]==-1)umin(d,DIST(g[slack[x]][x])); else if (S[x]==0)umin(d,DIST(g[slack[x]][x])/2); } for ( int u=1; u<=n; ++u){ if (S[st[u]]==0){ if (lab[u]<=d) return 0; lab[u]-=d; } else if (S[st[u]]==1)lab[u]+=d; } for ( int b=n+1; b<=n_x; ++b) if (st[b]==b){ if (S[st[b]]==0)lab[b]+=d*2; else if (S[st[b]]==1)lab[b]-=d*2; } q.clear(); for ( int x=1; x<=n_x; ++x) if (st[x]==x&&slack[x]&&st[slack[x]]!=x&&DIST(g[slack[x]][x])==ZERO) if (on_found_Edge(g[slack[x]][x])) return 1; for ( int b=n+1; b<=n_x; ++b) if (st[b]==b&&S[b]==1&&lab[b]==ZERO)expand_blossom(b); } return 0; } inline pair<Num, int > weight_blossom(){ fill(match,match+n+1,0); n_x=n; int n_matches=0; Num tot_weight=ZERO; for ( int u=0; u<=n; ++u)st[u]=u,flower[u].clear(); Num w_max=ZERO; for ( int u=1; u<=n; ++u) for ( int v=1; v<=n; ++v){ flower_from[u][v]=(u==v?u:0); w_max=max(w_max,g[u][v].w); } for ( int u=1; u<=n; ++u)lab[u]=w_max; while (matching())++n_matches; for ( int u=1; u<=n; ++u) if (match[u]&&match[u]<u) tot_weight+=g[u][match[u]].w; return make_pair(tot_weight,n_matches); } ll a[N]; inline void add( int u, int v, const Num&w){g[u][v].w=g[v][u].w=w;} int main(){ int Case,_n,_m; scanf ( "%d" ,&Case); while (Case--){ scanf ( "%d" ,&_n); _m=60; n=_n+_m; for ( int u=1; u<=n; ++u) for ( int v=1; v<=n; ++v) g[u][v]=Edge(u,v,ZERO); for ( int i=1;i<=_n;i++) scanf ( "%lld" ,&a[i]); for ( int i=1;i<=_n;i++){ for ( int j=0;j<_m;j++) if (a[i]>>j&1)add(i,_n+j+1,Num(1,1LL<<j)); for ( int j=1;j<i;j++) if (a[i]&a[j])add(i,j,Num(2,0)); } pair<Num, int >ans=weight_blossom(); printf ( "%lld\n" ,ans.first.b); } return 0; } |
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 10年+ .NET Coder 心语 ── 封装的思维:从隐藏、稳定开始理解其本质意义
· 地球OL攻略 —— 某应届生求职总结
· 提示词工程——AI应用必不可少的技术
· Open-Sora 2.0 重磅开源!
· 字符编码:从基础到乱码解决
2017-12-12 BZOJ4858 : [Jsoi2016]炸弹攻击 2
2017-12-12 XV Open Cup named after E.V. Pankratiev. GP of America