动归
abc0x
这个作者很懒,什么都没留下…
展开
-
A - 高数Umaru系列(9)——哈士奇
Description由于高数巨养的喵星人太傲娇了,要天天吃新鲜猫粮而且还经常欺负高数巨,所以高数巨决定买几条哈士奇尝尝鲜。这天高数巨来到了二手狗市场买哈士奇,高数巨看完了所有的哈士奇,记下了每条哈士奇的价格,并根据对它们的好感程度给它们每只都赋予了一个萌值。高数现在手里有X元,她想通过购买若干条哈士奇来获得尽可能多的萌值。现在给定高数巨手里的钱X以及N条哈士奇的价格和萌值,求高数巨最多可获得多少萌值Input 多组输入。对于每组输入,第一行有两个整数N,X(1 < = N < = 1.原创 2020-11-29 14:42:05 · 278 阅读 · 0 评论 -
C - 数字三角形问题
Description给定一个由n行数字组成的数字三角形如下图所示。试设计一个算法,计算出从三角形的顶至底的一条路径,使该路径经过的数字总和最大。 对于给定的由n行数字组成的数字三角形,计算从三角形的顶至底的路径经过的数字和的最大值。Input输入数据的第1行是数字三角形的行数n,1≤n≤100。接下来n行是数字三角形各行中的数字。所有数字在0..99之间。Output输出数据只有一个整数,表示计算出的最大值。SampleInput 573 88 1 02 7 4 44 5 2原创 2020-11-28 20:21:36 · 434 阅读 · 0 评论 -
B - 最少硬币问题
Description设有n种不同面值的硬币,各硬币的面值存于数组T[1:n]中。现要用这些面值的硬币来找钱。可以使用的各种面值的硬币个数存于数组Coins[1:n]中。对任意钱数0≤m≤20001,设计一个用最少硬币找钱m的方法。对于给定的1≤n≤10,硬币面值数组T和可以使用的各种面值的硬币个数数组Coins,以及钱数m,0≤m≤20001,计算找钱m的最少硬币数。Input输入数据第一行中只有1个整数给出n的值,第2行起每行2个数,分别是T[j]和Coins[j]。最后1行是要找的钱数m。原创 2020-11-28 19:48:31 · 232 阅读 · 0 评论 -
G - Hungry Canadian
添加链接描述Teodoro just moved to Canada. He is having a hard time there as the cost of living is higher than he expected. He is short on money so he decided to eat a string, as they are cheaper than food....原创 2019-09-27 20:29:40 · 164 阅读 · 0 评论 -
最长公共子序列问题
Problem Description给定两个序列 X={x1,x2,…,xm} 和 Y={y1,y2,…,yn},找出X和Y的最长公共子序列。Input输入数据有多组,每组有两行 ,每行为一个长度不超过500的字符串(输入全是大写英文字母(A,Z)),表示序列X和Y。Output每组输出一行,表示所求得的最长公共子序列的长度,若不存在公共子序列,则输出0。Sample InputA...原创 2019-09-17 20:01:20 · 128 阅读 · 0 评论 -
最长上升子序列
一个数的序列bi,当b1 < b2 < … < bS的时候,我们称这个序列是上升的。对于给定的一个序列(a1, a2, …, aN),我们可以得到一些上升的子序列(ai1, ai2, …, aiK),这里1<= i1 < i2 < … < iK <= N。比如,对于序列(1, 7, 3, 5, 9, 4, 8),有它的一些上升子序列,如(1, 7),...原创 2019-09-17 19:51:32 · 100 阅读 · 0 评论 -
J - X and Beasts
添加链接描述X is fighting beasts in the forest, in order to have a better chance to survive he’s gonna buy upgrades for his weapon. Weapon upgrade shops are available along the forest, there are n shops, w...原创 2019-08-16 15:12:28 · 1149 阅读 · 0 评论 -
C. Basketball Exercise
题目C. Basketball Exercisetime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputFinally, a basketball court has been opened in SIS, so Demid has dec...原创 2019-08-14 16:48:59 · 403 阅读 · 0 评论 -
D. Yet Another Subarray Problem
添加链接描述D. Yet Another Subarray Problemtime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputYou are given an array a1,a2,…,ana1,a2,…,an and two int...原创 2019-08-07 20:12:23 · 367 阅读 · 0 评论 -
E - Tickets
添加链接描述Jesus, what a great movie! Thousands of people are rushing to the cinema. However, this is really a tuff time for Joe who sells the film tickets. He is wandering when could he go back home as e...原创 2019-08-03 15:52:47 · 155 阅读 · 0 评论