码迷,mamicode.com
首页 >  
搜索关键字:k sum    ( 21381个结果
[ARC058E]Iroha and Haiku 题解
求满足 * $\forall i \in [0,n-1],a[i] \in [1,10]$ * $\exist \space 0\leq x < y < z < w <= n,\sum_\limits{i=x}^{y-1}=X,\sum_\limits{i=y}^{z-1}=Y,\sum_\limi... ...
分类:其他好文   时间:2021-01-05 11:21:55    阅读次数:0
KafkaProducer 简析
使用方式 KafkaProducer 发送消息主要有以下 3 种方式: Properties properties = new Properties(); properties.setProperty("bootstrap.servers", "localhost:9092"); propertie ...
分类:其他好文   时间:2021-01-05 10:45:01    阅读次数:0
题解 SP6286 【SUMMUL - Sum of products】
这题首先我们可以推出递推式: 我们先把加数个数大于等于 \(2\) 的限制去掉,最后再减回去即可。 \[ f_0=1 \] \[ f_n=\sum\limits_{i=1}^{n} j \cdot f_{i-j} \] 暴力代码: #include<bits/stdc++.h> using name ...
分类:其他好文   时间:2021-01-05 10:41:20    阅读次数:0
函数调用-如何设计参数 可变参数函数
#include<stdio.h> int max(int a, int b)//形参 { return a > b ? a : b; } int main() { int x, y; scanf("%d%d", &x, &y); printf("%d", max(x, y));//实际参数 ret ...
分类:其他好文   时间:2021-01-04 10:39:27    阅读次数:0
带条件的递归2,二叉树求和
一.描述 通过二叉树带条件的求和来更好的理解递归 可以参考前两篇文章 一个简单的二叉树的例子来理解递归 二叉树和BST的递归,带条件 二.左叶子求和 来源:https://leetcode-cn.com/problems/sum-of-left-leaves/ 题意为求左叶子节点的值的和 之前文章提 ...
分类:其他好文   时间:2021-01-02 11:46:41    阅读次数:0
回溯算法:求组合总和(二)
给「代码随想录」一个星标吧!?我将公众号文章和学习相关的资料整理到了Github:https://github.com/youngyangyang04/leetcode-master,方便大家在电脑上学习,可以fork到自己仓库,顺便也给个star支持一波吧!?第39题.组合总和题目链接:https://leetcode-cn.com/problems/combination-sum/给定一个无重
分类:编程语言   时间:2021-01-02 11:00:22    阅读次数:0
pep9
伪代码: Set sum to0 Read num1 Set sum to sum + num1 Read num2 Set sum to sum + num2 Read num3 Set sum to sum + num3 If (sum<0) Write"Error" Else Write su ...
分类:其他好文   时间:2021-01-01 12:06:47    阅读次数:0
哈希.字符串哈希.AcWing.841
code: #include<bits/stdc++.h>//xfl using namespace std; const int N = 100007; typedef unsigned long long ull; ull mis[N],sum[N]; string s; int n,m,l1, ...
分类:Windows程序   时间:2021-01-01 11:54:31    阅读次数:0
LeetCode 动态规划
#TitleSolutionAcceptanceDifficultyFrequency 5 Longest Palindromic Substring 30.0% Medium -- 62 Unique Paths 55.4% Medium -- 63 Unique Paths II 35.0% M ...
分类:其他好文   时间:2020-12-31 12:06:06    阅读次数:0
P5488 差分与前缀和
P5488 差分与前缀和 先看前缀和。 首先有一个显然的递推: \[ sum_{k,i}=sum_{k,i-1}+sum_{k-1,i}\\ sum_{0,i}=a_i \] 按照套路考虑 \(a_j\) 对 \(sum_{k,i}\) 的贡献。 看看这个递推,不就是从 \((0,j)\) 走到 \ ...
分类:其他好文   时间:2020-12-31 11:48:22    阅读次数:0
21381条   上一页 1 ... 30 31 32 33 34 ... 2139 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!