摘要:
【算法】简单数学 【题解】 对于A*B=C C中第i行第j列的数字由A中第i行和B中的j列的数字各自相乘后相加得到。 所以两个矩阵能相乘要求A的列数等于B的行数,复杂度为O(n3)。 #include<cstdio> #include<algorithm> #include<cstring> usi 阅读全文
摘要:
【算法】动态规划 【题解】经典模型:最长上升子序列(n log n) #include<cstdio> #include<algorithm> #include<cstring> using namespace std; const int maxn=50010; int a[maxn],b[max 阅读全文
摘要:
【算法】数学 【题解】斯特林公式: #include<cstdio> #include<algorithm> #include<cmath> using namespace std; const double pi=3.1415926535898,e=2.718281828459; int main 阅读全文