蓝桥杯2020年第十一届省赛真题-平面切分 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; struct node { long double x,y; }a[…… 题解列表 2024年03月27日 0 点赞 0 评论 77 浏览 评分:9.9
c++题解,简短 摘要:每加入一条直线,增加的面是交点的个数+1,还有要注意的是重合的线,和平行的线要特别处理一下 ```cpp #include using namespace std; #define ll …… 题解列表 2023年04月05日 0 点赞 0 评论 127 浏览 评分:9.9
STL_蓝桥杯2020年第十一届省赛真题-平面切分 摘要:在一个很多直线的平面上添加一条直线y,可以分割出y与其他所有直线的交点 + 1个平面 ;注意事项: 在for循环中前提条件有两个时for(i = 0, it = line.begin(); it !…… 题解列表 2022年03月10日 0 点赞 0 评论 492 浏览 评分:9.9
平面切分(C++) 摘要:```cpp #include using namespace std; const int N=1005; set line; int a[N],b[N],ans=1; int calc…… 题解列表 2022年02月19日 0 点赞 0 评论 819 浏览 评分:9.9