原题链接在这里:https://leetcode.com/problems/two-sum-less-than-k/ 题目: Given an array A of integers and integer K, return the maximum S such that there exists ...
分类:
其他好文 时间:
2019-08-17 13:05:38
阅读次数:
91
Pre 作为斯坦纳树的第一道题 Solution 以每一个格子建立点,然后直接跑斯坦纳树就可以了。 code cpp include include include include include include define ll long long define xx first define ...
分类:
其他好文 时间:
2019-08-17 10:32:17
阅读次数:
72
L - Olympiad Training $FWT$。首先,观察到$n$很小,我们可以想办法求出每个子集的答案,但是$m$很大,直接枚举子集的方法肯定行不通。不妨考虑对每个$topic$单独考虑贡献,设当前考虑的是第$j$个$topic$,然后枚举最大值,设$a_{ij}$为最大值,其他的人我们只 ...
分类:
其他好文 时间:
2019-08-16 23:17:30
阅读次数:
182
【题目链接】 https://loj.ac/problem/10050 【题意】 给出n个数,其中取出两个数来,让其异或值最大。 【题解】 经典的01字典树问题。 首先需要把01字典树建出来。 然后对于每一个串都跑一遍。如果存在当前位 不同的 节点,就往那里跑,否则顺着跑。 一切尽在代码中。 【代码 ...
分类:
其他好文 时间:
2019-08-16 09:15:28
阅读次数:
88
配置密钥对的双向配置 HOST1配置: root下编辑/etc/ssh/sshd_config RSAAuthentication yes //启用RSA算法 PubkeyAuthentication yes //启用秘钥对验证 [root@host1 ~]# useradd hadoop //建立 ...
分类:
其他好文 时间:
2019-08-15 21:14:03
阅读次数:
126
#include #include #include #include #include #define LL long long #define rep(i,j,k) for(int i=j;i=k;i--) #define pb push_back #define pii pair #defin... ...
分类:
其他好文 时间:
2019-08-15 21:05:12
阅读次数:
94
B. Equal Rectangles 给定4*N个数,是否能构成N个矩形 面积均相等 每次取两个大的,两个小的 ...
分类:
其他好文 时间:
2019-08-14 23:20:25
阅读次数:
90
B - Oulipo HDU - 1686 题目链接:https://vjudge.net/contest/70325#problem/B 题目: The French author Georges Perec (1936–1982) once wrote a book, La disparitio ...
分类:
其他好文 时间:
2019-08-13 22:56:09
阅读次数:
202
Find the result of the following code: long long pairsFormLCM( int n ) { long long res = 0; for( int i = 1; i <= n; i++ ) for( int j = i; j <= n; j++ ...
分类:
其他好文 时间:
2019-08-13 00:17:31
阅读次数:
83
1、为什么要面密码登录ssh呢第一,方便使用第二,在云环境中,新加入的主机,要实现自动部署,则要由控制节点进行免密码管理,比如ceph中新节点的加入。2、免密码登录的原理是什么呢ssh登录有两种方式,密码和密钥文件,既然免密码,那么可以使用密钥文件来实现登录。3、那么如何实现呢在这里,我们有两台服务器。server01,地址是192.168.0.131server02,地址是192.168.0.1
分类:
系统相关 时间:
2019-08-11 23:21:53
阅读次数:
244