E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
ans
2023-08-03力扣今日四题
includeusingnamespacestd;intstringToint(string&s){intans=0;for(inti=0;i='0'&&str[i]iMin.size())returnINT_MIN;elseif(
ans
.size
Qian丶Xi
·
2023-08-04 00:57
力扣每日一题
leetcode
leetcode22. 括号生成(回溯算法-java)
示例1:输入:n=3输出:[“((()))”,“(()())”,“(())()”,“()(())”,“()()()”]示例2:输入:n=1输出:[“()”]提示:1
ans
=newA
SP_1024
·
2023-08-03 21:46
java
数据结构
算法
算法
java
深度优先
贪心算法
数据结构
动态规划
P1036 [NOIP2002 普及组] 选数
m;intans=0;boolshu(intx){for(inti=2;im){intmid=0;for(inti=1;i>n>>m;for(inti=1;i>a[i];dfs(1,1);cout<<
ans
前 方
·
2023-08-03 10:36
搜索每日一题
算法
2023-08-01力扣每日一题
快速幂和慢速乘+暴力TLE(2558/2584)首先对于这个数组来说,求值只依靠序列的最大值和最小值,并且所有子序列都要求,所以我们先将数组排序对于每次遍历到的数字nums[i]都有一个nums[i]^3加入到
ans
Qian丶Xi
·
2023-08-03 06:17
力扣每日一题
算法
动态规划
leetcode
c++
AcWing111. 畜栏预定
#includeusingnamespacestd;typedeflonglongll;constintN=5e4+5;intn,m,cnt[N],x,y,res,
ans
[N];structnode{intx
陈进士学习
·
2023-08-03 00:55
AcWing
算法
c++
贪心
c语言
开发语言
AOJ 2249 Road Construction 最短路径 Dijkstra算法优化
intcost=0):to(to),len(len),cost(cost){}};typedefpairP;vectoredges[10007];intinf=0x3f3f3f3f,N,M,d[10007],
ans
'晚风'
·
2023-08-02 12:59
图论
算法
数据结构
(树) 剑指 Offer 32 - II. 从上到下打印二叉树 II ——【Leetcode每日一题】
3,9,20,null,null,15,7],3/\920/\157返回其层次遍历结果:[[3],[9,20],[15,7]]提示:节点总数>levelOrder(TreeNode*root){vector>
ans
酷酷的懒虫
·
2023-08-02 09:21
LeetCode
leetcode
算法
职场和发展
【HDU 1286】找新朋友
includeusingnamespacestd;#defineLOCAL0//返回小于n且与n互质的数的个数inteuler(intn){intans=n;inttmp=n;for(inti=2;i*i1){
ans
Siding
·
2023-08-02 09:15
打印控制行 P5730 【深基5.例10】显示屏 液晶屏上,每个阿拉伯数字都是可以显示成 3×5 的点阵的(其中 X 表示亮点,. 表示暗点)。现在给出数字位数(不超过 100)和一串数字,要
文章目录题目Java代码题目跳转链接原来思路列举所有数组然后多重for循环可能出现格局排列问题改进版:分为5行
ans
[]++;以行为一块思想Java代码importjava.util.Scanner;publicclassMain
QuantumYou
·
2023-08-02 04:58
#
ICPC
洛谷
LeetCode
蓝桥杯
字符串
【算法心得】善用js可以把函数写在函数里的特性;善用spread表达式生成新数组
https://leetcode.cn/problems/combinations/善用js可以把函数写在函数里的特性这样维护全局变量很烦把子函数直接写在combine()内部,n和k可以直接用,也不用因为
ans
Ranye123
·
2023-08-02 02:57
算法
javascript
开发语言
x 的平方根——力扣69
文章目录题目描述法一二分查找题目描述法一二分查找intmySqrt(intx){intl=0,r=x,
ans
=-1;while(l<=r){intmid=(l+r)/2;if((longlong)
hazel爱吃肉
·
2023-08-02 02:56
算法刷题笔记
leetcode
算法
职场和发展
数据结构
链表
Matlab的double函数
比如在复数表示中,举例如下:(1)double((1+i/2)/(i-1/4)^(1/2))得到
ans
=0.9943-0.4733i(2)double(cosh(1/2)/(sinh(1/2)*i+1)
超级大超越
·
2023-08-01 22:30
Matlab
matlab
线性代数
矩阵
2023牛客多校训练第五场铜银牌题解
牛客多校训练第五场铜银牌题解A#include#defineintlonglongusingnamespacestd;constintN=5e5+10,d=700;intn,m,a[N],bl[N],
ans
胡 耀文
·
2023-08-01 13:06
牛客
打比赛的题解笔记
算法
【LeetCode1】【哈希】每日一题 day30
&nums,inttarget){mapcha;vectorans;intsize=nums.size();for(inti=0;i
ans
lyx_2016
·
2023-08-01 10:44
LeetCode
题目
leetcode
讲好普通话没那么难!
-知乎https://www.zhihu.com/question/34838352/
ans
文晓晓儿
·
2023-07-31 12:23
三数之和——力扣15
文章目录题目描述法一双指针+排序题目描述法一双指针+排序classSolution{public:vector>threeSum(vector&nums){intn=nums.size();vector>
ans
hazel爱吃肉
·
2023-07-31 08:19
算法刷题笔记
leetcode
算法
数据结构
c++
职场和发展
链表
贪心专题--P1199 [NOIP2010 普及组] 三国游戏
#includeusingnamespacestd;longans,
ANS
,
Silver_bullet2004
·
2023-07-31 07:13
贪心算法
c++
贪心算法
c++
算法
暑假刷题第17天--7/29
146.序列-AcWing题库(二叉堆+归纳--重点学习)#include#include#includeusingnamespacestd;intn,m,a[1005][2005],now[2005],
ans
不能AC的小菜鸡
·
2023-07-31 06:25
暑假打卡
算法
c++
数据结构
暑假刷题第18天--7/30
AcWing题库(dfs)#include#include#include#include#includeusingnamespacestd;constintN=18;boolvis[N];inta[N],n,
ans
不能AC的小菜鸡
·
2023-07-31 06:22
暑假打卡
深度优先
算法
图论
2020-02-17
octave:1>3+7
ans
=10octave:2>9-2
ans
=7octave:3>5*6
ans
=30octave:4>1/5
ans
=0.20000octave:5>2^10
ans
=1024octave
kamanda
·
2023-07-30 23:33
Codeforces Round 889 (Div. 2) (C1~C2)
提示如果C1会了但不会C2,也应该先将C1解法看一遍C1Dual(EasyVersion)题意给定长度为nnn的数组aaa,(n=1;i--){//累加c19c12+c19=c31
ans
.push_back
CCSU_梅子酒
·
2023-07-30 14:58
Codeforces
Codeforces
构造专题
算法
【补题笔记】杭州师范大学第四届程序设计新生赛
#includeusingnamespacestd;typedeflonglongLL;intn;intcnt[130];intone=0,
ans
=0
xhyu61
·
2023-07-30 08:48
算法学习
做题笔记
算法
c++
陶陶摘苹果(题解)(升级版)
陶陶想知道在susingnamespacestd;intn,s,a,b,
ans
;intx[5005],y[5005];intdfs(intnum,intr
hb_zhyu
·
2023-07-30 08:13
算法
leetcode 122. 买卖股票的最佳时机 II
代码:classSolution{public:intmaxProfit(vector&prices){intans=0;for(inti=1;i0)
ans
+=prices[i]-prices[i-1]
jay神
·
2023-07-30 06:25
leetcode专栏
leetcode
算法
职场和发展
c++
数据结构
二叉树结点地址小错误
TreeNode*
ans
;//头节点TreeNode*a;TreeNode*tep=newTreeNode(5);
ans
=tep;a=tep->rig
WKP9418
·
2023-07-30 04:44
随笔
H - Large Division(大数取模)
#includeusingi64=int64_t;usingnamespacestd;#defineendl'\n'#defineinti64constintmaxn=1e6+10;inta=1,n,
ans
书鸢1236
·
2023-07-30 04:10
ACM练习题集
c++
算法
开发语言
子集求和~
li=list(map(int,input().split()))n=2**(len(li)-1)
ans
=0foriinli:
ans
+=ians*=nprint(
ans
)2的n-1次方一个数要取出这么多遍
leechee___
·
2023-07-30 01:05
python
蓝桥杯 第三十五天 最短路&二分图
年第十二届省赛真题-砝码称重-C语言网(dotcpp.com)6.蓝桥杯2021年第十二届省赛真题-左孩子右兄弟-C语言网(dotcpp.com)1.Prim算法#45#121#132#143#232#344#
ans
是小肖啊!
·
2023-07-29 20:23
蓝桥杯
算法
职场和发展
bzoj3384&&1750: [Usaco2004 Nov]Apple Catching 接苹果
x:y;}intf[1005][35][2],a[1005],
ans
;intmain(){intt,w;scanf("%d%d",&t,&w);for(inti=1;i<=t;i++)scanf("%d
mengbi_er
·
2023-07-29 19:01
bzoj
————dp
【洛谷】P2690 [USACO04NOV] Apple Catching G(dp or 记忆化搜索)
j],f[i-1][j-1]),同时要加上此时在当前接到的苹果数,即加一ACcode:#includeusingnamespacestd;#defineintlonglongintt,w,w1,w2,
ans
gentle coder
·
2023-07-29 19:59
算法
dp
记忆化搜索
1011: [HNOI2008]遥远的行星
我的收获:我觉得我应该去学一下浮点精度误差……#includeusingnamespacestd;doublem[100005],sum[100005];intmain(){intn;doublea,
ans
Mmh2000
·
2023-07-29 13:11
1000-1250
11. 盛最多水的容器
classSolution{public:intmaxArea(vector&height){inti=0,j=height.size()-1;intans=0;while(i
ans=max(
ans
why151
·
2023-07-29 00:59
Leetcode
leetcode
1071. 字符串的最大公因子
暴力依次判断每一段字符是否可以构成s和t②:计算st串长度的最大公因子,判断是否可以构成classSolution{public:boolcheck(stringt,strings){stringans="";while(
ans
.length
why151
·
2023-07-29 00:28
Leetcode
java
算法
开发语言
2023-07-27力扣每日一题
includeusingnamespacestd;intdeleteGreatestValue(vector>&grid){intlgn=grid.size(),lgm=grid[0].size(),
ans
Qian丶Xi
·
2023-07-28 20:09
力扣每日一题
leetcode
算法
LeetCode--18.四数之和
a],nums[b],nums[c],nums[d]](若两个四元组元素一一对应,则认为两个四元组重复):0List[List[int]]:n=len(nums)#排序nums.sort()#存储结果
ans
leslie0727
·
2023-07-28 17:23
LeetCode
leetcode
算法
双指针
LeetCode #24 两两交换链表中的节点
ListNode(intx):val(x),next(NULL){}*};*/classSolution{public:ListNode*swapPairs(ListNode*head){ListNode*
ans
HU兔兔
·
2023-07-28 13:09
牛客周赛 Round 4
=0)
ans
=n/3*2;e
m0_73618658
·
2023-07-28 12:27
算法
leetcode——字符串相乘(C++)
字符串相乘题目分析思路重点实现`stringmul(string&num1,intx`函数`voidadd(string&
ans
,stringtmp,intk)`函数整体答案本篇文章将对leetcode
暮雨清秋.L
·
2023-07-28 09:42
C++
算法
leetcode
算法
c++
逆序数、回文数处理
参考题目求逆序数的数学方法:intgetreverse(intn){intans=0;while(n>0){
ans
=
ans
*10+n%10;n/10;}returnans;}该方法的局限:逆序数不可以过长
Ell1ot
·
2023-07-28 08:44
Matlab 中的 find() 函数
23456即对应非0数在一维数组中的下标高维但对于矩阵(或者多维数组,抑或称之为tensor),情况有所不同d=[0,2,4,6,8,10]reshape(d,1,1,2,3)我们可以直观的看到此时d的情况
ans
Qutter
·
2023-07-28 05:21
杂记
matlab
开发语言
奎恩-麦克拉斯基化简法 (Q-M 法)化简逻辑代数式
includeusingnamespacestd;intn,m,cnt;vectorvec[11],temp;inta[100],head[11],tail[11],flag[1050];intbox[1050][100],
ans
春弦_
·
2023-07-28 05:43
深度优先
算法
代码随想录算法训练营第二天|977.有序数组的平方|209. 长度最小的子数组|59. 螺旋矩阵 II|1020. 飞地的数量
977.有序数组的平方方法一classSolution{public:vectorsortedSquares(vector&nums){vectorans;for(intnum:nums){
ans
.push_back
他日若得脱身法
·
2023-07-28 04:24
算法
数据结构
C++
LeetCode 838. 推多米诺
force字符串数组记录每张骨牌的受力情况(‘L’或‘R’或‘LR’或‘RL’),
ans
记录每张骨牌的最终状态(‘L’或‘R’或‘.’),time记录每张骨牌达到最终状态的时间点(初始时为-1)。
WorldMaya
·
2023-07-27 21:27
刷题
leetcode
算法
c++
广度优先
bfs
牛客月赛 45 A-E 题解
如果n>=x那么可以反复横跳
ans
=n*x如果n#defineendl"\n"#defineB0x3f3f3f3f#defineFor(i,a,b)for(inti=(a);iPII;intmain()
weixin_50975974
·
2023-07-27 16:24
c语言
算法
贪心算法
大学生活题解
#include#includeusingnamespacestd;intn,xy[4][2]={{1,0},{0,1},{-1,0},{0,-1}},
ans
=-1;chara[110][110];boolmk
xxxalq
·
2023-07-27 13:34
搜索算法
个人学习总结
算法
c++
广度优先
23.7.25 杭电暑期多校3部分题解
constintN=1e5+9;structlol{intx,id;}e[3][N*2];intt,n,a[3][N*2],hd[3],tl[3],vis[N*2],q[N*2],num,f[N*2],
ans
Belief_yfly
·
2023-07-27 06:16
题解
DP
二分
2-sat
697. 数组的度
newHashMapintegers=map.keySet();intmax=0;for(Integerkey:integers){intvalue=map.get(key);if(maxlist=newArrayListlen){
ans
杭州下小雨~
·
2023-07-27 03:44
leetcode
200
java
算法
ZZULIOJ 1134: 字符串转换,Java
Scannercin=newScanner(System.in);Stringstr=cin.nextLine();intans=0;for(inti=0;i='0'&&str.charAt(i)<='9')
ans
WA_自动机
·
2023-07-26 14:41
#
Java刷题
java
matlab数组运算
创建>>a=[]a=[]>>b=[1,2,3]b=123>>c=[123]c=123>>d=[123;4,5,6]d=123456查询获取>>b(1)
ans
=1>>d(1,2)
ans
=2>>d(2,2)
Lou_Lan
·
2023-07-26 07:14
Matlab
matlab
开发语言
P1199(NOIP2010 普及组)三国游戏 题解
输入数组:inta[1001][1001];for(inti=1;i>a[i][j];a[j][i]=a[i][j];}注意:a[j][i]=a[i][j]表示两两武将的默契度一样;Step—2判断定义
ans
言吾myb
·
2023-07-26 05:32
c++
游戏
c++
算法
上一页
24
25
26
27
28
29
30
31
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他