DeepLoveNew
DeepLoveNew
全部文章
题解
归档
标签
去牛客网
登录
/
注册
DN
一位年轻的、有头发的cxy
全部文章
/ 题解
(共27篇)
题解 | #A + B Is Overflow#
题目描述 Judge whether the sum of A and B will exceed the range of 32-bit signed integer. 输入描述: There are multiple test cases. The fi...
C++
2021-09-25
0
469
题解 | #[NOIP2002]级数求和#
题目描述: 已知:Sn= 1+1/2+1/3+…+1/n。显然对于任意一个整数K,当n足够大的时候,Sn大于K。 现给出一个整数K(1<=k<=15),要求计算出一个最小的n;使得Sn>K。 输入:k 输出:n 水题,直接干 #include&l...
2021-09-24
0
458
题解 | #[NOIP2015]金币#
题目描述: 国王将金币作为工资,发放给忠诚的骑士。第一天,骑士收到一枚金币;之后两天(第二天和第三天),每天收到两枚金币;之后三天(第四、五、六天),每天收到三枚金币;之后四天(第七、八、九、十天),每天收到四枚金币……;这种工资发放模式会一直这样延续下去:当连续N天每天收到N枚金币后,...
2021-09-24
0
695
题解 | #Polycarp's Pockets#
题目描述 Polycarp has nnn coins, the value of the iii-th coin is aia_iai. Polycarp wants to distribute all the coins between his pockets...
C++
数组
2021-09-19
0
664
题解 | #从尾到头打印链表#
输入一个链表的头节点,按链表从尾到头的顺序返回每个节点的值(用数组返回)。 class Solution { public: vector<int> printListFromTailToHead(L...
vector
单链表
2021-09-08
0
324
题解 | #替换空格#
请实现一个函数,将一个字符串中的每个空格替换成“%20”。例如,当字符串为We Are Happy.则经过替换之后的字符串为We%20Are%20Happy。 这道题确实没啥,直接干吧! class Solution { public: &nbs...
vector
string
2021-09-08
0
458
题解 | #[NOIP2009]多项式输出#
链接:https://ac.nowcoder.com/acm/problem/16622 来源:牛客网 题目描述 一元n次多项式可用如下的表达式表示: f (x) = anxn+ an-1xn-1 + ... + a1x +...
多项式
2021-09-02
0
809
题解 | #Codehorses T-shirts#
掌握SQL后,此题即为入门难度,主要运用map相关知识 题目描述 Codehorses has just hosted the second Codehorses Cup. This year, the same as the previous one...
SQL
map
2021-08-29
2
500
题解 | #数组中只出现一次的数(其它数出现k次)#
描述 给定一个长度为 的整型数组 和一个整数 。 已知 中只有 1 个数出现一次,其他的数都出现 次。 请返回只出现了 1 次的数。 ...
vector
2021-08-28
0
792
题解 | #最小的K个数#
问题描述: 给定一个数组,找出其中最小的K个数。例如数组元素是4,5,1,6,2,7,3,8这8个数字,则最小的4个数字是1,2,3,4。 0 <= k <= input.length <= 10000 0 <...
vector
2021-08-27
0
442
首页
上一页
1
2
3
下一页
末页