码迷,mamicode.com
首页 >  
搜索关键字:scores    ( 329个结果
CodeForces 712D Memory and Scores
...
分类:其他好文   时间:2016-09-17 10:37:18    阅读次数:187
[CodeForces - 712D]Memory and Scores (DP 或者 生成函数)
题目大意: 两个人玩取数游戏,第一个人分数一开始是a,第二个分数一开始是b,接下来t轮,每轮两人都选择一个[-k,k]范围内的整数,加到自己的分数里,求有多少种情况使得t轮结束后a的分数比b高。 (1?≤?a,?b?≤?100, 1?≤?k?≤?1000, 1?≤?t?≤?100) 1.我一开始的想 ...
分类:其他好文   时间:2016-09-14 16:56:29    阅读次数:143
Codeforces Round #370 (Div. 2) D. Memory and Scores DP
D. Memory and Scores Memory and his friend Lexa are competing to get higher score in one popular computer game. Memory starts with score a and Lexa st ...
分类:其他好文   时间:2016-09-13 22:26:17    阅读次数:227
Sorted sets
Redis in Action JOSIAH L. CARLSON MANNING Shelter Island ZSETs offer the ability to store a mapping of members to scores (similar to the keys and valu ...
分类:其他好文   时间:2016-08-28 22:08:37    阅读次数:165
Scala:映射和元组
映射是键值对偶的集合。Scala有一个通用的叫法——元组:n个对象的聚集,并不一定要相同的类型。 构造映射 键A -> 值B scala> val scores = Map("wcc100"->100)//不可变映射 scores: scala.collection.immutable.Map[St ...
分类:其他好文   时间:2016-08-25 23:32:41    阅读次数:125
关于:cross_validation.scores
...
分类:其他好文   时间:2016-08-10 08:48:17    阅读次数:164
使用DOM解析XML文档
1、创建XML文档<?xmlversion="1.0"encoding="UTF-8"?> <Students> <studentstuno="1001"> <name>张三</name> <gender>男</gender> <scores>100</scores> </student> <studentstuno="1002"> <name>李..
分类:其他好文   时间:2016-08-06 14:33:56    阅读次数:139
赛场统分
程序地址:http://www.cheemoedu.com/exercise/7问题描述:在编程竞赛中,有10个评委为参赛的选手打分,分数为0~100分。选手最后得分为:去掉一个最高分和一个最低分后其余8个分数的平均值。请编写一个程序实现。我的代码:scores=[] i=1 whilei<=4: score=int(raw_input("p..
分类:其他好文   时间:2016-07-11 01:29:09    阅读次数:187
Java之数组了解
一、什么是数组 数组可以理解为是一个巨大的“盒子”,里面可以按顺序存放多个类型相同的数据, 比如可以定义 int 型的数组 scores 存储 4 名学生的成绩: int[] scores={76,83,92,87}; 其中,数组的名称为scores,每一个值都有一个索引,从0开始,可以通过 sco ...
分类:编程语言   时间:2016-07-08 18:18:50    阅读次数:187
Sql的行列(纵横表)转换
创建表scores 一、传统的行列转换 纵表转横表 我们要转成的横表是这样子的: 既然这个表只有两列,那么可以根据姓名进行分组。先把姓名拼凑出来,后面的分数我们再想办法。 结果: 分析: 这里符合我们需求的 case 语句就登场了。它和c#中switch-case 作用一样。 sql case 语句 ...
分类:数据库   时间:2016-06-28 09:21:43    阅读次数:231
329条   上一页 1 ... 22 23 24 25 26 ... 33 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!