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

歡迎訪問 生活随笔!

生活随笔

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

编程问答

No Pain No Game HDU - 4630(gcd+线段树+离线处理)

發布時間:2023/12/15 编程问答 26 豆豆
生活随笔 收集整理的這篇文章主要介紹了 No Pain No Game HDU - 4630(gcd+线段树+离线处理) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

Life is a game,and you lose it,so you suicide.
But you can not kill yourself before you solve this problem:
Given you a sequence of number a 1, a 2, …, a n.They are also a permutation of 1…n.
You need to answer some queries,each with the following format:
If we chose two number a,b (shouldn’t be the same) from interval [l, r],what is the maximum gcd(a, b)? If there’s no way to choose two distinct number(l=r) then the answer is zero.
Input
First line contains a number T(T <= 5),denote the number of test cases.
Then follow T test cases.
For each test cases,the first line contains a number n(1 <= n <= 50000).
The second line contains n number a 1, a 2, …, a n.
The third line contains a number Q(1 <= Q <= 50000) denoting the number of queries.
Then Q lines follows,each lines contains two integer l, r(1 <= l <= r <= n),denote a query.
Output
For each test cases,for each query print the answer in one line.
Sample Input
1
10
8 2 4 9 5 7 10 6 1 3
5
2 10
2 4
6 9
1 4
7 10
Sample Output
5
2
2
4
3
求區間任意兩個數的最大gcd。做了幾個gcd的題目,貌似都是離線處理的。
對于兩個數的gcd,是因為這兩個數都有相同的約數x,這樣這兩個數的gcd才有可能是x。這樣我們用O(nsqrt n)的時間復雜度處理處所有的數約數。假如a[k]的一個約數是x,x上一次出現的位置是i。那么在i~k這一段的gcd有可能就會變成x。按著這個思路去更新,線段樹去求gcd最大值。詢問離線處理,當現在處理的位置恰好是某一次詢問的右端點的話,就可以直接通過線段樹求出最大值gcd來了。
代碼如下:

#include<bits/stdc++.h> #define ll long long using namespace std;const int maxx=5e4+100; struct node{int l;int r;int sum; }p[maxx<<2]; struct Node{int l;int r;int id;bool operator<(const Node &a)const{return a.r>r;} }b[maxx]; vector<int> g[maxx]; int a[maxx],ans[maxx]; int n,m; /*------------預處理出所有數的約數-------------*/ inline void init() {for(int i=1;i<=maxx;i++)for(int j=i;j<=maxx;j+=i)g[j].push_back(i); } /*---------------線段樹----------------*/ inline void pushup(int cur) {p[cur].sum=max(p[cur<<1].sum,p[cur<<1|1].sum); } inline void build(int l,int r,int cur) {p[cur].l=l;p[cur].r=r;p[cur].sum=0;if(l==r) return ;int mid=l+r>>1;build(l,mid,cur<<1);build(mid+1,r,cur<<1|1); } inline void update(int pos,int v,int cur) {int L=p[cur].l;int R=p[cur].r;if(L==R){p[cur].sum=max(p[cur].sum,v);return ;}int mid=L+R>>1;if(pos<=mid) update(pos,v,cur<<1);else update(pos,v,cur<<1|1);pushup(cur); } inline int query(int l,int r,int cur) {int L=p[cur].l;int R=p[cur].r;if(l<=L&&R<=r) return p[cur].sum;int mid=L+R>>1;if(r<=mid) return query(l,r,cur<<1);else if(l>mid) return query(l,r,cur<<1|1);else return max(query(l,mid,cur<<1),query(mid+1,r,cur<<1|1)); } int main() {init();int t,x;scanf("%d",&t);while(t--){map<int,int> mpp;scanf("%d",&n);for(int i=1;i<=n;i++) scanf("%d",&a[i]);scanf("%d",&m);for(int i=1;i<=m;i++) scanf("%d%d",&b[i].l,&b[i].r),b[i].id=i;sort(b+1,b+1+m);build(1,n,1);for(int i=1,j=1;i<=m&&j<=n;j++){for(int k=0;k<g[a[j]].size();k++){x=g[a[j]][k];if(mpp[x]!=0) update(mpp[x],x,1);mpp[x]=j;}for(i;i<=m&&j==b[i].r;i++) ans[b[i].id]=query(b[i].l,b[i].r,1);}for(int i=1;i<=m;i++) printf("%d\n",ans[i]);}return 0; }

努力加油a啊,(o)/~

總結

以上是生活随笔為你收集整理的No Pain No Game HDU - 4630(gcd+线段树+离线处理)的全部內容,希望文章能夠幫你解決所遇到的問題。

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