码迷,mamicode.com
首页 >  
搜索关键字:k sum    ( 21381个结果
CF1477D Nezzar and Hidden Permutations(构造)
CF1477D Nezzar and Hidden Permutations(构造) 题目大意 你需要构造出两个排列 p, q,满足 m 个限制,第 i 个限制为 $ (p_-p_)\times (q_-q_) \ge 0$,最大化 \(\sum [p_i \neq q_i]\) \(1 \le n ...
分类:其他好文   时间:2021-02-15 12:02:24    阅读次数:0
寒假学习日报(三十二)
今天主要是帮家里干活,做过年的准备,学习的知识不多。 package com.chapter01.hanshu object Demo03 { def main(args: Array[String]): Unit = { println(sum(10, 20, 3, 5, 7, 9)) } def ...
分类:其他好文   时间:2021-02-15 12:00:55    阅读次数:0
JS数据类型
JS数据类型 基本数据类型 number string boolean undefined null 复杂数据类型/引用数据类型 array object function window.onload = function(){ var str = 'abc'; var num =123; var ...
分类:Web程序   时间:2021-02-10 13:42:28    阅读次数:0
递归函数
# 递归是一种编程思想 # 递归的特点: # 函数内部自己调用自己 # 必须有出口 # 应用:3以内数字累加和 # 需求:3以内数字累加和 3+2+1 # 6 = 3 + 2以内数字累加和 # 2以内数字累加和 = 2 + 1以内数字累加和 # 1以内数字累加和 = 1 (出口) def sum_n ...
分类:其他好文   时间:2021-02-10 13:33:42    阅读次数:0
Dima and Salad 题解(01背包变形)
题目链接 题目大意 给你n个物品,每个物品有两个值一个为a,一个为b 要你拿任意的物品使得$\sum a/ \sum b=k ,且max(\sum a)$ \(1<=n<=100\; 1<=k=10\; 1<=a[i],b[i]<=100\) 题目思路 一个显然易见的思路设$dp[i][j]\(为是 ...
分类:其他好文   时间:2021-02-10 13:10:08    阅读次数:0
14-HIve聚合函数
聚合函数 函数返回值型 函数(参数) 描述 BIGINT count(*), count(expr), count(DISTINCT expr[, expr...]) 1.统计总行数,包括含有 NULL 值的行 2.count(expr) 统计提 供非 NULL 的 expr 表达式 值的行数 3. ...
分类:其他好文   时间:2021-02-10 13:04:58    阅读次数:0
1002 A+B for Polynomials (25 分)
This time, you are supposed to find $A+B$ where $A$ and $B$ are two polynomials. Input Specification: Each input file contains one test case. Each cas ...
分类:其他好文   时间:2021-02-10 13:03:20    阅读次数:0
Hills And Valleys
http://codeforces.com/contest/1467/problem/B 题意 \(一个数列里有波峰波谷\) \(波谷:a[i]<min(a[i+1],a[i-1]])\) \(波峰:a[i]>max(a[i+1],a[i-1])\) \(sum = 波峰数+波谷数\) \(若可以任 ...
分类:其他好文   时间:2021-02-09 12:30:17    阅读次数:0
P3973 [TJOI2015]线性代数 最小割
题意: 戳这里 分析: \[ D=\sum_{j=1}^nA_{1,j}\times (\sum_{i=1}^nA_{1,i}B_{i,j}-C_{1,j}) \] 我们观察式子可以发现 \(B_{i,j}\) 会被选当且仅当 \(A_{1,i},A_{1,j}\) 都为 1,\(-C_{1,j}\ ...
分类:其他好文   时间:2021-02-09 11:54:55    阅读次数:0
2020 BIT冬训-模拟与暴力 O - The Answer to the Ultimate Question of Life, The Universe, and Everything. 计蒜客 - 42545
Problem Description For decades, scientists have wondered whether each of the numbers from 0 to 100 could be represented as the sum of three cubes, wh ...
分类:其他好文   时间:2021-02-08 12:44:17    阅读次数:0
21381条   上一页 1 ... 24 25 26 27 28 ... 2139 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!