上一页 1 ··· 37 38 39 40 41 42 43 44 45 ··· 68 下一页
摘要: 这题输入不是很懂,用字符串直接做有些问题,而每次用字符数组输入然后再将他转化就可以做 #include<iostream> #include<cstdio> #include<cstring> #include<cmath> #include<functional> #include<string> 阅读全文
posted @ 2020-05-20 20:10 朝暮不思 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 通过重新建图,跑一遍最短路可以获得答案。对于二维矩阵的形式,可以考虑转换成一维。 #include<bits/stdc++.h> #define fi first #define se second using namespace std; typedef long long ll; typedef 阅读全文
posted @ 2020-05-20 15:14 朝暮不思 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 先求一遍前缀和,然后从n-k+1,倒序枚举,并且同时维护一个后面的最大值。 #include<bits/stdc++.h> using namespace std; typedef long long ll; const int N=3e5+10; priority_queue<ll> q; ll 阅读全文
posted @ 2020-05-20 13:02 朝暮不思 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 通过lca来计算两个点之间的最大最小值,这样比暴力要快 #include<bits/stdc++.h> using namespace std; typedef long long ll; const int N=3e5+10; const int inf=0x3f3f3f3f; int h[N], 阅读全文
posted @ 2020-05-20 12:28 朝暮不思 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 答案肯定是在子树中断开叶节点和断开当前点和子树点的边中的最小值 #include<bits/stdc++.h> using namespace std; const int N=3e5+10; const int mod=1e9+7; typedef long long ll; int h[N],n 阅读全文
posted @ 2020-05-19 20:51 朝暮不思 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 这道题首先可以想到可以是一直走到某地,或者在某两个地方徘徊。 首先我们要想到当前点第一次肯定要走到左边或者右边的第一个点,这是第一步。 其次,在这个基础上,我们枚举所有的边,当作徘徊的边,这样就遍历了所有情况,另外,当距离长度为m的时候,我们正好顺手做了直达的情况。 #include<bits/st 阅读全文
posted @ 2020-05-19 17:54 朝暮不思 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 容易看出是01背包,但是有个不同之处是,dp要求无后效性,而这题因为时间会影响答案,所以买的顺序是需要确定下来才能做背包dp 可以用贪心的方法,并且易证要按t/b排序。之后答案的顺序肯定是按所给的顺序取的,再做一遍01背包即可 #include<bits/stdc++.h> using namesp 阅读全文
posted @ 2020-05-19 11:58 朝暮不思 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 从成功和失败两种情况转移 算成功的概率的时候,可以从失败的反向考虑比较简单。 #include<bits/stdc++.h> using namespace std; const int N=1e5+10; const int mod=1e9+7; typedef long long ll; dou 阅读全文
posted @ 2020-05-19 09:03 朝暮不思 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 求一下连通块后贪心 #include<iostream> #include<cstdio> #include<cstring> #include<vector> #include<algorithm> using namespace std; typedef long long ll; const 阅读全文
posted @ 2020-05-18 14:05 朝暮不思 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 写出式子后前缀和乱搞 #include<iostream> #include<cstdio> #include<cstring> #include<vector> #include<algorithm> using namespace std; typedef long long ll; const 阅读全文
posted @ 2020-05-17 22:34 朝暮不思 阅读(137) 评论(0) 推荐(0) 编辑
上一页 1 ··· 37 38 39 40 41 42 43 44 45 ··· 68 下一页