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

歡迎訪問 生活随笔!

生活随笔

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

编程问答

牛客多校4 - Harder Gcd Problem(构造+贪心)

發布時間:2024/4/11 编程问答 33 豆豆
生活随笔 收集整理的這篇文章主要介紹了 牛客多校4 - Harder Gcd Problem(构造+贪心) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

題目鏈接:點擊查看

題目大意:給出一個 n ,表示 1 ~ n 的 n 個數字,現在要求選出盡可能多的兩兩匹配,使得每組匹配的 gcd 都大于 1,輸出最多能有多少組匹配,以及方案

題目分析:

這樣的貪心策略肯定是最優的,除了 p * 2 > n 的質數和 1 ,最多會有 1 個未匹配的數,其他的數都會兩兩匹配?

代碼:
?

#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> using namespace std;typedef long long LL;typedef unsigned long long ull;const int inf=0x3f3f3f3f;const int N=2e5+100;bool p[N],vis[N];void init() {for(int i=2;i<N;i++)if(!p[i])for(int j=i+i;j<N;j+=i)p[j]=true; }int main() { #ifndef ONLINE_JUDGE // freopen("data.in.txt","r",stdin); // freopen("data.out.txt","w",stdout); #endif // ios::sync_with_stdio(false);init();int w;cin>>w;while(w--){int n;scanf("%d",&n);memset(vis,false,n+5);vector<pair<int,int>>ans;for(int i=n/2;i>=2;i--)//枚舉小于等于n/2的質數{if(p[i])continue;int cnt=0;//有多少個含有質因子i且未被用過的合數for(int j=i;j<=n;j+=i)cnt+=!vis[j];if(i!=2&&cnt&1)//如果有奇數個可以匹配的合數,那么將2的倍數提出來vis[i*2]=true;int pre=-1;for(int j=i;j<=n;j+=i){if(vis[j])continue;vis[j]=true;if(pre==-1)pre=j;else{ans.emplace_back(pre,j);pre=-1;}}if(cnt&1)//回溯標記vis[i*2]=false;}printf("%d\n",ans.size());for(int i=0;i<ans.size();i++)printf("%d %d\n",ans[i].first,ans[i].second);}return 0; }

?

總結

以上是生活随笔為你收集整理的牛客多校4 - Harder Gcd Problem(构造+贪心)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。