那个写平衡树是不可能写平衡树,这辈子都不可能写平衡树。只有链表才能维持的了生命。 #include<bits/stdc++.h> using namespace std; const int N=1e5+5,inf=2147483647; typedef pair<int,int> P; P a[N ...
分类:
其他好文 时间:
2018-12-21 15:26:06
阅读次数:
183
ip addr ip link tcpdump -i veth1 -e -v route -n ip route arp ethtool -S veth0 ip link add type veth ip link set dev veth0 up ip addr add dev veth0 192 ...
分类:
其他好文 时间:
2018-12-21 14:13:59
阅读次数:
152
Sereja is interested in intervals of numbers, so he has prepared a problem about intervals for you. An interval of numbers is a pair of integers [l,?r ...
分类:
其他好文 时间:
2018-12-20 15:41:50
阅读次数:
220
B. 删边(cip.cpp/in/out 1S/256M) 题面 给出一个没有重边和自环的无向图,现在要求删除其中两条边,使得图仍然保持连通。 你的任务是计算有多少组不合法的选边方案。注意方案是无序二元组。 输入格式 第一行是两个整数 N 和 M,分别表示顶点数和边数 接下来 M 行,每行 2 个整 ...
分类:
其他好文 时间:
2018-12-19 22:07:13
阅读次数:
188
题目描述 Goldbach's Conjecture: For any even number n greater than or equal to 4, there exists at least one pair of prime numbers p1 and p2 such that n = ...
分类:
数据库 时间:
2018-12-19 14:16:12
阅读次数:
192
原文地址:https://stackabuse.com/reading-and-writing-json-to-a-file-in-python/ Over the last 5-10 years, the JSON format has been one of, if not the most, ...
分类:
编程语言 时间:
2018-12-18 11:01:03
阅读次数:
190
描述 We all know that a pair of distinct points on a plane defines a line and that a pair of lines on a plane will intersect in one of three ways: 1) no ...
分类:
其他好文 时间:
2018-12-18 02:14:26
阅读次数:
127
分形图,就是找规律。。。 #include<iostream> #include<cmath> #include<algorithm> using namespace std; typedef long long ll; typedef pair<ll,ll> P; P get_(int n,int ...
分类:
其他好文 时间:
2018-12-17 11:45:54
阅读次数:
127
#include #define fi first #define se second #define pii pair using namespace std; const int maxn=2e2+10; const int inf = 0x3f3f3f3f; vector vs[maxn]; ... ...
分类:
其他好文 时间:
2018-12-16 19:59:20
阅读次数:
120
tuple 的主要用途,就是把各种类型的参数组合成一个新的数据关联体(结构体),相当于早期的 std::pair 的泛化版本。 组合存储是方便了,但是,对于某些特定的应用场景,解包就成了个比较麻烦的事情。为此,我查看 gcc 8.2.0 版的 STL ...
分类:
编程语言 时间:
2018-12-15 19:49:51
阅读次数:
840