摘要: 这道题目很明显是个概率dp,又观察到N的范围很大,所以就能猜到是利用了矩阵快速幂加速 设计矩阵! 阅读全文
posted @ 2020-11-28 14:01 andyc_03 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 很经典的一道题目,首先我们考虑每一条附加边x-y 会造成的影响 会使得x-y的简单路径上每条边断开的权值都加1 权值的意义:权值为0,它搭配m条附加边的任意一个都可以 权值为1,它只能搭配一个附加边 权值大于1,无论搭配哪个附加边,都无法做到使原图不连通 所以我们利用树上差分,处理每条附加边时,先把 阅读全文
posted @ 2020-11-28 12:59 andyc_03 阅读(164) 评论(0) 推荐(0) 编辑
摘要: 这道题目和DFS1基本一致,修改的为区间,所以使用线段树 代码 #include<bits/stdc++.h> using namespace std; const int maxn=1e6+5; int n,m,root,cnt,times; int v[maxn],le[maxn],ri[max 阅读全文
posted @ 2020-11-27 18:47 andyc_03 阅读(148) 评论(0) 推荐(1) 编辑
摘要: 每个点记录一个进入的时间和出来的时间 这样就能保证每个子树内的点的顺序是连着的 然后就可以利用树状数组维护单点修改,区间查询了 代码 #include<bits/stdc++.h> using namespace std; const int maxn=1e6+5; int n,m,root,cnt 阅读全文
posted @ 2020-11-27 18:10 andyc_03 阅读(144) 评论(0) 推荐(0) 编辑
摘要: Girls and Boys Time Limit: 5000MS Memory Limit: 10000K Total Submissions: 14701 Accepted: 6613 Description In the second year of the university somebo 阅读全文
posted @ 2020-11-27 17:46 andyc_03 阅读(69) 评论(0) 推荐(0) 编辑
摘要: Machine Schedule Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 19481 Accepted: 8053 Description As we all know, machine scheduling is a v 阅读全文
posted @ 2020-11-27 17:25 andyc_03 阅读(66) 评论(0) 推荐(0) 编辑
摘要: sub1 (25pts) 暴力从x走到y,如果在某个点思考获得的智慧为正,就累加进答案 时间复杂度:O(Q*dep+n) dep为树深度,当树随机生成时,期望为log n 开long long !! 代码 #include<bits/stdc++.h> using namespace std; co 阅读全文
posted @ 2020-11-27 16:52 andyc_03 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 一个大模拟!!! 这个鱼人领军不是每一轮都加的,而是每场比赛!! 代码 #include<bits/stdc++.h> using namespace std; int n,x,A,B,C; struct person { int hp,atk; int type; int spe; }a[55], 阅读全文
posted @ 2020-11-27 14:46 andyc_03 阅读(104) 评论(0) 推荐(0) 编辑
摘要: sub1 (50pts) 设f[i][j] 为用前i种纸币,还需要总金额为j的方案数 枚举第i个纸币用了k 张,从f[i−1][j+k∗(2^i)] 转移 时间复杂度:O(n^2*log n) sub2 (85pts) 其实就是无限背包的问题 直接 f[i][j]=f[i−1][j]+f[i][j+ 阅读全文
posted @ 2020-11-27 14:43 andyc_03 阅读(110) 评论(0) 推荐(0) 编辑
摘要: COURSES Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 29381 Accepted: 11185 Description Consider a group of N students and P courses. Eac 阅读全文
posted @ 2020-11-26 23:19 andyc_03 阅读(71) 评论(0) 推荐(0) 编辑