摘要:
树状数组的一系列操作1、树状数组求逆序对#include#include#includeusing namespace std;const int maxn=100010;int n,a[maxn],b[maxn],c[maxn],s[maxn];int lowbit(int x)... 阅读全文
摘要:
spfa判断负环spfa+bfs#include#include#include #includeusing namespace std;const int maxn=200010;const int inf=0x7fffffff;int t,n,m,tot,d[maxn],dis... 阅读全文
摘要:
选择数字题目描述: 给定一行n个非负整数a[1]..a[n]。现在你可以选择其中若干个数,但不能有超过k个连续的数字被选择。你的任务是使得选出的数字的和最大。 输入描述: 第一行两个整数n,k 以下n行,每行一个整数表示a[i]。 输出描述: 输出一个值表示答案。 样例输入: 5 ... 阅读全文