uva 10779 Collectors Problem Some candy manufacturers put stickers into candy bar packages. Bob and his friends are collecting these stickers. They al ...
分类:
其他好文 时间:
2017-12-23 17:09:54
阅读次数:
143
istringstream、ostringstream、stringstream 类介绍 和 stringstream类 clear函数的真正用途 来源: http://blog.csdn.net/TQH_Candy/article/details/52494570 0、C++的输入输出分为三种: ...
分类:
其他好文 时间:
2017-12-22 19:47:57
阅读次数:
164
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4465 知识点: 概率和期望 题目大意: 懒小孩有 2 个盒子,每个盒子里面有 \(n (1 \le n \le 2 \times 10^5)\) 颗糖,懒小孩每天有 \(p (0 \le p \le 1 ...
分类:
其他好文 时间:
2017-11-21 01:01:10
阅读次数:
160
This question is about implementing a basic elimination algorithm for Candy Crush. Given a 2D integer array board representing the grid of candy, diff ...
分类:
其他好文 时间:
2017-11-19 01:47:58
阅读次数:
368
题目描述 There are N children standing in a line. Each child is assigned a rating value. You are giving candies to these children subjected to the followi ...
分类:
其他好文 时间:
2017-11-12 16:31:00
阅读次数:
141
Given an integer array with even length, where different numbers in this array represent different kinds of candies. Each number means one candy of th ...
分类:
其他好文 时间:
2017-10-31 10:55:50
阅读次数:
144
class Solution { public int candy(int[] ratings) { int[] candies=new int[ratings.length]; for(int i=0;i=0;i--) if(ratings[i]>ratings[i+1]) candies[i]=... ...
分类:
其他好文 时间:
2017-10-08 13:03:16
阅读次数:
182
题目描述总共有n颗糖果,有3个小朋友分别叫做L,Y,K。每个小朋友想拿到至少k颗糖果,但这三个小朋友有一个共同的特点:对3反感。也就是说,如果某个小朋友拿到3颗,13颗,31颗,333颗这样数量的糖果,他就会不开心。(也即它拿到的糖果数量不包含有一位是3)LYK掌管着这n颗糖果,它想问你有多少种合理 ...
分类:
其他好文 时间:
2017-10-03 23:34:13
阅读次数:
450
题目大意: 给两个数 m n ; 在输入一个 n * m 的地图。 问从 S 走到 E 优先向左和优先向右还有最短路径分别有多少步。 样例:(# 代表墙 , . 代表路) 2 8 8 ######## # . . . . . .# # .#### .# # .#### .# # .#### .# # ...
分类:
其他好文 时间:
2017-09-29 13:57:44
阅读次数:
183
可以下载一长篇的英文小说,进行词频的分析。 1.读入待分析的字符串 2.分解提取单词 3.计数字典 4.排除语法型词汇 5.排序 6.输出TOP(20) fo = open('C:\\Users\\CANDY\\Desktop\\a.txt','r')news = fo.read()fo.close ...
分类:
其他好文 时间:
2017-09-27 19:08:56
阅读次数:
193