码迷,mamicode.com
首页 >  
搜索关键字:bob    ( 1241个结果
41-python基础-python3-字符串-转义字符
转义字符包含一个倒斜杠(\),紧跟着是想要添加到字符串中的字符。(尽管它包含两个字符,但大家公认它是一个转义字符。) 转义字符包含一个倒斜杠(\),紧跟着是想要添加到字符串中的字符。(尽管它包含两个字符,但大家公认它是一个转义字符。) 实例1: Python 知道,因为 Bob\'s 中的单引号有一 ...
分类:编程语言   时间:2019-08-17 18:17:32    阅读次数:86
dict和set
dictdict是一个kv键值对,根据索引查找值。dict的key是根据hash算法计算>>>d={‘Michael‘:95,‘Bob‘:75,‘Tracy‘:85}>>>d[‘Michael‘]95>>>d[‘Jack‘]=90>>>d[‘Jack‘]90>>>d[‘Jack‘]=88#覆盖前面的值>
分类:其他好文   时间:2019-08-11 10:55:19    阅读次数:90
2017 ICPC Asia Urumqi A.coins (概率DP + 期望)
题目链接: "Coins" Description Alice and Bob are playing a simple game. They line up a row of nn identical coins, all with the heads facing down onto the t ...
分类:其他好文   时间:2019-08-10 20:58:48    阅读次数:107
@spoj - COT3@ Combat on a tree
Alice 和 Bob 在一棵 n 个节点的树上玩游戏,每个节点初始要么为黑色要么为白色。 Alice 先手,轮流进行如下操作: 选择一个白色点 v,将路径 (1, v) 全部染成黑色。 最后不能操作的人为输。 帮忙计算 Alice 是否必胜以及所有必胜可能的第一步结点的选择。 ...
分类:其他好文   时间:2019-08-10 09:19:13    阅读次数:75
Coins(概率dp)
Coins I 题目描述 Alice and Bob are playing a simple game. They line up a row of n identical coins, all with the heads facing down onto the table and the t ...
分类:其他好文   时间:2019-08-08 16:19:11    阅读次数:92
Strategic Game(树形DP)
Strategic Game(树形DP) [toc] 题目 Bob enjoys playing computer games, especially strategic games, but sometimes he cannot find the solution fast enough and ...
分类:其他好文   时间:2019-08-03 10:44:10    阅读次数:84
[线段树] Luogu P4314 COU监控
题目描述 Bob需要一个程序来监视CPU使用率。这是一个很繁琐的过程,为了让问题更加简单,Bob会慢慢列出今天会在用计算机时做什么事。 Bob会干很多事,除了跑暴力程序看视频之外,还会做出去玩玩和用鼠标乱点之类的事,甚至会一脚踢掉电源……这些事有的会让做这件事的这段时间内CPU使用率增加或减少一个值 ...
分类:其他好文   时间:2019-07-27 09:39:59    阅读次数:88
Codeforces Round #575 (Div. 3) (A. Three Piles of Candies)(数学)
A. Three Piles of Candies time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard output Alice and Bob have ...
分类:其他好文   时间:2019-07-26 02:06:11    阅读次数:133
Python的list
Python内置的一种数据类型是列表:list。list是一种有序的集合,可以随时添加和删除其中的元素。 比如,列出班里所有同学的名字,就可以用一个list表示: >>> ['Michael', 'Bob', 'Tracy']['Michael', 'Bob', 'Tracy'] list是数学意义 ...
分类:编程语言   时间:2019-07-14 09:27:28    阅读次数:121
1241条   上一页 1 ... 12 13 14 15 16 ... 125 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!