来自M78的光之文轩 2022-12-02 22:28 采纳率: 92%
浏览 21
已结题

有关栈模拟的问题不会

题目描述

题目标题:
校赛-A:Valid Pop Sequence

题目描述:
In computer science, a stack is a last in, first out (LIFO) abstract data type and linear data structure. A stack can have any abstract data type as an element, but is characterized by two fundamental operations, called push and pop. The push operation adds a new item to the top of the stack.

Assume k integers is pushing into a stack in increasing order 1, 2, …, k. Please write a program that decides whether it is a valid pop sequence. For example, pushing 1, 2, 3 into a stack, (1, 2, 3) and (3, 2, 1) is a valid pop sequence, but (3, 1, 2) isn’t.

输入描述:
The input consists of several test cases.

For each test case, one integer k (1 <= k <= 100000) is given in the first line.

Second line contains k integers, presenting a pop sequence.

输出描述描述:
If the pop sequence is valid, print a line contains My Dearest. Otherwise it contains The Everlasting Guilty Crown

样式输入:
3
1 2 3
3
3 1 2

样式输出:
My Dearest
The Everlasting Guilty Crown

  • 写回答

2条回答 默认 最新

  • 关注

    熟悉栈的特性就好做了,用数组模拟堆栈就可以了(因为是从1到k递增,不用数组也行)。正序输出是队列,逆序输出是栈,满足这两个条件就是符号条件的。
    代码如下:

    #include <iostream>
    using namespace std;
    
    int main()
    {
        int i,k;
        int t,flag = 1;
        cin >> k;
        
        for(i=0;i<k;i++)
        {
            cin >> t;
            if(t == i+1 || t == k-i)
                continue;
            else
                flag = 0;
        }
        if(flag == 1)
            cout << "My Dearest";
        else
            cout << "The Everlasting Guilty Crown";
        return 0;
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论 编辑记录
查看更多回答(1条)

报告相同问题?

问题事件

  • 系统已结题 12月10日
  • 已采纳回答 12月2日
  • 创建了问题 12月2日

悬赏问题

  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀