Ghosts CodeForces - 975D (数学推公式)

D. Ghosts
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Ghosts live in harmony and peace, they travel the space without any purpose other than scare whoever stands in their way.

There are nn ghosts in the universe, they move in the OXYOXY plane, each one of them has its own velocity that does not change in time: V=Vxi+VyjV→=Vxi→+Vyj→ where VxVx is its speed on the xx-axis and VyVy is on the yy-axis.

A ghost ii has experience value EXiEXi, which represent how many ghosts tried to scare him in his past. Two ghosts scare each other if they were in the same cartesian point at a moment of time.

As the ghosts move with constant speed, after some moment of time there will be no further scaring (what a relief!) and the experience of ghost kind GX=ni=1EXiGX=∑i=1nEXi will never increase.

Tameem is a red giant, he took a picture of the cartesian plane at a certain moment of time TT, and magically all the ghosts were aligned on a line of the form y=ax+by=a⋅x+b. You have to compute what will be the experience index of the ghost kind GXGX in the indefinite future, this is your task for today.

Note that when Tameem took the picture, GXGX may already be greater than 00, because many ghosts may have scared one another at any moment between [,T][−∞,T].

Input

The first line contains three integers nnaa and bb (1n2000001≤n≤2000001|a|1091≤|a|≤1090|b|1090≤|b|≤109) — the number of ghosts in the universe and the parameters of the straight line.

Each of the next nn lines contains three integers xixiVxiVxiVyiVyi (109xi109−109≤xi≤109109Vxi,Vyi109−109≤Vxi,Vyi≤109), where xixi is the current xx-coordinate of the ii-th ghost (and yi=axi+byi=a⋅xi+b).

It is guaranteed that no two ghosts share the same initial position, in other words, it is guaranteed that for all (i,j)(i,j) xixjxi≠xj for iji≠j.

Output

Output one line: experience index of the ghost kind GXGX in the indefinite future.

Examples
input
4 1 1
1 -1 -1
2 1 1
3 1 1
4 -1 -1
output
8
input
3 1 0
-1 1 0
0 0 -1
1 -1 -2
output
6
input
3 1 0
0 0 0
1 0 0
2 0 0
output
0
Note

There are four collisions (1,2,T0.5)(1,2,T−0.5)(1,3,T1)(1,3,T−1)(2,4,T+1)(2,4,T+1)(3,4,T+0.5)(3,4,T+0.5), where (u,v,t)(u,v,t) means a collision happened between ghosts uu and vv at moment tt. At each collision, each ghost gained one experience point, this means that GX=42=8GX=4⋅2=8.

In the second test, all points will collide when t=T+1t=T+1.

The red arrow represents the 1-st ghost velocity, orange represents the 2-nd ghost velocity, and blue represents the 3-rd ghost velocity.

题意:给出n个点和a,b,这n个点都在直线 y=ax+b上,现在,n个点给出点的横坐标x和这个点在x反向上的速度和在y方向上的速度,问,有多少个点可以相逢。

思路:推公式,设两个点在时间 t 后可以相逢,那么,

①对于x方向有:

xi+Vxi*t=xj+Vxj*t

②对于y方向有:

yi+Vyi*t=yj+Vyj*t

y=a*x+b

也就是说有

a*xi+b+Vyi*t=a*xj+b+Vyj*t

由于t相等,联立上面两式可以得出,如果两点在某处可以相逢,那么一定有

a*Vxi-Vyi=a*Vxj-Vyj

求出这些,就简单了(不过要注意的是 会爆int,所以要开long long 否则你会 wa on 8)

#include "iostream"
#include "map"
using namespace std;
typedef long long ll;
typedef pair<int,int> P;
map<ll,int> mp;
map<P,int> flag;
int main()
{
    mp.clear();
    flag.clear();
    ios::sync_with_stdio(false);
    int x,Vx,Vy;
    ll n,a,b,k,ans=0,t=0;
    P p;
    cin>>n>>a>>b;
    for(int i=0;i<n;i++){
        cin>>x>>Vx>>Vy;
        p.first=Vx,p.second=Vy;
        k=a*Vx-Vy;
        ans+=mp[k]++;
        t+=flag[p]++;
    }
    cout<<2*(ans-t)<<endl;
    return 0;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值