02 2019 档案

摘要:【思路】Java大数可以直接搞,有专门控制输出格式为非科学计数法以及去除后导0的函数import java.util.*;import java.math.*;public class Main{ public static void main(String... 阅读全文
posted @ 2019-02-24 23:56 不想吃WA的咸鱼 阅读(110) 评论(0) 推荐(0)
摘要:#include using namespace std;const int maxn=100005;vector g[maxn];bool is_cut[maxn];int n,m,ans=0;//节点编号从1开始int vis[maxn];//vis[u... 阅读全文
posted @ 2019-02-17 21:19 不想吃WA的咸鱼 阅读(126) 评论(0) 推荐(0)
摘要:struct Circle{ Point c; double r; Circle(Point cc,double rr):c(cc),r(rr){} Point point(double a){//通过圆心角a求圆上坐标 return Point(c.x... 阅读全文
posted @ 2019-02-15 21:46 不想吃WA的咸鱼 阅读(372) 评论(0) 推荐(0)
摘要:#includeusing namespace std;const double eps=1e-10;struct Point{ double x,y; Point(double xx=0,double yy=0):x(xx),y(yy){}};typede... 阅读全文
posted @ 2019-02-13 18:27 不想吃WA的咸鱼 阅读(152) 评论(0) 推荐(0)