标签:des style blog http color io os ar for
题解:
cf原题?完全忘了。。。
比较巧妙。首先应该知道 ans<=n,然后考虑ans<n什么情况下会出现?
显然应该是 有两块相同高度的积木,并且这两块积木中间没有比它们低的积木!
那就是单调栈了。
发现OI真是有时候不是看你会不会什么算法,而是你能不能想到某个算法。
代码:
1 #include<cstdio> 2 3 #include<cstdlib> 4 5 #include<cmath> 6 7 #include<cstring> 8 9 #include<algorithm> 10 11 #include<iostream> 12 13 #include<vector> 14 15 #include<map> 16 17 #include<set> 18 19 #include<queue> 20 21 #include<string> 22 23 #define inf 1000000000 24 25 #define maxn 50000+100 26 27 #define maxm 500+100 28 29 #define eps 1e-10 30 31 #define ll long long 32 33 #define pa pair<int,int> 34 35 #define for0(i,n) for(int i=0;i<=(n);i++) 36 37 #define for1(i,n) for(int i=1;i<=(n);i++) 38 39 #define for2(i,x,y) for(int i=(x);i<=(y);i++) 40 41 #define for3(i,x,y) for(int i=(x);i>=(y);i--) 42 43 using namespace std; 44 45 inline int read() 46 47 { 48 49 int x=0,f=1;char ch=getchar(); 50 51 while(ch<‘0‘||ch>‘9‘){if(ch==‘-‘)f=-1;ch=getchar();} 52 53 while(ch>=‘0‘&&ch<=‘9‘){x=10*x+ch-‘0‘;ch=getchar();} 54 55 return x*f; 56 57 } 58 int a[maxn],sta[maxn],n,m; 59 60 int main() 61 62 { 63 64 freopen("input.txt","r",stdin); 65 66 freopen("output.txt","w",stdout); 67 68 n=read();m=read(); 69 for1(i,n)a[i]=read(),a[i]=read(); 70 int top=0,ans=n; 71 for1(i,n) 72 { 73 while(a[sta[top]]>a[i])top--; 74 if(a[sta[top]]==a[i])ans--;else sta[++top]=i; 75 } 76 printf("%d\n",ans); 77 78 return 0; 79 80 }
BZOJ1628: [Usaco2007 Demo]City skyline
标签:des style blog http color io os ar for
原文地址:http://www.cnblogs.com/zyfzyf/p/3973456.html