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
求區(qū)間任意兩個(gè)數(shù)的最大gcd。做了幾個(gè)gcd的題目,貌似都是離線處理的。
對(duì)于兩個(gè)數(shù)的gcd,是因?yàn)檫@兩個(gè)數(shù)都有相同的約數(shù)x,這樣這兩個(gè)數(shù)的gcd才有可能是x。這樣我們用O(nsqrt n)的時(shí)間復(fù)雜度處理處所有的數(shù)約數(shù)。假如a[k]的一個(gè)約數(shù)是x,x上一次出現(xiàn)的位置是i。那么在i~k這一段的gcd有可能就會(huì)變成x。按著這個(gè)思路去更新,線段樹去求gcd最大值。詢問離線處理,當(dāng)現(xiàn)在處理的位置恰好是某一次詢問的右端點(diǎn)的話,就可以直接通過線段樹求出最大值gcd來了。
代碼如下:
努力加油a啊,(o)/~
總結(jié)
以上是生活随笔為你收集整理的No Pain No Game HDU - 4630(gcd+线段树+离线处理)的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: D-query SPOJ - DQUER
- 下一篇: Factories Gym - 1022