MYF

HDU 5738 Eureka

题目链接

HDU 5738

解题方法:平面几何计算

题目分析

题目大意

由题意转化一下可以了解到,这个问题是解决有多少种组合,使组合中的点在同一条线段上

解析

将点按一定顺序排序,然后对于每一个点找该点后面的所有点。当前点有多个点重合时,因为必须要取当前点,所以要将情况的数量乘以2^(k-1)-1,减一是去除这些同位置点都不取的情况,同理算出后面部分的元素数量p,共计2^(p-1)-1种情况,两者相乘则为对于当前点的情况数量。该取模的地方一定要取模,数据卡的还挺严的。

代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#include <set>
#include <map>
#include <stack>
#include <cmath>
#include <queue>
#include <cstdio>
#include <string>
#include <vector>
#include <iomanip>
#include <cstring>
#include <iostream>
#include <deque>
#include <algorithm>
#define Memset(a,val) memset(a,val,sizeof(a))
#define PI acos(-1)
#define rt(n) (i == n ? '\n' : ' ')
#define hi printf("Hi----------\n")
#define IN freopen("input.txt","r",stdin);
#define OUT freopen("output.txt","w",stdout);
#define pii pair<int,int>
#define debug(x) cout<<"Debug : ---"<<x<<"---"<<endl;
#pragma comment(linker, "/STACK:1024000000,1024000000")
typedef long long ll;
using namespace std;
const int maxn=100000+5;
const int mod=1000000007;
const int INF=0x3f3f3f3f;
const double eps=1e-8;
map<pii, int>mp;
struct point {
int x,y;
}p[1050];
bool cmp(point a,point b){
return a.x!=b.x?a.x<b.x:a.y<b.y;
}
ll qpow(ll a,ll n){
ll rt=1;
while (n) {
if (n&1) {
rt=rt*a%mod;
}
n>>=1;
a=a*a%mod;
}
return rt;
}
int main(){
int t;
scanf("%d",&t);
while (t--) {
ll ans=0;
int n;
scanf("%d",&n);
for (int i=0; i<n; i++) {
scanf("%d%d",&p[i].x,&p[i].y);
}
sort(p, p+n, cmp);
for (int i=0; i<n; i++) {
mp.clear();
int cnt=0;
for (int j=i+1; j<n; j++) {
if (p[i].x==p[j].x&&p[i].y==p[j].y) {
cnt++;
continue;
}
int tmpx = p[i].x - p[j].x;
int tmpy = p[i].y - p[j].y;
int gcd = __gcd(tmpx, tmpy);
mp[make_pair(tmpx/gcd, tmpy/gcd)]++;
}
ll base = qpow(2, cnt);
ans = (ans+base-1)%mod;
for (map<pii, int>::iterator it=mp.begin(); it!=mp.end(); it++) {
ll tmp = it->second;
ans += (qpow(2, tmp)-1)*base%mod;
ans %= mod;
}
}
cout<<ans<<endl;
}
}