topcoder SRM 592 DIV2 LittleElephantAndBooks
#include <iostream>
#include <vector>
#include <algorithm> using namespace std; class LittleElephantAndBooks{
public:
int getNumber(vector<int> pages,int number){
sort(pages.begin(),pages.end());
int res = pages[number];
for(int i = ; i < number-; i ++ ){
res += pages[i];
}
return res;
}
};
topcoder SRM 592 DIV2 LittleElephantAndBooks的更多相关文章
- topcoder SRM 592 DIV2 LittleElephantAndPermutationDiv2
		#include <iostream> #include <vector> #include <algorithm> #include <iterator&g ... 
- SRM 592 DIV2 报告
		昨天下午查看邮箱,看到了topcoder的SRM比赛通知和cf的比赛通知,当时什么也不想做,心里空荡荡的,忽然就想参加一下,试试看.吃完晚饭回来一看,就剩十几分钟了,匆忙把平台下了,就开始等待比赛开始 ... 
- Topcoder Srm 673 Div2 1000 BearPermutations2
		\(>Topcoder \space Srm \space 673 \space Div2 \space 1000 \space BearPermutations2<\) 题目大意 : 对 ... 
- Topcoder Srm 671 Div2 1000 BearDestroysDiv2
		\(>Topcoder \space Srm \space 671 \space Div2 \space 1000 \space BearDestroysDiv2<\) 题目大意 : 有一 ... 
- 求拓扑排序的数量,例题 topcoder srm 654 div2 500
		周赛时遇到的一道比较有意思的题目: Problem Statement There are N rooms in Maki's new house. The rooms are number ... 
- Topcoder srm 632 div2
		脑洞太大,简单东西就是想复杂,活该一直DIV2; A:水,基本判断A[I]<=A[I-1],ANS++; B:不知道别人怎么做的,我的是100*N*N;没办法想的太多了,忘记是连续的数列 我们枚 ... 
- topcoder SRM 628 DIV2 BracketExpressions
		先用dfs搜索所有的情况,然后判断每种情况是不是括号匹配 #include <vector> #include <string> #include <list> # ... 
- topcoder SRM 628 DIV2 BishopMove
		题目比较简单. 注意看测试用例2,给的提示 Please note that this is the largest possible return value: whenever there is ... 
- Topcoder SRM 683 Div2 B
		贪心的题,从左向右推过去即可 #include <vector> #include <list> #include <map> #include <set&g ... 
随机推荐
- ■SQL注入自学[第三学:注入点的读写、out_file]
			00x1 判断是否可读 code: http:.php?id and (select count(*) from mysql.user) >0--/*返回正确的话,说明没有是有读的权限.返回错误 ... 
- [官方说明] 为什么ES4要分成两阶段?
			从ES4第一个版本发布到现在,已经有段时间了,绝大多数坛友都已经适应了ES4所带来的新封装模式,但仍有部分新人和坛友对ES4的两阶段模式带有不解或曲解.本帖将就ES4的两阶段意义做出解释说明,希望更多 ... 
- poj1753枚举
			Flip Game Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 33670 Accepted: 14713 Descr ... 
- PHP快速抓取快递信息
			<?php header("Content-type:text/html;charset=utf-8"); /** * Express.class.php 快递查询类 * @ ... 
- ubuntu 桌面版性能调优
			http://www.howtogeek.com/115797/6-ways-to-speed-up-ubuntu/ 
- 【leetcode】Combination Sum II
			Combination Sum II Given a collection of candidate numbers (C) and a target number (T), find all uni ... 
- 【转】利用optimize、存储过程和系统表对mysql数据库表进行批量碎片清理释放表空间
			本文收集于本人的笔记本,由于找不到原文出处.在此省略,如哪位知道可以联系我加上. 核心是利用mysql系统表和“optimize table 表名”命令,对mysql数据表进行空间的释放.由于dele ... 
- extjs插件开发上传下载文件简单案例
			前台,extjs,框架,mybatis,spring,springMVC,简单的文件上传下载案例. 必要的jar包,commons-fileupload-1.3.1.jar,commons-io-2. ... 
- VS2010设置C++包含目录和库目录
			视图-属性管理器-随便选择一个项目例如MyProject-Debug|Win32-Microsoft.Cpp.Win32.user-右键“属性”-VC++目录 Release同理 
- linux常见问题集锦-2
			http://zhangge.net/1986.html 在此感谢作者分享 1.linux如何挂在windows下的共享目录 Shell 1 mount.cifs //192.168.1.3/serv ... 
