摘要:
dfs+莫队 阅读全文
摘要:
\[ {n \choose m} \bmod p = {{n / p} \choose {m / p}} · {{n \bmod p} \choose {m \bmod p}} \bmod p (p \in \mathbb{P}) \] 阅读全文
摘要:
讲得非常不详细! 阅读全文
摘要:
学习! 阅读全文
摘要:
CSP 2020 爆炸了。 阅读全文
摘要:
说在前面 考场上的我是真的逊,expr代码都写出来了结果没有更新到D:/submit而爆零。 题意简述 给你一个后缀表达式$s$,只有&,|,!运算,有$n$个变量,为$x_1,x_2,\cdots x_n$,其中任意$x_i \in {0,1}$,给$x_i$的初值,$q$个操作,每次操作: 给一 阅读全文
摘要:
题意简述 设$\text(i)$为$i$的二进制中$1$的个数,求 \(\prod_{i = 1} ^ n \text{sum}(i)\) \(n \le 10 ^ {15}\)。 简单口胡 考虑对每个数求$\text(i)\(肯定是不行的,只能考虑将思维转到求“有多少数的\)\text(i) = 阅读全文
摘要:
学习! 阅读全文
摘要:
# include <bits/stdc++.h> using namespace std; const int N = 2050; int n,m; int lowbit(int x) {return x & -x;} struct _2wBIT { int a[N][N]; void clear 阅读全文
摘要:
题目下载链接 T1 水题。 # include <bits/stdc++.h> using namespace std; const int N = 100005; int n,k; double gpt[N],a[N],b[N]; void FIO(void) { freopen("sort.in 阅读全文