题目:http://codeforces.com/problemset/problem/220/B 题意 给定一组数据,多次询问区间内某数字出现次数与该数字数值相同的数的个数 思路 一看到区间查询,就会想到线段树,有木有! 单点或区间的修改、查询等可是线段树的强项嘞√ 而我们今天的线段树类型为: 离 ...
分类:
其他好文 时间:
2018-05-20 14:21:50
阅读次数:
231
标签(空格分隔): 数位DP 背包DP 算出有i个幸运数字的方案,然后枚举上限做背包DP cpp include include include using namespace std; typedef long long ll; ll read() { ll x=0,f=1;char ch=get ...
分类:
其他好文 时间:
2018-05-10 13:22:53
阅读次数:
138
Discription The Little Elephant loves permutations of integers from 1 to n very much. But most of all he loves sorting them. To sort a permutation, th ...
分类:
其他好文 时间:
2018-05-01 20:51:41
阅读次数:
187
The Little Elephant loves strings very much. He has an array a from n strings, consisting of lowercase English letters. Let's number the elements of t ...
分类:
其他好文 时间:
2018-03-17 23:25:03
阅读次数:
283
A Apple B Ball C Car D doctor E Elephant F Frog G Gorilla H Horse I Ice cream J Jam K Kite L Lemon M Mother N Nut O Orange P Puppet 木偶 Q Queen R Rabbi ...
分类:
其他好文 时间:
2018-02-25 17:33:19
阅读次数:
200
Little Elephant loves magic squares very much. A magic square is a 3?×?3 table, each cell contains some positive integer. At that the sums of integers ...
分类:
其他好文 时间:
2018-01-21 01:07:30
阅读次数:
184
理解程序的本质:1.为什么有各种各样的程序?2.程序的本质是什么?程序是是为了解决问题而存在的,各种各样的问题产生了各种各样的程序软件。因此,程序的本质就是解决问题的步骤描述。就比如要解决把大象放进冰箱需要三个步骤,把冰箱门打开、把大象放进去、关上冰箱门。用程序可以分为以下步骤1.fridge*e=newfridge();//定义冰箱这个对象2.elephant*h=newelephant();/
分类:
其他好文 时间:
2018-01-11 23:59:04
阅读次数:
380
序列 基本概念 列表、元组和字符串都是序列 序列的两个主要特点是索引操作符和切片操作符。 索引操作符让我们可以从序列中抓取一个特定项目。 切片操作符让我们能够获取序列的一个切片,即一部分序列。 索引同样可以是负数,位置是从序列尾开始计算的。 因此,shoplist[ 1]表示序列的最后一个元素,而s ...
分类:
其他好文 时间:
2018-01-01 23:33:40
阅读次数:
172
1.元组的概念和用法 zoo = ('wolf','elephant','penguin')print ('Number of animals in the zoo is',len(zoo)) new_zoo = ('monkey','dolphin',zoo)print ('Number of a ...
分类:
编程语言 时间:
2017-11-20 21:39:04
阅读次数:
181