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
3250
poj--
3250
--Bad Hair Day(模拟)
BadHairDayTimeLimit:2000MS MemoryLimit:65536KB 64bitIOFormat:%I64d&%I64uSubmitStatusDescriptionSomeofFarmerJohn'sNcows(1≤N≤80,000)arehavingabadhairday!Sinceeachcowisself-consciousabouthermessyhairstyl
qq_29963431
·
2015-11-17 16:00
poj
3250
Bad Hair Day(单调栈)
id=
3250
BadHairDayDescriptionSomeofFarmerJohn's N cows(1≤ N ≤80,000)arehavingabadhairday!
w144215160044
·
2015-11-16 19:00
POJ
3250
Bad Hair Day(单调栈stack)
BadHairDayTimeLimit: 2000MSMemoryLimit: 65536KTotalSubmissions: 15958Accepted: 5392DescriptionSomeofFarmerJohn's N cows(1≤ N ≤80,000)arehavingabadhairday!Sinceeachcowisself-consciousabouthermessyhairs
zwj1452267376
·
2015-11-16 16:00
POJ
3250
Bad Hair Day (栈)
BadHairDayTimeLimit:2000MS MemoryLimit:65536KTotalSubmissions:15939 Accepted:5381DescriptionSomeofFarmerJohn'sNcows(1≤N≤80,000)arehavingabadhairday!Sinceeachcowisself-consciousabouthermessyhairstyle,F
helloiamclh
·
2015-11-14 22:00
POJ
3250
Bad Hair Day(单调递增栈)
题目地址:点击打开链接题意:牛排队排好,每个牛只能看到比它高度严格低的牛,问所有的牛能看到的个数思路:换个思路,求每个牛能被看到多少次,加起来,和题目要求的结果是一样的,单调递增栈:http://blog.csdn.net/alongela/article/details/8227707AC代码:#include #include #include #include #include #inclu
qq_25605637
·
2015-11-14 20:00
poj
3250
栈应用
#include<iostream> #include<cstring> #include<algorithm> #include<cstdio> #define Maxn 100010 using namespace std; __int64 ans=0; int Stack[Maxn],top; int main() {
·
2015-11-13 02:38
poj
POJ
3250
(Bad Hair Day)
题目链接 单调队列练习题。 题目大意:n个牛排成一列向右看,牛i能看到牛j的头顶,当且仅当牛j在牛i的右边并且牛i与牛j之间的所有牛均比牛i矮。设牛i能看到的牛数为Ci,求∑Ci View Code 1 #include <stdio.h> 2 #define N 8000001 3 #define INF 0x7fffffff 4 int a[N];
·
2015-11-12 22:03
AIR
POJ
3250
Bad Hair Day【单调栈】
Description Some of Farmer John's N cows (1 ≤ N ≤ 80,000) are having a bad hair day! Since each cow is self-conscious about her messy hairstyle, FJ wants to count the number of o
·
2015-11-12 15:07
AIR
OGRE Light Attenuation Shortcut
page=Light+Attenuation+Shortcut 常用系数: Range Constant Linear Quadratic
3250
, 1.0, 0.0014,
·
2015-11-11 17:49
cut
POJ
3250
Bad Hair Day --单调栈(单调队列?)
维护一个单调栈,保持从大到小的顺序,每次加入一个元素都将其推到尽可能栈底,知道碰到一个比他大的,然后res+=tail,说明这个cow的头可以被前面tail个cow看到。如果中间出现一个超级高的,自然会推到栈底,即此元素以前的cow看不到此元素后面cow的头,即res不会加此元素前面的个数,说明是正确的。 注意要用long long 或者 __int64类型。 刚开始看着80000不大的样子,其
·
2015-11-11 16:02
AIR
hdu 2818 Building Block
(Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s):
3250
&
·
2015-11-11 14:25
Build
连续区域最大矩形面积 POJ 1964 2082 2559 2796
3250
3494
/* 初始的想法如下: 维护一个栈,使得: h[stack[0]] < h[stack[1]] < h[stack[2]] < ... < h[stack[top]] 先在h[]的两端加上哨兵,h[0] = -1 , h[n+1] = -1。 初始时,stack[0] = 0 , top = 0 。 当计算第i个柱子的L值时, 先从栈顶依次弹
·
2015-11-11 10:55
poj
POJ
3250
Bad Hair Day(DP)
题目链接 竟然错了10+,静不下心来啊。 开个标记数组记录,记录比第一个比它大的位置。 1 #include <stdio.h> 2 #include <string.h> 3 #define N 80001 4 unsigned __int64 p[N],left[N],sum; 5 int main() 6 { 7 int n,
·
2015-11-11 10:37
AIR
POJ
3250
Bad Hair Day
id=
3250
题意 : n个牛排成一列向右看,牛 i 能看到牛 j 的头顶,当且仅当牛 j 在牛 i 的右边并且牛 i 与牛 j 之间的所有牛均比牛 i 矮。
·
2015-11-11 10:13
AIR
【POJ】
3250
Bad Hair Day
1 #include<cstdio> 2 typedef __int64 LL; 3 #define MAXN 80010 4 int st[MAXN]; 5 int main() 6 { 7 LL ans; 8 int n,i,x,top; 9 while(~scanf("%d",&n)) 10
·
2015-11-11 07:37
AIR
poj
3250
Bad Hair Day
1 //超时代码 2 #include<stdio.h> 3 unsigned ans; 4 int main() 5 { 6 int i,j,n,Q[80000]; 7 scanf("%d",&n); 8 for(i=0;i<n;++i) 9 scanf("%d&qu
·
2015-11-08 14:32
AIR
【大数取模】HDOJ-1134、CODEUP-1086
样例输入 2 3 12 7 152455856554521
3250
·
2015-11-07 14:59
code
POJ
3250
Bad Hair Day——单调栈——Pku
3250
维护一个单调栈,栈中元素单调递减。 同时记录一个num数组,表示的是栈中这个点能够看到的牛的数量+1(它本身) 插入元素a[i]时,一直dec(stack_size)直到stack[stack_size]>=a[i],同时temp记录扫过的num[i]之和, 在ans的值上加上temp值 如果stack[stack_size]=a[i],那么就在num[stack_size]上加上t
·
2015-11-02 17:27
AIR
POJ 1027 “暴力”模拟
View Code 1 //Result:wizmann 1027 Accepted 260K 375MS C++
3250
B 2
·
2015-11-01 14:43
poj
POJ
3250
Bad Hair Day
Bad Hair Day Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 10202 Accepted: 3412 Description Some of Farmer John's N cows (1 ≤ N ≤ 80,000) are having a bad
·
2015-10-31 15:48
AIR
symbian 手机型号
手机型号能从如下文件中读取出来: z: esourceversionsmodel.txt 型号名称是如下格式:"Nokia
3250
" 相关代码: _LIT(KFilename
·
2015-10-31 09:00
Symbian
poj
3250
单调栈
有n只羊,(姑且算是羊吧,也有可能是牛啊猫啊什么之类的),每只羊都有一个身高,前面的羊要看到后面的羊的条件是,后面的羊高度要小于前面的羊,就问各位羊加起来看到的牛多少只....... #include<iostream> #include<stack> #include<stdio.h> using namespace std; in
·
2015-10-31 09:47
poj
堆栈
0; 第二步:加入一个元素8|_||_||_||_||8| top=1;|_| 第三步:删除一个元素|_||_||_||_||8| |_| top=0; 典型的堆栈的题目是:poj
3250
·
2015-10-31 08:15
堆栈
poj
3250
利用栈进行动态规划,要注意的地方是总和得用longlong因为80000^2是超出int范围的。 View Code #include < cstdio > #include < iostream > #include < cstdlib >
·
2015-10-30 12:57
poj
POJ
3250
Bad Hair Day 简单DP 好题
Description Some of Farmer John's N cows (1 ≤ N ≤ 80,000) are having a bad hair day! Since each cow is self-conscious about her messy hairstyle, FJ wants to count the number of o
·
2015-10-28 08:06
AIR
poj
3250
单调栈 *
题意:一群高度不完全相同的牛从左到右站成一排,每头牛只能看见它右边的比它矮的牛的发型,若遇到一头高度大于或等于它的牛,则无法继续看到这头牛后面的其他牛。 给出这些牛的高度,要求每头牛可以看到的牛的数量的和。 1 #include<cstdio> 2 #include<iostream> 3 #include<algorithm> 4 #inc
·
2015-10-27 15:45
poj
poj
3250
Bad Hair Day(单调队列)
id=
3250
思路分析:题目要求求每头牛看见的牛的数量之和,即求每头牛被看见的次数和;现在要求如何求出每头牛被看见的次数?
·
2015-10-21 13:04
AIR
poj-
3250
Bad Hair Day **
1 /* 2 * DA-term-Bad Hair Day.cpp 3 * 4 * 这是一种解法,还可以用 “单调队列” 来做(见后。。) 5 * 6 * Created on: 2011-12-2 7 */ 8 9 #include <iostream>10 using namespace std;11 12 const int maxn = 80000 +
·
2015-10-21 12:07
AIR
单调队列 - 兼 ACM PKU POJ
3250
及 2823 解题报告
[转] : http://blog.csdn.net/linulysses/article/details/5771084 单调队列 假设序列 {xi }n = x1 ,x2 ,...,xn 中定义有一序关系 < (这里,也可以是 <=, >, >= 等,具体的是哪一种序关系视应用决定)。 那么,{xi }n 的一个单调队列为 {xi }n 的一个子序列 x
·
2015-10-21 12:55
ACM
操盘|技术共震引发百点大跌,成功减仓者关注何时再抄底
我们就建议大家要提前分批撤离,就是担心一旦出现这样的大跳水,你是来不及跑的,周三的大跌主要是技术面15-60分钟小周期全部背离引发的共震性快速调整,而三大指数的日线从周三开始相继进入到调整周期也是重要的原因,大盘会在3200-
3250
钱眼
·
2015-10-21 00:00
poj
3250
Bad Hair Day
题意:一排数字代表一排牛的高度,每头牛只能向右看到比自己矮的牛的头,也看不到比自己高或相等的牛右边的牛头。问一共有多少牛可以被看到。思路;从右边牛开始,构建一个单调递增栈,遇到比栈顶高的牛,不断出栈,找到它能向右边看到的位置,计数中间能看到牛的个数,再进栈,作为栈顶。#include #include #include #include usingnamespacestd; longlongh[8
yexiaohhjk
·
2015-09-19 11:00
iOS 关于数组越界的解决方法
所谓的数组越界,就是假如你的下标总数现在为32个,然后你在下一秒又执行了一个方法要从50个数据里惊醒赋值啊筛选之类的而你此时数量为
3250
的数据还没有请求到往往会出现数组越界的崩溃信息大概是这样的 -[
应有梦
·
2015-09-04 11:00
POJ-
3250
-Bad Hair Day- 又是一颗单调栈
题意:n个牛排成一列向右看,牛i能看到牛j的头顶,当且仅当牛j在牛i的右边并且牛i与牛j之间的所有牛均比牛i矮。 设牛i能看到的牛数为Ci,求∑Ci还是用单调栈秒掉就好了#include #include #include #include #include #include #include #include #include #include usingnamespacestd; __int6
viphong
·
2015-08-26 11:00
POJ
3250
--Bad Hair Day(栈)
题目大意:有n头牛,身高不一样,排成一排,每头牛可以看见后面一头牛的个数之和,如果相等就看不见,因为是看头发啦~,头发在眼睛上面。嗯~出题人应该是这样想的,23333 分析:一眼就能看出来是用栈来做。我是从后往前做的,栈顶的元素小于当前身高,栈顶元素出栈,就说明当前的牛看得见栈顶的牛,接着比较,直到栈顶的牛的身高比当前身高要高,那么就找到了当前牛能看见的最远距离。不要问我为什么全部用%lld,因为
hhhhhhj123
·
2015-08-19 22:00
移植u-boot支持ubi遇到的问题总结
blog.csdn.net/yuanlulu版权没有,但是转载请保留此段声明============================================自己最近在移植u-boot.201006到smartarm
3250
l461269717
·
2015-08-05 16:00
POJ
3250
Bad Hair Day(单调栈)
单调栈其实很简单,,不懂的阔以先移步了解一下#include #include usingnamespacestd; //本题要求每头牛看到多少头牛的和,, //可以转化为每头牛被多少头牛看到的和。 //然后就可以用单调递减栈解决问题了 stacks; intmain(){ longlongn,ans=0,num; cin>>n; for(inti=0;i>num; while(s.size
acraz
·
2015-08-03 17:00
flash_erase擦除NAND flash坏块失败
首先查看帮助信息:[root@M
3250
~]#flash_erase--hUsage:flash_erase[options]MTD_DEVICEEraseblocksofthespecifiedM
xdshengk
·
2015-07-23 20:00
POJ
3250
Bad Hair Day(单调栈)
用一个栈来维护当前的递减序列,从左到右遍历,对于每个数cur,从栈顶开始把所有小于等于cur的数字都出栈,然后剩下的就都是可以看到cur的牛,并且保证了栈中的单调性。每次遍历对弹栈后的长度求和即可。代码:#include #include #include #include #include usingnamespacestd; #defineLLlonglong intN; intq[80005
Baoli1008
·
2015-07-22 12:00
单调栈
poj
3250
Bad Hair Day
DescriptionSomeofFarmerJohn's N cows(1≤ N ≤80,000)arehavingabadhairday!Sinceeachcowisself-consciousabouthermessyhairstyle,FJwantstocountthenumberofothercowsthatcanseethetopofothercows'heads.Eachcow i
Kirito_Acmer
·
2015-07-13 13:00
单调栈
POJ
3250
Bad Hair Day(单调栈)
Description一群高度不完全相同的牛从左到右站成一排,每头牛只能看见它右边的比它矮的牛的发型,若遇到一头高度大于或等于它的牛,则无法继续看到这头牛后面的其他牛。给出这些牛的高度,要求每头牛可以看到的牛的数量的和。Input第一行为牛数n,之后n行每行一个整数表示牛的高度Output输出每头牛可以看到的牛的数量SampleInput610374122SampleOutput5Solution
V5ZSQ
·
2015-07-13 08:00
POJ
3250
Bad Hair Day 模拟单调栈
BadHairDayTimeLimit: 2000MS MemoryLimit: 65536KTotalSubmissions: 14989 Accepted: 4977DescriptionSomeofFarmerJohn's N cows(1≤ N ≤80,000)arehavingabadhairday!Sinceeachcowisself-consciousabouthermessyhai
wust_ZJX
·
2015-07-06 19:00
尼康D5500 最超值半幅单反 简单体验
而水货中,D5500只要
3250
元,所以最终我的选择还是水货D5500,这也是我10多款相机升级之旅上第一款内置W
佚名
·
2015-06-30 19:15
poj
3250
Bad Hair Day (单调栈)
BadHairDayTimeLimit: 2000MS MemoryLimit: 65536KTotalSubmissions: 14883 Accepted: 4940DescriptionSomeofFarmerJohn's N cows(1≤ N ≤80,000)arehavingabadhairday!Sinceeachcowisself-consciousabouthermessyhai
u014253173
·
2015-06-03 22:00
算法
栈
ACM
单调栈
POJ
3250
---Bad Hair Day(单调栈)
DescriptionSomeofFarmerJohn’sNcows(1≤N≤80,000)arehavingabadhairday!Sinceeachcowisself-consciousabouthermessyhairstyle,FJwantstocountthenumberofothercowsthatcanseethetopofothercows’heads.Eachcowihasasp
Guard_Mine
·
2015-05-07 19:00
单调栈
poj
3250
Bad Hair Day
以前总是靠人肉暴力模拟,这个题目复杂度太高搞不过去了,栈模拟,又学到了新的东西importjava.io.*;importjava.math.BigInteger;importjava.util.*;classitem1{intvalue,idx;publicitem1(intx,inty){value=x;idx=y;}}classproblem{intn,t=0;longsum;item1st
dyhu083
·
2015-03-30 09:47
POJ
poj
3250
单调栈(看到前面的牛的数量)
题意:一群高度不完全相同的牛从左到右站成一排,每头牛只能看见它右边的比它矮的牛的发型,若遇到一头高度大于或等于它的牛,则无法继续看到这头牛后面的其他牛。给出这些牛的高度,要求每头牛可以看到的牛的数量的和。思路:单调栈(类似2559和3934),栈中按照递减顺序保存牛的高度,对于当前牛判断它入栈的位置。其实stack不必设置h域,stack只存下标即可,找栈中高度用s[下标]就行了。看到另一种思路:
dumeichen
·
2015-03-25 19:00
我爱我家“疯狂抢购家装节”
原价
3250
元的史密斯CEWH-60-B3,活动期间价格仅为1988元;原价3980元的史密
伱算个叼
·
2014-12-25 13:00
博科光纤交换机silkworm
3250
配置文件备份与恢复
实验环境:博科光纤交换机:Silkworm
3250
(默认设置)FTP服务器:win7_64位客户端:Hyperterminal注意:请先自行百度资料设置win7_64为FTP服务器,站点设置目录为:c:
zgysolution
·
2014-11-19 10:35
备份
恢复
光纤
交换机
博科
为lpc
3250
uboot-1.3.3 添加i2c命令(imd,imw,iprobe等)
#include #ifdefCONFIG_HARD_I2C #ifdefCONFIG_LPC
3250
_I2C #include #include #include #include /*I2Cregisterdefinitions
psvoldemort
·
2014-10-20 13:00
poj 递增栈 POJ2796 区间最大参考值
3250
牛的视野
#include #include usingnamespacestd; constintN=100005; structElem { longlongheight; longlongwidth; intbegin; intcount; }; Elemstack[N]; inttop; intmain() { intnum,n; longlongans,tmp,tot; intansbeg
u010700335
·
2014-09-28 20:00
递增栈
上一页
2
3
4
5
6
7
8
9
下一页
按字母分类:
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
其他