首页 > 其他分享 >一道题

一道题

时间:2024-04-15 22:22:45浏览次数:14  
标签:ch puts int long 一道 include define

https://ac.nowcoder.com/acm/contest/79505/L

题意简述:长度为 \(n\) 的序列,初始 \(a_i=i\),\(q\) 次操作每次将数值 \(<a_x\) 的所有数 +1,然后 \(a_x\leftarrow 1\),或者将数值不为最大值的所有数 +1,将最大值赋值成 1。可以证明每次操作后序列是一个排列,求 \(q\) 次操作后的序列。

分析

如果考虑维护数值为 \(x\) 的值的下标,那么操作 1 很难维护,考虑维护下标的相关信息。

对每个下标维护 \(lft,rht\) 表示值为 \(a_x-1\) 和 \(a_x+1\) 的下标是多少。额外维护 \(a_0=0,a_{n+1}=n+1\)。操作 1 可以把 \(x\) 从 \(lft_x\) 和 \(rht_x\) 之间删掉,然后把 \(x\) 插入到 \(0\) 和 \(rht_0\) 之间,可以发现所有在 \(a_x\) 左侧的数全部向右平移了一位,满足题意。操作 2 视为 \(x=lft_{n+1}\) 的操作 1。

时间复杂度 \(O(n)\)。

点击查看代码
#include<iostream>
#include<cstdio>
#include<cstring>
#include<string>
#include<algorithm>
#include<cmath>
#include<map>
#include<unordered_map>
#include<vector>
#include<queue>
#include<bitset>
#include<set>
#include<ctime>
#include<random>
#include<cassert>
#define x1 xx1
#define y1 yy1
#define IOS ios::sync_with_stdio(false)
#define ITIE cin.tie(0);
#define OTIE cout.tie(0);
#define PY puts("Yes")
#define PN puts("No")
#define PW puts("-1")
#define P__ puts("")
#define PU puts("--------------------")
#define popc __builtin_popcount
#define mp make_pair
#define fi first
#define se second
#define gc getchar
#define pc putchar
#define pb emplace_back
#define rep(a,b,c) for(int a=(b);a<=(c);++a)
#define per(a,b,c) for(int a=(b);a>=(c);--a)
#define reprange(a,b,c,d) for(int a=(b);a<=(c);a+=(d))
#define perrange(a,b,c,d) for(int a=(b);a>=(c);a-=(d))
#define graph(i,j,k,l) for(int i=k[j];i;i=l[i].nxt)
#define lowbit(x) (x&-x)
#define lson(x) (x<<1)
#define rson(x) (x<<1|1)
#define mem(x,y) memset(x,y,sizeof x)
//#define double long double
//#define int long long
//#define int __int128
using namespace std;
typedef long long i64;
using pii=pair<int,int>;
bool greating(int x,int y){return x>y;}
bool greatingll(long long x,long long y){return x>y;}
inline int rd(){
	int x=0,f=1;char ch=getchar();
	while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();}
	while(ch>='0'&&ch<='9'){x=x*10+ch-48;ch=getchar();}return x*f;
}
inline void write(int x,char ch='\0'){
	if(x<0){x=-x;putchar('-');}
	int y=0;char z[40];
	while(x||!y){z[y++]=x%10+48;x/=10;}
	while(y--)putchar(z[y]);if(ch!='\0')putchar(ch);
}
bool Mbg;
const int maxn=3e5+5,maxm=4e5+5,inf=0x3f3f3f3f;
const long long llinf=0x3f3f3f3f3f3f3f3f;
int n,Q,a[maxn];
int lft[maxn],rht[maxn];
//对于每个下标x维护a[x]-1和a[x]+1的值所对应的下标 
void upd(int x){
	int lx=lft[x],rx=rht[x];
	lft[rx]=lx,rht[lx]=rx;
	int p=rht[0];
	rht[0]=x,lft[p]=x,lft[x]=0,rht[x]=p;
}
void solve_the_problem(){
	n=rd(),Q=rd();
	rep(i,0,n+1)lft[i]=i-1,rht[i]=i+1;
	while(Q--){
		int op=rd(),x;
		if(op==1)x=rd(),upd(x);
		else upd(lft[n+1]);
	}
	int p=rht[0];
	rep(i,1,n)a[p]=i,p=rht[p];
	rep(i,1,n)write(a[i],i==n?10:32);
}
bool Med;
signed main(){
//	freopen(".in","r",stdin);freopen(".out","w",stdout);
//	fprintf(stderr,"%.3lfMB\n",(&Mbg-&Med)/1048576.0);
	int _=rd();while(_--)solve_the_problem();
}
/*
1
3 1
1 1
*/

标签:ch,puts,int,long,一道,include,define
From: https://www.cnblogs.com/dcytrl/p/18137045

相关文章

  • 一道变态的关于作用域的探究问题
    varx=1functionfoo(x=11,y=function(){x=2}){console.log(x)//打印的()的形参x因为默认值为11所以打印11y()//y函数执行修改的是foo括号里面形参的值console.log(x)//由于()中的x被y函数修改所以x值变为2x......
  • 又一道好题
    题目链接戳我\(Solution\)维护一个上升的序列,对于一个操作把\(x+1\),不会使得这个序列下降,对于操作1,假设x下标位置的值是\(a\),把他和最右边数值为\(a\)的点交换一个位置再\(+1\)同样也不会影响这个序列的单调性。所以搞一个树状数组区间加单点查询即可,对于交换操作记录一下原序......
  • 超详细!详解一道高频算法题:数组中的第 K 个最大元素
    超详细!详解一道高频算法题:数组中的第K个最大元素今天分享的题目来源于LeetCode第215号问题,是面试中的高频考题。题目描述在未排序的数组中找到第k个最大的元素。请注意,你需要找的是数组排序后的第k个最大的元素,而不是第k个不同的元素。......
  • 一道好玩的组合数学的推公式题(绿名题, 1879C - Make it Alternating
    1879C-MakeitAlternating先贴代码,看能不能理解stra;llv[N];//装着01化为-1,1的数的数组llf[N];//装着预处理的组合数voidmoon(){cin>>a;n=0;m=a.size();eps(i,0,m+10)v[i]=0;//eps()是一个陋习,define定义的for循环for(autop:a){v[++n]=(p=='1'?1......
  • 天下第一道正文
    序这是一个金钱社会,这是一个充满欲望的社会,这是一个充满私心的社会,这是一个充满潜规则的社会,这是一个利益至上的社会,这是一个道德被踩在脚下的社会。天下第一道里的环境使然是指:杀人放火金腰带,修桥铺路无尸骸,虽然当今社会没有这么夸张但也与此类似,潜规则四处横行,人皆自私,天下......
  • 从一道小题说说 up and down
    拿到\(S(i)=\sum\limits_{j=1}^n\operatorname{dist}(i,j)^k\)。首先我们啥也做不了,只能根据Stirling数的那堆柿子硬拆开,有\(m^n=\sum\limits_{i=0}^m{n\bracei}i!\binom{m}{i}=\sum\limits_{i=0}^n{n\bracei}i!\binom{m}{i}\)。代入:\[S(......
  • 【每日一道算法题】螺旋矩阵II
    这里写自定义目录标题原题思路解析我的代码优质题解代码解读原题力扣题目链接(opensnewwindow)给定一个正整数n,生成一个包含1到n^2所有元素,且元素按顺时针顺序螺旋排列的正方形矩阵。示例:输入:3输出:[[1,2,3],[8,9,4],[7,6,5]]思......
  • 【每日一道算法题】有序数组的平方、长度最小的子数组
    文章目录有序数组的平方写在前面题目思路解析暴力解法双指针法我的代码暴力解法双指针法参考答案解法暴力方法双指针法长度最小的子数组原题思路解析暴力法滑动窗口法我的代码官方题解滑动窗口法有序数组的平方写在前面本人是一名在java后端寻路的小白,希望......
  • Linux内核驱动编程的一道陷阱题(转载)
    本篇转载于:https://blog.csdn.net/yhb1047818384/article/details/84073838 原文如下:------看过一道linux内核驱动编程的题目,我觉得有点价值。题目很简单,凭记忆整理了下,代码如下:#include<linux/init.h>#include<linux/module.h>#include<linux/delay.h>#include<l......
  • day10,一道竞赛题
    #define_CRT_SECURE_NO_WARNINGS#include<stdio.h>intmain(){ intw,m,n,i,j,k,p,t; scanf("%d%d%d",&w,&m,&n); if(m%w==0) { i=m/w-1;//是w的倍数时层数要减一。 } else { i=m/w; } if(n%w......