阿里巴巴在线笔试题——第一象限坐标点中,原点处能看到的个数

点点圈 提交于 2020-03-24 23:02:14

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
class stu
{
public:
int x;
int y;
float slope;
};
int main()
{
int s;
cin>>s;
int n=s+1;
stu* stud = new stu[n*n];
int k =0;
for(int i = 0;i < n;i++)
{
for(int j = 0;j < n;j++)
{
stud[k+j].x =((k+i)/n);
stud[k+j].y = j;
}
k=k+n;
}
vector<float>v;
for(int k=0;k<n*n;k++)
{
if(stud[k].x != 0)
{
stud[k].slope = (float)stud[k].y/stud[k].x;
v.push_back(stud[k].slope);
}
}
sort(v.begin(),v.end());
v.erase(unique(v.begin(), v.end()), v.end());
cout << v.size()+1 <<endl;
delete [] stud;
return 0;
}

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!