摘要:
题意: 分析:删去一个数,能得到一个新结果,枚举删去的点,左右两边预处理好。 #include <bits/stdc++.h> using namespace std; const int maxn = 100000+5; typedef long long LL; int a[maxn]; int 阅读全文
摘要:
题意:求最小生成树,和任意两个点之间距离的期望 官方题解: 最后求两遍点的积的时候,还是要判断父子关系。 注意 long long #include <bits/stdc++.h> using namespace std; typedef long long LL; const int maxn = 阅读全文
摘要:
#include <bits/stdc++.h> using namespace std; typedef long long LL; int gcd(int a,int b) { return b ==0 ? a : gcd(b,a%b); } const int maxn = 55; int m 阅读全文
摘要:
Description You are a boss who has N employers. One day, you have a message and you want to tell it to M employers of yours. As you are a funny man, y 阅读全文
摘要:
题意:进制问题 分析: 打表,但是要用不能 long long 型,超内存。 n! = log_{10}\sqrt{2{\pi}n} (\frac{n}e)^n 精度要求 include include include using namespace std; const double PI = a 阅读全文