题目链接:https://codeforces.com/contest/1368/problem/A 题意 给出 $a,b$,只可以使用 '+=' 运算符,问至少要使用多少次使得 $a$ 或 $b$ 大于 $n$ 。($1 \le a,b \le n \le 10^9$) 题解 每次让较小的数加上较 ...
分类:
其他好文 时间:
2020-06-19 11:52:04
阅读次数:
44
简而言之,内存不够了。 https://serverfault.com/questions/828839/kernel-reported-iscsi-connection-10-error-1022-invalid-or-unknown-error-code I got a couple of re ...
分类:
其他好文 时间:
2020-06-15 11:56:54
阅读次数:
130
考虑给一个根。记 \(B\) 是有根联通图,\(D\) 是点双连通图。 现在考虑有根无向图: \[ B(x) = x*\exp(\sum_i D_{i+1}/i! B^i) \\ \frac{B(x)}{\exp(D'(B(x)))}=x \] 扩展拉格朗日反演: \[ [x^n] H(\frac{ ...
分类:
其他好文 时间:
2020-06-14 16:23:01
阅读次数:
66
引入 给定一个无序整型数组 arr ,找到数组中未出现的最小正整数。 分析 令无序整形数组 arr 的大小为 n,可以推出未出现的最小正整数。 最优情况为是数组 arr 包含 1 ~ n 所有整数并且 arr[i-1] = i。 ① 如果 arr[l] == 1 + l,所以 arr 已经包含的正整 ...
分类:
其他好文 时间:
2020-06-14 01:02:39
阅读次数:
117
系统状态检测命令 ifconfig 命令描述:ifconfig命令用于获取网卡配置与网络状态等信息。 命令示例: 命令输出说明: 第一部分的第一行显示网卡状态信息。 eth0表示第一块网卡。 UP代表网卡开启状态。 RUNNING代表网卡的网线被接上。 MULTICAST表示支持组播。 第二行显示网 ...
分类:
其他好文 时间:
2020-06-13 10:46:43
阅读次数:
58
#include <iostream> using namespace std; void swap(int &a, int &b) { int t = a; a = b; b = t; } void bbsort(int d[], int len) { for (int i = 0; i < le ...
分类:
编程语言 时间:
2020-06-12 20:26:33
阅读次数:
70
P3378 【模板】堆 #include <iostream> #include <cstring> #include <cstdio> using namespace std; const int N = 1e6; int h[N], s; void up(int u) { while(u / 2 ...
分类:
其他好文 时间:
2020-06-10 17:17:55
阅读次数:
67
For a binary tree T, we can define a flip operation as follows: choose any node, and swap the left and right child subtrees. A binary tree X is flip e ...
分类:
其他好文 时间:
2020-06-08 00:23:38
阅读次数:
49
细说MongoDB,深入介绍MongoDB的开发、运维、架构设计与行业案例!
分类:
数据库 时间:
2020-06-08 00:15:52
阅读次数:
61
#free命令详解 ##1. 简介 free 命令是一个既简单又复杂的命令。简单是因为这个命令的参数少,输出结果清晰。说它复杂则是因为它背后是比较晦涩的操作系统中的概念,如果不清楚这些概念,即便看了 free 命令的输出也 get 不到多少有价值的信息。 ##2. free常用参数介绍 1.free ...
分类:
其他好文 时间:
2020-06-07 12:42:36
阅读次数:
103