Bernard5
Bernard5
全部文章
题解
作业(2)
学习笔记(17)
技术教程(45)
期末应试(57)
未归档(17)
赛后分析(7)
题集(15)
归档
标签
去牛客网
登录
/
注册
some model useful
我亦是行人
全部文章
/ 题解
(共4篇)
小M和天平 bitset dp
来自专栏
bitset对dp的优化,非常典型 #include <bits/stdc++.h> using namespace std; const int N = 1e4; bitset<N + N + 100> b; int main() { int a, c; w...
STL
思维
dp
bitset
位运算
2021-01-18
0
684
python中的堆/优先队列
python中的优先队列的写法,记录一下。 n,k=map(int,input().split()) l=list(map(int,input().split())) import heapq heapq.heapify(l) while len(l) > 1 : a=heapq.he...
STL
语法
2021-01-07
1
586
除2!
来自专栏
本题需要用堆来动态管理最大的偶数。 可以用优先队列或multiset实现。 #include <bits/stdc++.h> using namespace std; typedef long long ll; #define sc(x) scanf("%lld", &(x)) ...
水题
STL
2020-11-14
3
845
简单瞎搞题 BITSET
来自专栏
思路 思路很简单就是用bitset来实现DP。 本题数据最大为故开空间1e6。 如果没有使用过bitset可以理解为一个bool数组。 bitset<N> ans声明,ans[i]的意思是是否能已知数据被表出,即 最关键的DP分析在这里:for (int i = l; i <= r...
背包
STL
dp
bitset
2020-05-20
4
978