给定 N 个正整数,要求你从中得到下列三种计算结果: A1 = 能被 3 整除的最大整数 A2 = 存在整数 K 使之可以表示为 3K+1 的整数的个数 A3 = 存在整数 K 使之可以表示为 3K+2 的所有整数的平均值(精确到小数点后 1 位) 输入格式: 输入首先在第一行给出一个正整数 N,随 ...
分类:
其他好文 时间:
2020-02-05 13:57:30
阅读次数:
109
用了前缀集合,高级的可以用前缀树 class Solution: def findWords(self, board: List[List[str]], words: List[str]) -> List[str]: if len(board) == 0 or len(board[0]) == 0: ...
分类:
其他好文 时间:
2020-02-03 09:45:19
阅读次数:
90
一、controller节点安装ntp 1 安装ntp服务 yum install chrony 2 Edit the chrony.conf file and add, change, or remove the following keys as necessary for your envir ...
分类:
其他好文 时间:
2020-02-02 17:37:28
阅读次数:
80
Leetcode股票问题总结 ADB使用总结 Java文件重命名 SpringBoot文件操作的一些问题 A... ...
分类:
其他好文 时间:
2020-02-02 11:39:40
阅读次数:
85
Codeforces Round 605(Div3)A~E A. Three Friends 题意: + 给三个数$a,b,c$,对每一个数字可以进行一次操作,加一减一或者不变。 + 求三个数两两组合的差值绝对值的最小值。 思路: + 先排个序。 + 假设排序后三个数从小到大是$a,b,c$。 + ...
分类:
其他好文 时间:
2020-01-31 19:17:05
阅读次数:
81
Leetcode股票问题总结 ADB使用总结 Java文件重命名 SpringBoot文件操作的一些问题 A... ...
分类:
其他好文 时间:
2020-01-29 12:47:49
阅读次数:
141
题目 On a broken keyboard, some of the keys are worn out. So when you type some sentences, the characters corresponding to those keys will not appear on ...
分类:
其他好文 时间:
2020-01-28 21:29:54
阅读次数:
63
Cutting an integer means to cut a K digits lone integer Z into two integers of (K/2) digits long integers A and B. For example, after cutting Z = 1673 ...
分类:
其他好文 时间:
2020-01-27 17:11:56
阅读次数:
80
使用command+H隐藏窗口后, 有没有什么办法能把所有隐藏的窗口都展示出来呢 System Preferences > Keyboard > Keyboard Shortcuts > select "Application Shortcuts" > highlight "All Applicat ...
分类:
系统相关 时间:
2020-01-27 15:49:53
阅读次数:
113
不知道从什么时候养成的习惯,过年也开始读书,写算法,也可能自己太穷想多挣钱,也可能想做出一款像王者荣耀那样巅峰产品,好向家里或者周围的人炫耀,哪种可能都有。尽管资质不高,距梦想差距很大,只要每天做正向积累,努力争取,总有机会被你抓住。 学习回溯算法后,做了习题0-1背包、八皇后、数独,归纳一下:递归 ...
分类:
其他好文 时间:
2020-01-27 15:40:17
阅读次数:
253