Codeforces Round #558 (Div. 2) C2. Power Transmission (Hard Edition)

链接

https://codeforces.com/contest/1163/problem/C2

题解

如果我找出了所有的直线,比方说有 m m m
那么答案就是用 C m 2 C_{m}^2 Cm2减去所有平行的选法

问题是怎么求出直线的条数

枚举点 i i i,然后枚举直线上另一个点 j j j,对于每种斜率的直线,我都记录这种直线上 j j j的最小值,如果发现最小值大于 i i i,就说明 i i i是这条直线上编号最小的点,此时把这条直线的斜率加入总的 m a p map map

代码

#include <bits/stdc++.h>
using namespace std;
#define maxn 1000010
#define eps 1e-8
typedef long long ll;
typedef pair<ll,ll> pll;
ll x[maxn], y[maxn];
map<pll,ll> cnt, tmp;
int main()
{
    ll n, i, j, a, b, l=0;
    cin>>n;
    for(i=1;i<=n;i++)cin>>x[i]>>y[i];
    for(i=1;i<=n;i++)
    {
        tmp.clear();
        for(j=1;j<=n;j++)
        {
            if(i==j)continue;
            ll x1, y1, x2, y2;
            if(x[i]<x[j])
            {
                x1=x[i], x2=x[j];
                y1=y[i], y2=y[j];
            }
            else if(x[i]>x[j])
            {
                x1=x[j], x2=x[i];
                y1=y[j], y2=y[i];
            }
            else
            {
                x1=x[i], x2=x[j];
                y1=min(y[i],y[j]), y2=max(y[i],y[j]);
            }
            
            ll dx=x2-x1, dy=y2-y1, g=__gcd(dx,abs(dy));
            dx/=g;
            dy/=g;
            if(tmp.find(pll(dx,dy))==tmp.end() or tmp[pll(dx,dy)]>j)
                tmp[pll(dx,dy)]=j;
        }
        for(auto pr:tmp)
            if(pr.second>i)
                cnt[pr.first]++, l++;
    }
    ll ans=l*(l-1)/2;
    for(auto pr:cnt)
    {
        ll c=pr.second;
        ans-=c*(c-1)/2;
    }
    cout<<ans<<endl;
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值