搜索结果
查询Tags标签: 245,共有 4条记录-
AtCoder Beginner Contest 245
比赛链接 A - Good morning 输入输出。 B - Mex 用个数组\(a_i\)标记\(i\)是否出现过,然后遍历一遍就能知道答案。 C - Choose Elements 可以动态规划。 \(dp_{i, j}\)表示前\(i\)个元素,结尾元素为\(j\)的状态是否可达, 其中\(j = 0\)表示结尾是\(A_i\),\(j = 1\)表示…
2022/3/27 6:23:12 人评论 次浏览 -
AcWing 245. 你能回答这些问题吗
#include <bits/stdc++.h> using namespace std; const int N = 5e5 + 10; int n, m; int a[N]; struct Node {int l, r;int sum, lmax, rmax, tmax;//sum,//lmax最大前缀和//rmax最大后缀和//tmax最大连续子段和 }tr[N * 4]; void pushup(Node &U, Node &L…
2022/2/11 6:15:09 人评论 次浏览 -
mysql入门_条件查询、排序查询
条件查询 条件查询分类关系运算:>、<、>=、<=、<>/!=、= 逻辑运算:and, or, not 其它运算:betwen and, like, in, not in, is null, is not null 等等用法示例 #查询成绩大于90分的记录 mysql> SELECT * FROM score where degree > 90; +----+…
2021/9/4 2:06:08 人评论 次浏览 -
mysql入门_条件查询、排序查询
条件查询 条件查询分类关系运算:>、<、>=、<=、<>/!=、= 逻辑运算:and, or, not 其它运算:betwen and, like, in, not in, is null, is not null 等等用法示例 #查询成绩大于90分的记录 mysql> SELECT * FROM score where degree > 90; +----+…
2021/9/4 2:06:08 人评论 次浏览