题目:https://codeforces.com/gym/102222/problem/A

Maximum Element In A Stack

time limit per test

10.0 s

memory limit per test

256 MB

input

standard input

output

standard output

As an ACM-ICPC newbie, Aishah is learning data structures in computer science. She has already known that a stack, as a data structure, can serve as a collection of elements with two operations:

  • push, which inserts an element to the collection, and
  • pop, which deletes the most recently inserted element that has not yet deleted.

Now, Aishah hopes a more intelligent stack which can display the maximum element in the stack dynamically. Please write a program to help her accomplish this goal and go through a test with several operations.

Aishah assumes that the stack is empty at first. Your program will output the maximum element in the stack after each operation. If at some point the stack is empty, the output should be zero.

Input

The input contains several test cases, and the first line is a positive integer T

indicating the number of test cases which is up to 50

.

To avoid unconcerned time consuming in reading data, each test case is described by seven integers n (1≤n≤5×106)

, p, q, m (1≤p,q,m≤109), SA, SB and SC (104≤SA,SB,SC≤106). The integer n

is the number of operations, and your program is asked to generate all operations by using the following code in C++.

int n, p, q, m; unsigned int SA, SB, SC; unsigned int rng61(){ SA ^= SA « 16; SA ^= SA » 5; SA ^= SA « 1; unsigned int t = SA; SA = SB; SB = SC; SC ^= t ^ SA; return SC; } void gen(){ scanf(" for(int i = 1; i <= n; i++){ if(rng61() PUSH(rng61() else POP(); } }

The procedure PUSH(v) used in the code inserts a new element with value v

into the stack and the procedure POP() pops the topmost element in the stack or does nothing if the stack is empty.

Output

For each test case, output a line containing Case #x: y, where x is the test case number starting from 1

, and y is equal to ⊕i=1n(i⋅ai) where ⊕

means bitwise xor.

Example
Input

Copy
2
4 1 1 4 23333 66666 233333
4 2 1 4 23333 66666 233333
Output

Copy
Case #1: 19
Case #2: 1
Note

The first test case in the sample input has 4

operations:

  • POP();
  • POP();
  • PUSH(1);
  • PUSH(4).

The second test case also has 4

operations:

  • PUSH(2);
  • POP();
  • PUSH(1);
  • POP().

题意:

给你一个栈和一个叫rng61的算法,当符合条件就加入一些内容到栈中,并在每次操作后记录当前栈中最大值ai,最后输出答案1到n的异或和i*ai

思路:

rng61是优化不了了,但我们可以在找栈中最大值时优化,如果是要询问栈中最大值,那么如果当前加入的元素小于以前记录的最大值,那么这个信息是没有记录的必要的,
所以可以用一个单调不减的单调栈存每个状态的最大值,另一个普通栈存操作的原始序列,如果要往普通栈中推入元素,则如果这个元素大于等于单调栈的栈顶则加入单调栈,
如果在普通栈进行pop操作,则看当前pop的元素是否>=单调栈的栈顶,如果是就把单调栈的栈顶pop(因为我们在单调栈中存的是单调不减的元素,所以如果碰到普通栈pop的元素大于等于单调栈栈顶元素,则这个元素必定是加入过单调栈的),
如果普通栈为空或单调栈为空,则清空单调栈并向单调栈中推入一个0元素
然后每次操作的普通栈中的最大值就是单调栈的栈顶

注意:

1.栈不为空时才能进行pop操作(如果是数组模拟则tp--后如果tp<0则需要让tp=0)

2.ans要用long long存,这次比赛是算法是写正确了,但实现时用了unsigned int,一直卡在最后的数据,以后像ans,求和,求积之类的果断用long long来存(防溢出用long long)

 #include<bits/stdc++.h>
typedef long long ll;
using namespace std;
int n,p,q,m;bool adf;
long long ans;
unsigned int SA,SB,SC;
long long last,sttp,dsttp;
stack<long long> st,dst;
unsigned int rng61(){
SA^=SA<<;
SA^=SA>>;
SA^=SA<<;
unsigned int t=SA;SA=SB;
SB=SC;
SC^=t^SA;
return SC;
}
void gen(){
scanf("%d%d%d%d%u%u%u",&n,&p,&q,&m,&SA,&SB,&SC);
while(st.size())st.pop();while(dst.size())dst.pop();
ans=;
for(unsigned int i=;i<=n;i++){
adf=;
if(dst.empty())dst.push();
if(rng61()%(p+q)<p)st.push(rng61()%m+);
else if(st.size()) last=st.top(),st.pop(),adf=;
if(st.empty()){
ans^=i*;
while(dst.size())dst.pop();
dst.push();
}
else {
sttp=st.top(),dsttp=dst.top();
if(adf){
if(sttp>=dsttp)dst.push(sttp);
}
else {
if(last>=dsttp&&dst.size())dst.pop();
}
if(dst.empty())dst.push();
ans^=i*dst.top();
}
}
}
int main(){
int T,cas=;
scanf("%d",&T);
while(T--){
gen();
printf("Case #%d: %lld\n",cas++,ans);
}
}
/**
给你一个栈和一个叫rng61的算法,当符合条件就加入一些内容到栈中,并在每次操作后记录当前栈中最大值ai,最后输出答案1到n的异或和i*ai
rng61是优化不了了,但我们可以在找栈中最大值时优化,如果是要询问栈中最大值,那么如果当前加入的元素小于以前记录的最大值,那么这个信息是没有记录的必要的,
所以可以用一个单调不减的单调栈存每个状态的最大值,另一个普通栈存操作的原始序列,如果要往普通栈中推入元素,则如果这个元素大于等于单调栈的栈顶则加入单调栈,
如果在普通栈进行pop操作,则看当前pop的元素是否>=单调栈的栈顶,如果是就把单调栈的栈顶pop(因为我们在单调栈中存的是单调不减的元素,所以如果碰到普通栈pop的元素大于等于单调栈栈顶元素,则这个元素必定是加入过单调栈的),
如果普通栈为空或单调栈为空,则清空单调栈并向单调栈中推入一个0元素
然后每次操作的普通栈中的最大值就是单调栈的栈顶
注意栈不为空时才能进行pop操作(如果是数组模拟则tp--后如果tp<0则需要让tp=0),ans要用long long存,这次比赛是算法是写正确了,但实现时用了unsigned int,一直卡在最后的数据,以后像ans,求和,求积之类的果断用long long来存
**/

题外话:2019银川网络赛竟然用原题,变成了大学生程序重构大赛,比搜索比手速,前有tourist5小时AKWF,今有北师大6分钟AK网络赛(写完C后被队友告知北师大已经只差1题就AK了)

[单调栈] 2018-2019 ACM-ICPC, China Multi-Provincial Collegiate Programming Contest-Maximum Element In A Stack的更多相关文章

  1. The 2018 ACM-ICPC Chinese Collegiate Programming Contest Maximum Element In A Stack

    //利用二维数组模拟 #include <iostream> #include <cstdio> #include <cstring> #include <s ...

  2. 2018浙江省赛(ACM) The 15th Zhejiang Provincial Collegiate Programming Contest Sponsored by TuSimple

    我是铁牌选手 这次比赛非常得爆炸,可以说体验极差,是这辈子自己最脑残的事情之一. 天时,地利,人和一样没有,而且自己早早地就想好了甩锅的套路. 按理说不开K就不会这么惨了啊,而且自己也是毒,不知道段错 ...

  3. HZNU Training 4 for Zhejiang Provincial Collegiate Programming Contest 2019

    今日这场比赛我们准备的题比较全面,二分+数论+最短路+计算几何+dp+思维+签到题等.有较难的防AK题,也有简单的签到题.为大家准备了一份题解和AC代码. A - Meeting with Alien ...

  4. HZNU Training 2 for Zhejiang Provincial Collegiate Programming Contest 2019

    赛后总结: T:今天下午参加了答辩比赛,没有给予队友很大的帮助.远程做题的时候发现队友在H上遇到了挫折,然后我就和她们说我看H吧,她们就开始做了另外两道题.今天一人一道题.最后我们在研究一道dp的时候 ...

  5. The 10th Shandong Provincial Collegiate Programming Contest 2019山东省赛游记+解题报告

    比赛结束了几天...这篇博客其实比完就想写了...但是想等补完可做题顺便po上题解... 5.10晚的动车到了济南,没带外套有点凉.酒店还不错. 5.11早上去报道,济南大学好大啊...感觉走了一个世 ...

  6. ACM ICPC China final G Pandaria

    目录 ACM ICPC China final G Pandaria ACM ICPC China final G Pandaria 题意:给一张\(n\)个点\(m\)条边的无向图,\(c[i]\) ...

  7. ACM ICPC 2010–2011, Northeastern European Regional Contest St Petersburg – Barnaul – Tashkent – Tbilisi, November 24, 2010

    ACM ICPC 2010–2011, Northeastern European Regional Contest St Petersburg – Barnaul – Tashkent – Tbil ...

  8. ACM International Collegiate Programming Contest, Tishreen Collegiate Programming Contest (2018) Syria, Lattakia, Tishreen University, April, 30, 2018

    ACM International Collegiate Programming Contest, Tishreen Collegiate Programming Contest (2018) Syr ...

  9. 2018 China Collegiate Programming Contest Final (CCPC-Final 2018)-K - Mr. Panda and Kakin-中国剩余定理+同余定理

    2018 China Collegiate Programming Contest Final (CCPC-Final 2018)-K - Mr. Panda and Kakin-中国剩余定理+同余定 ...

  10. 2020 ICPC Universidad Nacional de Colombia Programming Contest

    2020 ICPC Universidad Nacional de Colombia Programming Contest A. Approach 三分 显然答案可以三分,注意\(eps\)还有两条 ...

随机推荐

  1. 那些让程序员目瞪口呆的Bug

    程序员一生与bug奋战,可谓是杀敌无数,见怪不怪了!在某知识社交平台中,一个"有哪些让程序员目瞪口呆的bug"的话题引来了6700多万的阅读,可见程序员们对一个话题的敏感度有多高. ...

  2. 人心和隐私怎么防?“防出轨”APP让道德滑落

    ​ 王尔德曾说过,"一个人应该永远保持一点神秘感".让·保·里克特也表示,:"一个人泄露了秘密,哪怕一丝一毫,就再也得不到安宁了".可见,对于自然人来说,保有自 ...

  3. selenium+requests进行cookies保存读取操作

    看这篇文章之前大家可以先看下我的上一篇文章:cookies详解 本篇我们就针对上一篇来说一下cookies的基本应用 使用selenium模拟登陆百度 from selenium import web ...

  4. VMware虚拟机各版本密钥

    VMware Workstation Pro 激活许可证 UY758-0RXEQ-M81WP-8ZM7Z-Y3HDA VF750-4MX5Q-488DQ-9WZE9-ZY2D6 UU54R-FVD91 ...

  5. CSS(0)CSS的引入方式

    CSS (cascading  style  sheet)  层叠样式表 css引入的三种方式: 1.行间样式 <!--在body内写入--> <div></div> ...

  6. python中if __name__ == '__main__'是什么?

    __name__和__main__认识 作用:一般用于测试程序的功能,if __name__ == '__main__':下面的代码会被执行,但当前.py文件被当做模块导入的时候,main下面的代码就 ...

  7. vue+express+mysql项目总结(node项目部署阿里云通用)

    原文发布于我的个人博客上:原文点这里   前面经历千辛万苦,终于把博客的所有东西都准备好了,现在就只等部署了.下面我介绍下我的部署过程: 一.购买服务器和域名   如果需要域名(不用域名通过ip也可以 ...

  8. Service Mesh - gRPC 本地联调远程服务

    Description Service Mesh 架构下,服务间调用会通过服务名(Service Name)互相调用,比如在 Kubernetes .Docker Swarm 集群中,服务 IP 均由 ...

  9. AOP和spring AOP学习记录

    AOP基本概念的理解 面向切面AOP主要是在编译期或运行时,对程序进行织入,实现代理, 对原代码毫无侵入性,不破坏主要业务逻辑,减少程序的耦合度. 主要应用范围: 日志记录,性能统计,安全控制,事务处 ...

  10. Fortify Audit Workbench 笔记 Header Manipulation

    Header Manipulation Abstract HTTP 响应头文件中包含未验证的数据会引发 cache-poisoning. cross-site scripting. cross-use ...