Given 2 integers u and v, find the shortest array such that bitwise-xor of its elements is u, and the sum of its elements is v. Input The only line co ...
分类:
其他好文 时间:
2020-03-17 08:26:52
阅读次数:
63
一、题目 给你一个包含 n 个整数的数组 nums,判断 nums 中是否存在三个元素 a,b,c ,使得 a + b + c = 0 ?请你找出所有满足条件且不重复的三元组。 注意:答案中不可以包含重复的三元组。 示例: 二、题解 思路1: 之前有道算法题,是求两数之和,所以想法就是先遍历数组,固 ...
分类:
其他好文 时间:
2020-03-17 08:06:12
阅读次数:
59
"Link" 如果$l=r$那么我们给它加个特判。(虽然数据里没有) 先写出答案的表达式: $$ \frac{\int_{l_1}^{r_1}\cdots\int_{l_n}^{r_n}|\sum\limits_{i=1}^nx_i|\mathrm dx_n\cdots\mathrm dx_1}{\ ...
分类:
其他好文 时间:
2020-03-17 00:04:11
阅读次数:
79
今天继续简单的Java基础复习 1.计算n!的阶乘import java.util.Scanner;public class JieCheng { public static void main(String args[]){ int m,n ; int sum ; System.out.print ...
分类:
其他好文 时间:
2020-03-16 23:17:37
阅读次数:
72
在生产系统中随着业务的运行,临时表可能因为各种原因没有及时被清理掉,怎么办呢?先查询下临时表占磁盘的大小,根据情况进行删除,但是最好不要在生产系统大家都在使用的时候删除临时表查询占用大小:selectcast(sum(a.total_pages)*8/1024asvarchar)+‘MB‘totalfromsys.partitionspjoinsys.allocation_unit
分类:
其他好文 时间:
2020-03-16 23:14:34
阅读次数:
54
类似Hdu3336 给出一个字符串,请算出它的每个前缀分别在字符串中出现了多少次。再将这些结果加起来输出InputThe first line include a number T, means the number of test cases. For each test case, just a ...
分类:
其他好文 时间:
2020-03-16 19:15:49
阅读次数:
66
``` //贪心 //从初始值最小开始 //如果当前值有许多,那么就把花费最大的留下,其他的都加一个 //然后依次网上增加 #include #include #include using namespace std; typedef long long ll; const int INF=0x3f... ...
分类:
其他好文 时间:
2020-03-16 09:18:44
阅读次数:
55
unittest中包含了很多断言内容,实际用到的断言内容也就比对值是否相同,下面是unittest中的断言内容 #encoding=utf-8 import unittest import random # 被测试类 class MyClass(object): @classmethod def s ...
分类:
其他好文 时间:
2020-03-15 22:38:15
阅读次数:
79
算术运算符: 加法 :"-", 减法 :"-",除法:"/" (求余:%),乘法:"*" 例子:int i = 3; int a =4; int sum = a + i; System.out.println(sum); 自增:++,自减: -- 例子: int x = ++1; x的结果为2,先( ...
分类:
编程语言 时间:
2020-03-15 22:28:50
阅读次数:
83
题意:给定一个n*m的矩阵,求出其中和最大的子矩阵 比如 0 -2 -7 0 9 2 -6 2 -4 1 -4 1 -1 8 0 -2 他的最大子矩阵是 9 2 -4 1 -1 8和为15. ①首先最坏情况我们可以枚举行的上界和下界,列的上界和下界。 求和的话可以用前缀和解决。 ②我们只枚举行的上界 ...
分类:
其他好文 时间:
2020-03-15 20:45:57
阅读次数:
90