Loading...
地址https://codeforces.com/contest/1139/problem/B原文地址https://www.lucien.ink/archives/407题意你有 $n$ 堆物品,第 $i$ 堆物品有 $a_i$ 个,如果你要从第 $i$ 堆物品中取走 $x_i$ 个,那么对于 $1 \leq j < i$ ,必须满足 $x_j < x_i \vee x_j =...
地址https://codeforces.com/contest/1139/problem/A原文地址https://www.lucien.ink/archives/406/题意给你一个只包含数字的字符串,问有多少个子串是偶数。代码https://pasteme.cn/4937#include <bits/stdc++.h> typedef long long ll; const...
#include <iostream> #include <thread> #include <vector> #include <algorithm> #include <functional> int main() { std::vector<std::thread> threads; for (i...
https://pasteme.cn/4452scp -P <port> <local_file_path> <username>@<remote>:<remote_file_path> # 本地向远端拷贝 scp -P <port> <username>@<remote>:<remote_...
地址https://codeforces.com/contest/1098/problem/C原文地址https://www.lucien.ink/archives/402/题意能否构造出一棵 $n$ 个节点的树,使得以每个点为根的子树的 $size$ 加起来等于 $s$ ,如果能,输出使得儿子最多的点的儿子数目最少的那种。题解不难看出,以每个点为根的子树的 $size$ 加起来的和等价于每...