日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

CodeForces - 514B Han Solo and Lazer Gun

發布時間:2023/12/20 编程问答 37 豆豆
生活随笔 收集整理的這篇文章主要介紹了 CodeForces - 514B Han Solo and Lazer Gun 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

題意:

? ? ? ? 給出N個點,和起始點X0,Y0,求N個點中有幾組不同斜率與原點連接后斜率不同的點

思路:

? ? ? ? 考慮到可能出現的精度丟失,使用的分數的形式表示每個斜率,再用map去重就可以了

代碼:

#include <iostream> #include <map> using namespace std;int n,w,z,x0,y0;int gcd(int x,int y){if(y) return gcd(y,x%y);return x; } int main() {ios::sync_with_stdio(false);while(cin>>n){cin>>x0>>y0;map <pair<int,int>,int > mp;int ans=0;while(n--){cin>>w>>z;w-=x0;z-=y0;int temp=gcd(w,z);w/=temp;z/=temp;if(!mp[make_pair(w,z)]++)ans++;}cout<<ans<<endl;} }

There are?n?Imperial stormtroopers on the field. The battle field is a plane with Cartesian coordinate system. Each stormtrooper is associated with his coordinates(x,?y)?on this plane.

Han Solo has the newest duplex lazer gun to fight these stormtroopers. It is situated at the point?(x0,?y0). In one shot it can can destroy all the stormtroopers, situated on some line that crosses point?(x0,?y0).

Your task is to determine what minimum number of shots Han Solo needs to defeat all the stormtroopers.

The gun is the newest invention, it shoots very quickly and even after a very large number of shots the stormtroopers don't have enough time to realize what's happening and change their location.

Input

The first line contains three integers?n,?x0?и?y0?(1?≤?n?≤?1000,??-?104?≤?x0,?y0?≤?104) — the number of stormtroopers on the battle field and the coordinates of your gun.

Next?n?lines contain two integers each?xi,?yi?(?-?104?≤?xi,?yi?≤?104) — the coordinates of the stormtroopers on the battlefield. It is guaranteed that no stormtrooper stands at the same point with the gun. Multiple stormtroopers can stand at the same point.

Output

Print a single integer — the minimum number of shots Han Solo needs to destroy all the stormtroopers.

Example
Input 4 0 0 1 1 2 2 2 0 -1 -1 Output 2 Input 2 1 2 1 1 1 0 Output 1
Note

Explanation to the first and second samples from the statement, respectively:


總結

以上是生活随笔為你收集整理的CodeForces - 514B Han Solo and Lazer Gun的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。