02 2022 档案

摘要:题目链接 按照这个思路, 我自己的AC代码: class Solution { class node{ public: int x,y; node(int x,int y){ this->x=x; this->y=y; } friend bool operator<(const node&n1,co 阅读全文
posted @ 2022-02-07 13:59 Ryomk 阅读(37) 评论(0) 推荐(0)
摘要:题目链接 我的代码: #include <cstdio> #include <cmath> #define max(a,b) a>b?a:b double w,h; const double pi=3.141592653589793; double getVolume(){ double v=0.0 阅读全文
posted @ 2022-02-06 01:26 Ryomk 阅读(59) 评论(0) 推荐(0)