Problem: 在安装完anaconda3的时候,重启服务器会惊奇的发现conda命令找不到。这个时候不要慌张,可能是你服务器的原因,如果你在执行一次代码: export PATH=/home/XXX/anaconda3/bin:$PATH Solution: 你可能会发现conda命令可以使用了 ...
分类:
系统相关 时间:
2020-03-25 20:59:15
阅读次数:
106
[leetcode]1379. Find a Corresponding Node of a Binary Tree in a Clone of That Tree 链接 "leetcode" 描述 Given two binary trees original and cloned and giv ...
分类:
其他好文 时间:
2020-03-25 19:39:53
阅读次数:
70
A. 被卡了好久,样例的第一感觉n%k==0则YES 后来写式子,交了发n>=k*k 虽然写的时候也注意到了n-k必须是偶数(k个奇数和的奇偶性与k相同,故n与k奇偶性相同) 最后才想到,可以构造 前k-1个数为1~k-1 剩下的即为第k个数 #include<bits/stdc++.h> #def ...
分类:
其他好文 时间:
2020-03-25 18:47:02
阅读次数:
56
链接:https://www.acwing.com/problem/content/277/ 算法 状态表示:$f(k, x_1, x_2)$ 集合:所有从左上走到右下的路线,走两遍的方案,即第一条从 $(1, 1)$ 到 $(x_1, k x_1)$ ,第二条从 $(1, 1)$ 到 $(x_2, ...
英文题目:https://pintia.cn/problem-sets/994805342720868352/problems/994805360043343872 中文题目:https://pintia.cn/problem-sets/994805260223102976/problems/994 ...
分类:
其他好文 时间:
2020-03-25 16:13:14
阅读次数:
60
Calculate A + B. InputEach line will contain two integers A and B. Process to end of file. OutputFor each case, output A + B in one line. Sample Input ...
分类:
其他好文 时间:
2020-03-25 16:09:38
阅读次数:
100
tokitsukaze and Soldier + 题目链接: "https://ac.nowcoder.com/acm/problem/50439" 涉及知识点: + 优先队列/贪心 solution: + 每个士兵都有战力Vi和一个限制Si,我们先按照每个士兵的Si从大到小进行排序 + 然后我们 ...
分类:
其他好文 时间:
2020-03-25 13:49:20
阅读次数:
84
Given a 2D grid, each cell is either a wall 2, a zombie 1 or people 0 (the number zero, one, two).Zombies can turn the nearest people(up/down/left/rig ...
分类:
其他好文 时间:
2020-03-25 10:53:03
阅读次数:
76
题目链接:http://icpc.njust.edu.cn/Problem/Pku/1182/ 题意:给出动物之间的关系,有几种询问方式,问是真话还是假话。 定义三种偏移关系: x->y 偏移量0时 x和y同类 x->y 偏移量1时 x被y吃 x->y 偏移量2时 x吃y 定义 rela[x]=rx ...
分类:
其他好文 时间:
2020-03-25 01:06:48
阅读次数:
66
# 题意 给定长度为n 的序列,求连续的没有重复元素的最长子序列的长度 # 题解双指针,保证j<i ,用一个数组记录当前值的出现个数,因为是连续的,当 a[ i ]出现两次的时候,j一直向前,并且映射的次数减1,直到 i 对应的值的出现次数为1时候,取最大记录即可 1 #include<bits/s ...
分类:
其他好文 时间:
2020-03-25 00:50:16
阅读次数:
64