Rails(栈的顺序判断是正与否)

1004-Rails_STDU第二周训练 (nowcoder.com)

死胡同,啥意思:栈底呗。其实是给你个出栈顺序让你判断正不正确(入栈顺序都是从1到N)。

模拟栈的入和出不就好了吗!

ACCODE:

哈哈有了前面那个题铺垫,这个题自己想出来不是有手就行嘛,嘿嘿嘿~~

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define INF 0x3f3f3f3f
#define mem(a) memset(a, 0, sizeof(a))
int a[1000010];
int main()
{
    int n;
    while (cin >> n && n)
    {
        memset(a, 0, sizeof(a));
        while (cin >> a[1] && a[1])
        {
            stack<int> s;
            for (int i = 2; i <= n; i++)
                cin >> a[i];
            int index, cnt = 1;
            for (int i = 1; i <= n; i++)
            {
                if (i == 1)
                    index = a[1];
                s.push(i);
                while (!s.empty()&&s.top() == index)
                {
                    s.pop();
                    index = a[++cnt];
                }
            }
            for (int i = cnt; i <= n; i++)
            {
                if (s.top() != a[cnt])
                {
                    cout << "No" << endl;
                    break;
                }
                else
                {
                    cnt++;
                    s.pop();
                }
            }
            if (s.empty())
                cout << "Yes" << endl;
        }
        cout << endl;
    }
}

精髓在这呢!

                while (!s.empty()&&s.top() == index)
                {
                    s.pop();
                    index = a[++cnt];
                }

 你觉得难只不过大脑不想分析过于复杂的知识罢了,被大脑欺骗???

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值