E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
5349
hdu
5349
MZL's simple problem(简单的SET容器)
pid=
5349
MZL'ssimpleproblemTimeLimit:3000/1500MS(Java/Others) MemoryLimit:65536/65536K(Java/Others)
sinat_30126425
·
2015-08-18 21:00
HDU
hdu
5349
MZL's simple problem
hdu
5349
的传送门ProblemDescriptionAsimpleproblemProblemDescriptionYouhaveamultipleset,andnowtherearethreekindsofoperations
qingshui23
·
2015-08-07 14:00
集合
STL
G - MZL's simple problem-HDU
5349
-模拟multiset
可以直接用multiset做、我是用优先队列#include #include #include #include #include #include #include #include #include usingnamespacestd; structcmp1 { booloperator()(__int64&a,__int64&b) { returna>b;//最小值优先 } }; prio
viphong
·
2015-08-06 18:00
HDU
5349
MZL's simple problem(队列)
题目地址:点击打开链接思路:刚开始还以为每次输出最大值还要删除呢,调了半天没有过,看别人的代码,没看到把最大值弹出,每次只保留最大值,以为是数据的BUG,结果又一看题query的意思是查询.。。。把自己的代码改了一下,没过,直接参考写了个用优先队列和队列写的代码,有时间改一下,还有就是注意有多组测试数据,看到有人用multiset也A了,有时间学一下错误代码1:#include #include
qq_25605637
·
2015-08-06 12:00
ISIS+BGP
原作者:枫叶http://blog.sina.com.cn/s/blog_
5349
d9b80100akp1.html拓扑:R5/AS10-------10.10.9.0/24-----R3/AS100-
anzhuangguai
·
2015-08-06 11:00
2015 Multi-University Training Contest 5(HDOJ5351)
官方题解:http://blog.sina.com.cn/duoxiao2015感觉整理太水的题完全没用,从这次之后就不整理水题了,水题定义:比赛时超过300人AC的题目HDOJ5344、5347、
5349
bnmjmz
·
2015-08-06 11:00
hdu
5349
MZL's simple problem 2015多校联合训练赛#5 简单题
MZL'ssimpleproblemTimeLimit:3000/1500MS(Java/Others) MemoryLimit:65536/65536K(Java/Others)TotalSubmission(s):904 AcceptedSubmission(s):431ProblemDescriptionAsimpleproblemProblemDescriptionYouhav
firenet1
·
2015-08-06 09:00
HDU
HDU
5349
2015多校联合训练赛
hdu
5349
MZL's simple problem(水)
题目链接:hdu
5349
MZL'ssimpleproblem#include #include #include #include usingnamespacestd; typedefset::iteratoriter
u011328934
·
2015-08-05 15:00
[水题] hdu
5349
MZL's simple problem
MZL’ssimpleproblemTimeLimit:3000/1500MS(Java/Others)MemoryLimit:65536/65536K(Java/Others)TotalSubmission(s):717AcceptedSubmission(s):348ProblemDescriptionAsimpleproblemProblemDescriptionYouhaveamultip
u012848631
·
2015-08-05 13:00
hdu
5349
MZL's simple problem(multiset)
代码:#include #include usingnamespacestd; multisetst; intmain() { intn; multiset::iteratorit; while(scanf("%d",&n)==1) { st.clear(); intk,num; for(inti=0;i0) { it=st.begin(); st.erase(*it); } } else {
xky1306102chenhong
·
2015-08-04 21:00
STL
HDU
5349
MZL's simple problem
ProblemDescriptionAsimpleproblemProblemDescriptionYouhaveamultipleset,andnowtherearethreekindsofoperations:1x:addnumberxtoset2:deletetheminimumnumber(ifthesetisemptynow,thenignoreit)3:querythemaximumn
jtjy568805874
·
2015-08-04 20:00
HDU
2015 多校联赛 ——HDU
5349
(水)
ProblemDescriptionAsimpleproblemProblemDescriptionYouhaveamultipleset,andnowtherearethreekindsofoperations:1x:addnumberxtoset2:deletetheminimumnumber(ifthesetisemptynow,thenignoreit)3:querythemaximumn
Fun_Zero
·
2015-08-04 20:00
HDU
2015联赛
HDU
5349
MZL's simple problem
分析:给你n个操作,1x:代表在数组中加入元素x,2:代表删除最小元素,3:代表输入最大值。删除时,就算我们的数不是最小的也可以,它也不知道,只要不是最大的就行,当数组内的数为0时,就重新初始化最大值,每加入一个数就和最大值判断。#include intmain() { inti,n,num,t,x,max; while(scanf("%d",&n)!=EOF) { max=-1000000000
ZengAMing
·
2015-08-04 19:00
ACM
HDU
5349
MZL's simple problem (STL 优先队列)
ProblemDescriptionAsimpleproblemProblemDescriptionYouhaveamultipleset,andnowtherearethreekindsofoperations:1x:addnumberxtoset2:deletetheminimumnumber(ifthesetisemptynow,thenignoreit)3:querythemaximumn
h1021456873
·
2015-08-04 17:00
HDU
5349
MZL's simple problem
MZL'ssimpleproblemTimeLimit:3000/1500MS(Java/Others) MemoryLimit:65536/65536K(Java/Others)TotalSubmission(s):0 AcceptedSubmission(s):0ProblemDescription Asimpleproblem ProblemDescription Yo
queuelovestack
·
2015-08-04 15:00
ACM
STL
跳跃表基础——POJ 3481 Double Queue
对应POJ题目:点击打开链接DoubleQueueTimeLimit: 1000MS MemoryLimit: 65536KTotalSubmissions: 11768 Accepted:
5349
DescriptionThenewfoundedBalkanInvestmentGroupBank
u013351484
·
2015-08-02 17:00
Python偏函数
如果传入base参数,就可以做 N 进制的转换:>>>int('12345',base=8)
5349
>>>int
qq_20480611
·
2015-06-24 22:00
python
Tomcat异常停止
log$free-m total used free shared buffers cachedMem: 7974
5349
skill1986
·
2014-12-11 18:00
zoj 3817 2014牡丹江网赛 字符串哈希
problemId=
5349
比赛的时候没看这道题,遗憾,不过想到算法不难,但是写代码比较考代码能力,我自己写了两次都不行,还是看了别人代码,写下了这个学到:1、hash字符串第一个下表为0的空起来,写起来方便
u011026968
·
2014-09-12 01:00
024、Linux下nginx连接数
GET-t5 http://127.0.0.1/NginxStatus/Activeconnections:
5349
serveracceptshandledrequests357374963573749655813037Reading
632840815
·
2013-04-12 17:06
linux
nginx
连接数
世界各国人口及国土面积及资源排名~
世界各国人口最新排名 - 2011:http://wenku.baidu.com/view/8ab3a508f78a6529647d
5349
.html世界各国面积排名国家国土面积:http://wenku.baidu.com
rangf
·
2011-11-28 13:00
c
深入C++ Builder之编写自己的元件(2)
关键字:编写自己的元件,VCL继承,消息机制,Aweay,DYNAMIC函数,消息作者:Aweay 更新:2003-06-05 浏览:
5349
深入C++Builder之编写自己的元件-深入分析VCL
qq752923276
·
2011-03-03 18:00
CDMA2000 1X数据业务流程
CDMA20001X数据业务流程 http://blog.sina.com.cn/s/blog_
5349
d9b801009pdy.html <!
wapysun
·
2010-10-25 17:00
数据
CDMA2000 1X数据业务流程
CDMA2000 1X数据业务流程http://blog.sina.com.cn/s/blog_
5349
d9b801009pdy.html一、在cdma20001x数据业务流程中,无线数据用户存在以下三种状态
gracioushe
·
2010-10-25 17:00
网络
command
null
mobile
扩展
手机
上一页
1
2
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他