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
Ilya
Ilya
Muromets 线段树
Ilya
Muromets Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/gym/100513/problem
·
2015-10-21 10:02
codeforces
Code Forces 313B
Ilya
and Queries
C-CTimeLimit:2000MS MemoryLimit:262144KB 64bitIOFormat:%I64d&%I64uSubmitStatusPracticeCodeForces313BDescriptionIlyatheLionwantstohelpallhisfriendswithpassingexams.Theyneedtosolvethefollowingprob
lizhaowei213
·
2015-08-24 12:00
Ilya
and Escalator(概率dp)
题目链接:codeforces518D题目大意:有n个人,每秒有p的概率有一个人进电梯,问t秒后电梯里的人数的期望。题目分析:定义dp[i][j]表示第i秒电梯里有j个人的概率。j!=n时,dp[i][j]=p⋅dp[i−1][j−1]+(1−p)⋅dp[i−1][j]j==n时,dp[i][j]=p⋅dp[i−1][j−1]+dp[i−1][j]因为如果n个人用完了,那么后面的状态100%会继承
qq_24451605
·
2015-08-14 19:00
codeforces
概率DP
Ilya
and Diplomas(水~)
Description有n块奖牌,现在要分发给一二三等奖,给出一二三等奖的最少与最多奖牌数,要求首先满足一等奖最多,其次满足二等奖最多,数据保证有解,输出满足要求的一二三等奖个数Input第一行一个整数n表示奖牌个数,后三行第i行表示i等奖的最少与最多个数Output输出满足要求的一二三等奖个数SampleInput6152637SampleOutput123Solution水题,首先在满足二三等
V5ZSQ
·
2015-07-27 13:00
F -
Ilya
Muromets-
一开始算法就错了错误地认为是 先找到一个max连续k区间再找一个即可。。。。(这也太简单了吧)实际是要找到两个连续k区间的和最大。。两者是不同的。。。。让我发现区别的样例是这个104381148908749082985答案应该是除去38和4之外的数只和#include #include #include #include #include #include #include #include #i
viphong
·
2015-07-25 21:00
Ilya
and Diplomas
题意:给出3个区间[L1,R1],[L2,R2],,[L3,R3]和正整数n,要求在3个区间内各选一个正整数,使得选出来的数之和为n。如果有多种选法,取从第一个区间内选出的数最大的选法。如果仍有多种选法,取从第二个区间中选出的数最大的选法,如果仍有多种选法,取从第三个区间内选出的数最大的选法。题目保证至少存在一种选法。解题思路:要使第一个区间内选出的数尽量大,意思就是尽量让后两个区间选出的数尽量小
qq919017553
·
2015-07-16 11:00
Ilya
and Diplomas
题目链接:http://codeforces.com/contest/557/problem/A#include usingnamespacestd; intminn[3]; intmaxx[3]; intmain() { intm; while(cin>>m) { intans[3]={0}; for(inti=0;i>minn[i]>>maxx[i]; for(inti=0;i<3;i++)
qingshui23
·
2015-07-02 18:00
水
CF 557A(
Ilya
and Diplomas-贪心)
A.IlyaandDiplomastimelimitpertest1secondmemorylimitpertest256megabytesinputstandardinputoutputstandardoutputSoonaschoolOlympiadinInformaticswillbeheldinBerland, n schoolchildrenwillparticipatethere.At
nike0good
·
2015-07-01 21:00
Ilya
and Diplomas
题目地址水题都错了,因为以为先尽量让第三大,其实是第一。看错题目。#include intmain() { intn; intmin1,min2,min3,max1,max2,max3; intr1,r2,r3; scanf("%d",&n); scanf("%d%d",&min1,&max1); scanf("%d%d",&min2,&max2); scanf("%d%d",&min3,&max
liupan1114250779
·
2015-07-01 12:00
Codeforces Round #311 (Div. 2)A
Ilya
and Diplomas
【比赛链接】clickhere~~【题目大意】n个人,获取一到三等文凭,每门文凭有大小范围,求最后文凭各颁发多少【解题思路】直接枚举了,看完题,赶紧写了一发代码,发现居然错过注册时间,系统提示不能提交代码,真是醉了~~,以后还是得提前注册:A题,比较简单:我去,昨天发的代码早上交上去居然WA了,简直打脸~~更新一下代码代码:#include #include usingnamespacestd;
u013050857
·
2015-06-30 23:00
codeforces
(翻译)Untangling Evented Code with Ruby Fibers
Untangling Evented Code with Ruby FibersBy
Ilya
Grigorik on March 22, 2010Event-driven
michael_roshen
·
2015-05-06 18:00
fiber
Ilya
and Roads
EverythingisgreataboutIlya’scity,excepttheroads.Thethingis,theonlyZooVilleroadisrepresentedasnholesinarow.Wewillconsidertheholesnumberedfrom1ton,fromlefttoright.Ilyaisreallykeeponhelpinghiscity.So,hew
Guard_Mine
·
2015-04-02 20:00
dp
Codeforces Round #297 (Div. 2) C -
Ilya
and Sticks
简单贪心,注意求的是矩形面积总和。。#include #include #include #include #include #include #include #include #include #include #include #include #include #definemaxn100005 #definemaxm300005 #defineeps1e-3 #definemod9999
blankcqk
·
2015-03-27 20:00
codeforces
CF 525C(
Ilya
and Sticks-贪心)
C.IlyaandStickstimelimitpertest2secondsmemorylimitpertest256megabytesinputstandardinputoutputstandardoutputIntheevening,afterthecontestIlyawasbored,andhereallyfeltlikemaximizing.Herememberedthathehada
nike0good
·
2015-03-27 17:00
Ilya
and Sticks(Codeforces Round 297(div2))
C.IlyaandStickstimelimitpertest2secondsmemorylimitpertest256megabytesinputstandardinputoutputstandardoutputIntheevening,afterthecontestIlyawasbored,andhereallyfeltlikemaximizing.Herememberedthathehada
caduca
·
2015-03-27 16:00
Algorithm
编程
ACM
codeforces
Ilya
and Sticks
1.题目描述:点击打开链接2.解题思路:本题要求在一些木棍中找出能够拼成长方形的四根木棍,使得拼出的所有长方形的总面积尽量最大。木棍可以截去1个单位长度。这道题本来理解错了,以为找最大的长方形的面积,纠结了一晚上,直到比赛结束都不明白为啥第四组数据就WA了==。先对小木棍排序,只用从n-2开始逆序地贪心选择就行。如果L[i]==L[i+1]或L[i]==L[i+1]-1,那么把L[i]加入到vec
u014800748
·
2015-03-27 13:00
贪心法
Codeforces Round #293 (Div. 2)D.
Ilya
and Escalator——概率dp
http://codeforces.com/contest/518/problem/Ddp[i][j]表示第i秒有j个人进入电梯的概率#include constintmaxn=2100; usingnamespacestd; doubledp[maxn][maxn]; intn,t; doublep; intmain() { #ifndefONLINE_JUDGE freopen("in.txt
u014141559
·
2015-03-14 21:00
Ilya
and Escalator
dp[i][j]表示经过j秒走了i个人,然后转移也很简单。。。。#include #include #include #include #include #include #include #include #include #include #include #include #include #definemaxn2005 #definemaxm100005 #defineeps1e-7 #d
blankcqk
·
2015-03-07 16:00
dp
codeforces
Ilya
and Escalator (概率DP)
dp[i][j]表示第i秒电梯进去的人数为j时的概率。由于概率比较好求,而且这里的样本是有限个。所以可以先求出概率,然后用公式转化成期望。#include #include #include #include #include #include #include #include #include usingnamespacestd; #defineLL__int64 #definepiacos(
u013013910
·
2015-02-25 22:00
编程
算法
ACM
概率DP
Ilya
and Escalator (DP)
D.IlyaandEscalatortimelimitpertest2secondsmemorylimitpertest256megabytesinputstandardinputoutputstandardoutputIlyagottiredofsportsprogramming,leftuniversityandgotajobinthesubway.Hewasgiventhetasktodet
u014355480
·
2015-02-25 13:00
ACM
codeforces
codeforces 313D
Ilya
and Roads (区间dp)
题意:n个洞,m个公司,至少补k个洞,每个公司只能补Li到Ri之间的懂,并且费用是ci。问补至少k个洞的最小费用。题解:首先我么要这题要知道任意段区间之间的费用是多少,因为公司的区间是可以重合的,但是重合部分要多计算,那么我们可以用(n^3)的计算出任意段区间的费用。接着我们就可以dp了,dp[i][j]表示前i个点补了k个洞的最小费用。状态方程和往常非常不同本来是要O(n^4)现在优化了一个地方
My_ACM_Dream
·
2015-02-09 17:00
practice experience of deep learning from
Ilya
Sutskever
PracticalAdvice.Ok.Soyou’resold.You’reconvincedthatLDNNsarethepresentandthefutureandyouwanttotrainit.Butrumorhasitthatit’ssohard,sodifficult…orisit?Therealityisthatitusedtobehard,butnowthecommunityhas
guoyilin
·
2015-01-26 13:00
deep
learning
谷歌科学家、Hinton亲传弟子
Ilya
Sutskever的深度学习综述及实际建议
注:本文是IlyaSutskever受邀给YisongYue博客写的文章。原文在YisongYue博客上:http://yyue.blogspot.com/2015/01/a-brief-overview-of-deep-learning.html 由于blogspot被墙,为方便读者,特转来墙内。ABriefOverviewofDeepLearning(Thisisaguestpostby Il
necrazy
·
2015-01-15 15:00
deep
learning
learning
machine
谷歌科学家、Hinton亲传弟子
Ilya
Sutskever的深度学习综述及实际建议
注:本文是IlyaSutskever受邀给YisongYue博客写的文章。原文在YisongYue博客上:http://yyue.blogspot.com/2015/01/a-brief-overview-of-deep-learning.html 由于blogspot被墙,为方便读者,特转来墙内。ABriefOverviewofDeepLearning(Thisisaguestpostby Il
kklots
·
2015-01-15 10:00
deep
learning
Google性能专家
Ilya
Grigorik:速度是我们的核心信条
非商业转载请注明作译者、出处,并保留本文的原始链接:http://www.ituring.com.cn/article/118591IlyaGrigorik是谷歌“Web加速”(MakeTheWebFast)团队的性能工程师、开发大使。他每天的主要工作就是琢磨怎么让Web应用速度更快,总结并推广能够提升应用性能的最佳实践。在加入Google之前,他创立了一家研究实时用户行为分析的公司PostRan
图灵访谈
·
2014-12-09 00:00
性能
google
图灵访谈
Google性能工程师
Ilya
Grigorik谈HTTP/2
HTTP/2,也就是超文本传输协议第2版,是下一代HTTP协议。该版本是自1999年HTML1.1发布后的首个更新,目前它正由互联网工程任务组(IETF)的HypertextTransferProtocolBis(httpbis)工作小组进行开发。对于HTTP/2,来自于Google的性能工程师IlyaGrigorik最近发布了一个PPT对此进行了详细的说明。在该呈现中,IlyaGrigorik首
孙镜涛
·
2014-11-12 00:00
Google性能工程师
Ilya
Grigorik谈HTTP/2
HTTP/2,也就是超文本传输协议第2版,是下一代HTTP协议。该版本是自1999年HTML1.1发布后的首个更新,目前它正由互联网工程任务组(IETF)的HypertextTransferProtocolBis(httpbis)工作小组进行开发。对于HTTP/2,来自于Google的性能工程师IlyaGrigorik最近发布了一个PPT对此进行了详细的说明。在该呈现中,IlyaGrigorik首
孙镜涛
·
2014-11-12 00:00
成佩涛—为什么CDN对移动客户端加速“没有”效果
Ilya
首先吐槽了目前的CDN在移动客户端加速方面的不给力。从他们的移动客户端性能监控数据来看,传统CDN的优化效果
CPTcpt123
·
2014-10-11 22:00
性能
移动
缓存
CDN
缓存服务器
为什么CDN对移动客户端加速“没有”效果
Ilya
首先吐槽了目前的CDN在移动客户端加速方面的不给力。从他们的移动客户端性能监控数据来看,传统CDN的优化效果
刘宇
·
2014-07-30 00:00
浅谈TCP优化
Ilya
Grigorik 在「High Performance Browser Networking」中做了很多细致的描述,让人读起来醍醐灌顶,我大概总结了一下,以期更加通俗易懂。
cm84n7281
·
2013-11-27 10:54
TCP优化
Ilya
and Matrix
timelimitpertest2secondsmemorylimitpertest256megabytesinputstandardinputoutputstandardoutputIlyaisaverygood-naturedlion.Helikesmaths.Ofallmathematicalobjects,hisfavouriteoneismatrices.Nowhe'sfacedacom
jj12345jj198999
·
2013-08-30 09:00
Codeforces Round #186 (Div. 2) / 313B
Ilya
and Queries (字符串处理)
B.IlyaandQueriestimelimitpertest2secondsmemorylimitpertest256megabytesinputstandardinputoutputstandardoutputIlyatheLionwantstohelpallhisfriendswithpassingexams.Theyneedtosolvethefollowingproblemtopass
synapse7
·
2013-08-29 10:00
C++
ACM
codeforces
Ilya
and Matrix
#include#include#include#include#include#include#include#include#include#include#include#include#includeusingnamespacestd;#definelllonglong#definelsrt>1#defineeps(1e-9)#defineclr_all(x,c)memset(x,c,si
ymrfzr
·
2013-07-30 19:00
codeforces
Ilya
and Roads(区间类动态规划)
题目大意 一条直线上有n(1≤n≤300)个点可以用来修洞,有m(1≤m≤105)个建筑公司,每个建筑公司i(1≤i≤m)需要ci(1≤ci≤109)的价钱修理包含于区间[Li,Ri](1≤Li≤Ri≤n)中的一段连续的洞。问至少修建k(1≤k≤n)个洞需要花费的最小价钱 做法分析 初一看像是求最大流,但是仔细一想,如果是网络流的话,建好的网络太大,绝对TLE,而且貌似这还不好建图果断放弃,想想
jianzhang.zj
·
2013-06-05 13:00
Ilya
and Roads(动态规划)
多年没有写动态规划就是个悲剧啊!!省赛结束之后学习数据结构+动态规划..努力努力#include #include #include #include #include #include #include #include #include #defineLLlonglong #defineDBdouble usingnamespacestd; constintN=509; constintM=1
binwin20
·
2013-06-02 19:00
动态规划
Codeforce 313C
Ilya
and Matrix
C.IlyaandMatrixtimelimitpertest2secondsmemorylimitpertest256megabytesinputstandardinputoutputstandardoutputIlyaisaverygood-naturedlion.Helikesmaths.Ofallmathematicalobjects,hisfavouriteoneismatrices.N
LYHVOYAGE
·
2013-06-01 17:00
数学
codeforces 313B
Ilya
and Queries
线段树简单查询即可,注意所开数组大小#include#include#include#include#include#include#include#include#include#include#include#include#includeusingnamespacestd;#definelllonglong#definelsrt>1#defineeps(1e-9)#defineclr_all
ymrfzr
·
2013-06-01 14:00
线段树
codeforces
codeforces 313A -
Ilya
and Bank Account
水题水过。。。。#include#include#include#include#include#include#include#include#include#include#include#include#includeusingnamespacestd;#definelllonglong#definelsrt>1#defineeps(1e-9)#defineclr_all(x,c)memse
ymrfzr
·
2013-05-31 07:00
codeforces
Chrome运用“预期方法学”提升用户体验
Ilya
提到说“现在网页的平均页面大小已经增长到1059KB,平均每页的请求数已经超过了80个,包含js,css,图片,flash等各种资源的请求。
晁晓娟
·
2012-07-06 00:00
Chrome运用“预期方法学”提升用户体验
Ilya
提到说“现在网页的平均页面大小已经增长到1059KB,平均每页的请求数已经超过了80个,包含js,css,图片,flash等各种资源的请求
昵称4
·
2012-07-06 00:00
Ilya
Rashap摄影作品
IlyaRashap,俄罗斯摄影师,出生于1979年,官方网站:http://rashap.com(部分作品NSFW),个人博客:http://rashap.livejournal.com/点击阅读全文可见更多作品。[via]
lushsight s
·
2011-08-09 11:00
图片
人物
性感
Ilya
Rashap
俄罗斯
不实的RSS时间好比是假的牛奶生产日期
我已经至少为4个基于WordPress发布的BLOG纠正RSS输出时间问题了:未完成
ilya
桑林。
车东-csdn
·
2005-06-07 07:00
上一页
1
2
3
下一页
按字母分类:
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
其他