2022年10月12日
摘要: 求解 ax Ξb (mod n) 充要条件: ax-b= k*n 即 ax-ny = b 1. 用exgcd 可以求方程 ax-ny= gcd(a,n) 的一组解 即 x0 , y0, https://www.cnblogs.com/towboa/p/17001472.html 2. 可以得到原方程 阅读全文
posted @ 2022-10-12 23:53 towboat 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 运用分治,复杂度logn typedef long long LL; LL mod; LL f(LL a,LL b){ if(b==1) return a; if(b==0) return 1; LL t=f(a,b/2); return b%2==0? t*t%mod : (((t*t)%mod) 阅读全文
posted @ 2022-10-12 23:31 towboat 阅读(11) 评论(0) 推荐(0) 编辑
摘要: int b[N+2], pm[N+2],tot=0; void init(){ b[1]=1; for(int i=2;i<=N;i++){ if(b[i]) continue; pm[++tot]= i; for(int j=2;j*i<=N;j++) b[j*i]=1; } } const in 阅读全文
posted @ 2022-10-12 23:16 towboat 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 算法求解了不定方程 ax+by=gcd(a,b) (1) 的一组解x0,y0 void gcd(int a,int b,int &d,int &x,int &y){ if(b==0){ d=a; x=1,y=0; return ; } gcd(b,a%b,d,y,x); y-=x*(a/b); } 阅读全文
posted @ 2022-10-12 23:05 towboat 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 操作:从字符串a中扣除给定的子串b(如hebheof 和 he ,结果 --bheof或heb--of 问直到无法操作时,至少需要几次 #include<iostream> #include <vector> #include <cstring> using namespace std; const 阅读全文
posted @ 2022-10-12 20:31 towboat 阅读(20) 评论(0) 推荐(0) 编辑
  2022年10月10日
摘要: 题意: 有n件商品,每件有价格c[i],优惠券d[i], 对于i>=2,使用di的条件为:xi的优惠券需要被使用,问初始金钱为b时 最多能买多少件商品? n<=5000 解答 树上背包 f[u][j][0/1] 表示某子树(u)有体积j(分配的物品数目) ,该物品是否选择,所需要的最小金钱 f[u] 阅读全文
posted @ 2022-10-10 17:54 towboat 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 例子: luogu <选课> 课程有依赖关系形成树状结构,每个节点有价值a[i], 若选择X节点 则必须选择其父节点,最多选m个节点 问能获得的最大价值 f[u][i][j] 结点u,可用体积为j(节点个数),考虑前i个子节点,能获得的最大价值 我们枚举第i个点分配的体积k f[u][i][j]= 阅读全文
posted @ 2022-10-10 16:31 towboat 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 题目 给出一棵树,每条边的长度为1 现在对于原图中每一对距离为2的点,连一条长度为1的边。 求 ,1<=i<j<=n 其中dist(i,j) 是两点的最短距离 解答 符号 [ ]为向上取整 考虑一对(i,j),每一步一定贪心地走长度为2的边(然后最后一步可能要走长度为1的边 则 dist(i,j)= 阅读全文
posted @ 2022-10-10 12:56 towboat 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 题目 (n=3e5 n个节点以1为根的一棵树,每个非叶子节点都有一个操作max或min(0表示min,1表示max),表示这个节点中的值应该分别等于其子节点中所有值的最大值或最小值。 假设树上有k个叶节点,你可以将每个叶节点填上[1,k]的数字,且每个数字只使用一次,求根节点的最大值 解答 思维题 阅读全文
posted @ 2022-10-10 09:46 towboat 阅读(14) 评论(0) 推荐(0) 编辑
  2022年10月9日
摘要: 题目 sum{dis(i,j)} dis(i,j) 为两点的最短跳跃次数,(每次可以跳k条边) 解答 #include <iostream> #include <cstring> #include <vector> using namespace std; const int N=2e5+4; #d 阅读全文
posted @ 2022-10-09 22:47 towboat 阅读(14) 评论(0) 推荐(0) 编辑