摘要: P4526 【模板】自适应辛普森法2 1 #include <bits/stdc++.h> 2 using namespace std; 3 const double eps = 1e-8; 4 double a; 5 inline double f(double x) { 6 return pow 阅读全文
posted @ 2019-11-01 19:47 麻辣猪仔 阅读(156) 评论(0) 推荐(0) 编辑
摘要: P4525 【模板】自适应辛普森法1 1 #include <bits/stdc++.h> 2 using namespace std; 3 const double eps = 1e-6; 4 double a, b, c, d, l, r; 5 inline double f(double x) 阅读全文
posted @ 2019-11-01 19:27 麻辣猪仔 阅读(142) 评论(0) 推荐(0) 编辑
摘要: P4549 【模板】裴蜀定理 1 #include <bits/stdc++.h> 2 using namespace std; 3 int main() { 4 int n; scanf("%d",&n); 5 int ans; 6 for (int i = 1; i <= n; ++i) { 7 阅读全文
posted @ 2019-11-01 18:56 麻辣猪仔 阅读(96) 评论(0) 推荐(0) 编辑
摘要: P1439 【模板】最长公共子序列 1 #include <bits/stdc++.h> 2 using namespace std; 3 const int maxn = 1e5+5; 4 int id[maxn]; 5 vector<int> ve; 6 int main() { 7 int n 阅读全文
posted @ 2019-11-01 17:51 麻辣猪仔 阅读(152) 评论(0) 推荐(0) 编辑
摘要: POJ3903 Stock Exchange 1 #include <iostream> 2 #include <cstdio> 3 #include <vector> 4 #include <algorithm> 5 using namespace std; 6 const int maxn = 阅读全文
posted @ 2019-11-01 17:38 麻辣猪仔 阅读(100) 评论(0) 推荐(0) 编辑
摘要: P5431 【模板】乘法逆元2 1 #include <bits/stdc++.h> 2 using namespace std; 3 typedef long long ll; 4 const int maxn = 5e6+5; 5 int a[maxn], pre[maxn], suf[maxn 阅读全文
posted @ 2019-11-01 12:51 麻辣猪仔 阅读(163) 评论(0) 推荐(0) 编辑
摘要: P3811 【模板】乘法逆元 本题只能用线性筛逆元,其他方法的话超时,不过还是写出来 线性筛逆元 1 #include <bits/stdc++.h> 2 using namespace std; 3 typedef long long ll; 4 const int maxn = 3e6+5; 5 阅读全文
posted @ 2019-11-01 12:33 麻辣猪仔 阅读(143) 评论(0) 推荐(0) 编辑