51nod 1289 大鱼吃小鱼

Posted Draymonder

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了51nod 1289 大鱼吃小鱼相关的知识,希望对你有一定的参考价值。

#include<bits/stdc++.h>
using namespace std;
const int maxn = 100100;
int a[maxn],b[maxn];
stack<int>s;
int main()
{
    int n;
    cin >> n;
    for(int i=1;i<=n;i++)
        cin>>a[i]>>b[i];
    int ans =0;
    for(int i=1;i<=n;i++)
    {
        ans++;
        if(b[i] )
            s.push(a[i]);
        else {
            while(!s.empty() && a[i] > s.top() )
            {
                ans--;
                s.pop();
            }
            if(!s.empty() && a[i] < s.top())
            {
                ans--;
            }
        }
    }
    cout<< ans<<endl;
}

 



以上是关于51nod 1289 大鱼吃小鱼的主要内容,如果未能解决你的问题,请参考以下文章

51nod 1289 大鱼吃小鱼

51nod 1289 大鱼吃小鱼(栈模拟)

51Nod 1289 大鱼吃小鱼

51nod1289 stack

大鱼吃小鱼(简单模拟)

1289 大鱼吃小鱼(栈)