码迷,mamicode.com
首页 >  
搜索关键字:k sum    ( 21381个结果
今日总结
2021年2月18日: chartfrag_lv.xml: <?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android ...
分类:其他好文   时间:2021-02-19 13:53:16    阅读次数:0
Codeforces Round #702 (Div.3)
A. Dense Array 链接: https://codeforces.com/contest/1490/problem/A 思路: 贪心。找到一队不满足的数,求最大值是最小值2的几次幂倍就好。 代码: #include<iostream> #include<cstdio> #include<c ...
分类:其他好文   时间:2021-02-19 13:36:52    阅读次数:0
leetCode第一题
题目描述: 给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。 你可以假设每种输入只会对应一个答案。但是,数组中同一个元素不能使用两遍。 示例: 给定 nums = [2, 7, 11, 15], target = 9 因为 ...
分类:其他好文   时间:2021-02-19 13:36:23    阅读次数:0
[CF1353E] K-periodic Garland - dp
给定一个长度为 n 的 01 字符串,要这个字符串的每个 1 之间的距离都恰好为 k,求至少要修改几个字符。 ...
分类:其他好文   时间:2021-02-19 12:52:28    阅读次数:0
05-存储函数与存储过程
1 --[存储函数:有返回值,创建完成后,通过select function() from dual;执行] 2 --[存储过程:由于没有返回值,创建完成后,不能使用select语句,只能使用pl/sql块执行] 3 4 --[格式] 5 --函数的声明(有参数的写在小括号里) 6 create o ...
分类:其他好文   时间:2021-02-18 13:54:06    阅读次数:0
算法图解——组合求和( Combination Sum)
组合求和( Combination Sum) 1. 题目描述 Given an array of distinct integers candidates and a target integer target, return a list of all unique combinations of ...
分类:编程语言   时间:2021-02-18 13:37:18    阅读次数:0
网络战争(最小割,01分数规划)
题意 思路 首先推一下01分数规划的式子,\(\frac{\sum_{e \in C} w_e}{|C|} > \lambda \Leftrightarrow \sum_{e \in C} w_e > \lambda |C| \Leftrightarrow \sum_{e \in C} (w_e - ...
分类:其他好文   时间:2021-02-18 13:32:37    阅读次数:0
Note - 多项式乱写
大概是记录 @Tiw 的伟大智慧叭。 常系数齐次线性递推 Link. 求:一个满足 \(m\) 阶齐次线性递推数列 \(\{a\}\) 的第 \(n\) 项,即求 \[ a_n=\sum_{i=1}^mf_ia_{n-i} \] 不用多项式取模的做法。 根据条件式子得到: \[ A(x)=F(x)A ...
分类:其他好文   时间:2021-02-18 13:14:55    阅读次数:0
POJ3784 Running Median 题解
题目描述 For this problem, you will write a program that reads in a sequence of 32-bit signed integers. After each odd-indexed value is read, output the m ...
分类:其他好文   时间:2021-02-18 13:06:04    阅读次数:0
LeetCode494. 目标和
题目 分析 这道题开始我是想用回溯,但一看数据量,肯定会超时(指数级的时间复杂度)。没有思路,想着应该是dp,怎么进行转化,转为我们熟悉的问题呢?题目的意思就是说将数组分成两堆n1,n2,使得 n1 - n2 = S 。且有n1 + n2 = sum。由这两个式子可得 n1 + n2 = 2 * n ...
分类:其他好文   时间:2021-02-18 13:00:43    阅读次数:0
21381条   上一页 1 ... 22 23 24 25 26 ... 2139 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!