題意: 輸入n個數, 求這n個數的n^2個兩兩組合的最大公約數x,x(x-1)之和 。
換個思路, 我們如果求出了最大公約數為x的對數cnt, 那么答案就增加x(x-1)cnt^2
那么怎么求以x為最大公約數的對數呢?
我們枚舉x的整數倍, 這樣就可以知道這些數中是x的整數倍的數有多少個。
那么到底哪些數才是x的最大公約數呢? ? 顯然, 應該滿足:能被x正處而不能被x的倍數整除。
假設能被x整除的數有k1個,能被2x整除的數有k2個, 能被3x整除的數有k3個......
所以gcd() == x 的數就是 ?k1 - k2 - k3 .......
細節參見代碼:
~~~
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<iostream>
#include<string>
#include<vector>
#include<stack>
#include<bitset>
#include<cstdlib>
#include<cmath>
#include<set>
#include<list>
#include<deque>
#include<map>
#include<queue>
#define Max(a,b) a>b?a:b
#define Min(a,b) a<b?a:b
using namespace std;
typedef long long ll;
const double PI = acos(-1.0);
const double eps = 1e-6;
const int INF = 1000000000;
const int mod = 10007;
const int maxn = 10000+5;
int T,n,m;
ll a[maxn],cnt[maxn],d[maxn];
int main() {
while(~scanf("%d",&n)) {
ll maxv = 0;
memset(cnt, 0, sizeof(cnt));
memset(d, 0, sizeof(d));
for(int i=0;i<n;i++) {
scanf("%I64d",&a[i]);
cnt[a[i]]++;
maxv = max(maxv, a[i]);
}
ll ans = 0;
for(int i=2;i<=maxv;i++) {
for(int j=i;j<=maxv;j+=i) {
d[i] += cnt[j];
}
d[i] *= d[i];
}
for(ll i=maxv; i>1; i--) {
for(int j=i*2;j<=maxv;j+=i) {
d[i] -= d[j];
}
ans = (ans+(i*(i-1))*d[i]%mod)%mod;
}
printf("%d\n",ans);
}
return 0;
}
~~~
- 前言
- 1608 - Non-boring sequences(折半遞歸。。暫且這么叫吧)
- 11491 - Erasing and Winning(貪心)
- 1619 - Feel Good(高效算法-利用數據結構優化-優先隊列)
- hdu-4127 Flood-it!(IDA*算法)
- UESTC 1132 醬神賞花 (用數據結構優化DP)
- HDU 2874 Connections between cities(LCA離線算法)
- Codeforces Round #317 A. Lengthening Sticks(組合+容斥)
- HDU 3085 Nightmare Ⅱ(雙向BFS)
- HDU 5592 ZYB&#39;s Premutation(二分+樹狀數組)
- Codeforces Round #320 (Div. 1) C. Weakness and Poorness(三分)
- HDU 5212 Code(容斥)
- HDU 5596 GTW likes gt(multiset)
- FZU 2159 WuYou(貪心)
- HDU 3450 Counting Sequences(DP + 樹狀數組)
- HDU 5493 Queue(二分+樹狀數組)
- HDU 1166 敵兵布陣(線段樹版)
- HDU 1394 Minimum Inversion Number(樹狀數組||線段樹)
- HDU 2795 Billboard(線段樹)
- POJ 2828 Buy Tickets(樹狀數組)
- 《完全版線段樹》- NotOnlySuccess
- POJ 2886 Who Gets the Most Candies?(樹狀數組+二分)
- HDU 1698 Just a Hook(線段樹區間修改)
- POJ 3468 A Simple Problem with Integers(線段樹|區間加減&amp;&amp;區間求和)
- POJ 2528 Mayor&#39;s posters(線段樹區間修改+離散化)
- HDU 5606 tree(并查集)
- POJ 3734 Blocks(矩陣優化+DP)
- POJ 3233 Matrix Power Series(矩陣優化)
- HDU 5607 graph(矩陣優化+概率DP)
- POJ 2777 Count Color(線段樹區間修改+位運算)
- POJ 1436 Horizontally Visible Segments(線段樹區間修改)
- UVA 1513 - Movie collection(樹狀數組)
- UVA 1232 - SKYLINE(線段樹區間更新)
- 11525 - Permutation(二分+樹狀數組)
- 11402 - Ahoy, Pirates!(線段樹區間更新(標記重疊的處理))
- Educational Codeforces Round 6 E. New Year Tree(DFS序+線段樹)