日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

CodeForces - 165E Compatible Numbers(SOSdp)

發(fā)布時間:2024/4/11 编程问答 31 豆豆
生活随笔 收集整理的這篇文章主要介紹了 CodeForces - 165E Compatible Numbers(SOSdp) 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

題目鏈接:點擊查看

題目大意:給出 nnn 個數(shù),問能否在數(shù)列中找到一個數(shù),滿足 ai&aj=0a_i\& a_j=0ai?&aj?=0

題目分析:題目中的式子可以轉(zhuǎn)換為,aia_iai?aja_jaj? 補集的子集,然后就是 SOSdpSOSdpSOSdp 的模板題了,因為輸出的答案涉及到了 ?1-1?1,所以可以將 dpdpdp 初始化為 ?1-1?1,然后直接維護每個超集的最大可行答案就好啦

轉(zhuǎn)移的話就是子集向超集轉(zhuǎn)移

代碼:

// Problem: E. Compatible Numbers // Contest: Codeforces - Codeforces Round #112 (Div. 2) // URL: https://codeforces.com/contest/165/problem/E // Memory Limit: 256 MB // Time Limit: 4000 ms // // Powered by CP Editor (https://cpeditor.org)// #pragma GCC optimize(2) // #pragma GCC optimize("Ofast","inline","-ffast-math") // #pragma GCC target("avx,sse2,sse3,sse4,mmx") #include<iostream> #include<cstdio> #include<string> #include<ctime> #include<cmath> #include<cstring> #include<algorithm> #include<stack> #include<climits> #include<queue> #include<map> #include<set> #include<sstream> #include<cassert> #include<bitset> #include<list> #include<unordered_map> #define lowbit(x) x&-x using namespace std; typedef long long LL; typedef unsigned long long ull; template<typename T> inline void read(T &x) {T f=1;x=0;char ch=getchar();while(0==isdigit(ch)){if(ch=='-')f=-1;ch=getchar();}while(0!=isdigit(ch)) x=(x<<1)+(x<<3)+ch-'0',ch=getchar();x*=f; } template<typename T> inline void write(T x) {if(x<0){x=~(x-1);putchar('-');}if(x>9)write(x/10);putchar(x%10+'0'); } const int inf=0x3f3f3f3f; const int N=1<<22; int a[N],dp[N]; int main() { #ifndef ONLINE_JUDGE // freopen("data.in.txt","r",stdin); // freopen("data.out.txt","w",stdout); #endif // ios::sync_with_stdio(false);memset(dp,-1,sizeof(dp));int n;read(n);for(int i=1;i<=n;i++) {read(a[i]);dp[a[i]]=a[i];}for(int j=0;j<22;j++) {for(int i=0;i<1<<22;i++) {//子集向超集轉(zhuǎn)移if((i>>j)&1) {dp[i]=max(dp[i],dp[i^(1<<j)]);}}}for(int i=1;i<=n;i++) {printf("%d ",dp[(N-1)^a[i]]);}return 0; }

總結(jié)

以上是生活随笔為你收集整理的CodeForces - 165E Compatible Numbers(SOSdp)的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。