题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5130
首先考虑下干扰的关系,设A(x1,y1),B(x2,y2),P(x,y),可以列出式子:
sqrt((x-x2)^2 + (y-y2)^2) = k * sqrt((x-x1)^2 + (y-y1)^2)
化简后可以得到一个圆的方程,然后就转化为圆交多边形模板题了
1 |
|
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5130
首先考虑下干扰的关系,设A(x1,y1),B(x2,y2),P(x,y),可以列出式子:
sqrt((x-x2)^2 + (y-y2)^2) = k * sqrt((x-x1)^2 + (y-y1)^2)
化简后可以得到一个圆的方程,然后就转化为圆交多边形模板题了
1 | #include <cstdio> |