[2018.10.17 T1] 斜率
阿新 • • 發佈:2018-11-09
暫無連結
斜率
【題目描述】
給定平面上 個點的座標,求所有經過這些點中至少兩個點的直線的最大斜率。
【輸入格式】
第一行一個整數
,表示點的個數。
接下來
行,每行兩個正整數
,描述每個點的座標。
【輸出格式】
一行一個實數表示答案,保留小數點後 位。
【樣例 1】
slope. in
3
1 2
2 3
3 4
slope.out
1.000
【樣例 2】
見選手目錄下 slope. in/slope.ans
【資料範圍與約定】
對於
的資料,
對於
的資料,
對於
的資料,
,座標
,沒有兩點橫座標相同。
題解
發現對於一個角朝下的三角形,上面的那條邊斜率一定小於旁邊兩條邊,所以直接將所有點按 軸排序,算相鄰兩點的斜率取 即可。
程式碼
#include<bits/stdc++.h>
using namespace std;
const int M=5e5+5;
struct sd{double x,y;}pt[M];
double ans=-1e7;
int n,i;
bool operator<(sd a,sd b){return a.x<b.x;}
void in(){scanf("%d",&n);for(i=1;i<=n;++i)scanf("%lf%lf",&pt[i].x,&pt[i].y);}
void ac(){for(sort(pt+1,pt+1+n),i=2;i<=n;++i)ans=max(ans,(pt[i].y-pt[i-1].y)/(pt[i].x-pt[i-1].x));printf("%.3lf",ans);}
int main(){in(),ac();}