STL_蓝桥杯2020年第十一届省赛真题-平面切分
摘要:在一个很多直线的平面上添加一条直线y,可以分割出y与其他所有直线的交点 + 1个平面 ;注意事项: 在for循环中前提条件有两个时for(i = 0, it = line.begin(); it !……
蓝桥杯2020年第十一届省赛真题-平面切分
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>
using namespace std;
struct node
{
long double x,y;
}a[……