Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
33486 | wsad | [CSP-J2021]插入排序 | C++ | 运行出错 | 0 | 0 MS | 232 KB | 763 | 2021-12-06 14:01:28 |
#include<bits/stdc++.h> using namespace std; int Read() { int x=0; char c=getchar(); for(; c<'0' || c>'9'; c=getchar()); for(; c<='9' && c>='0'; c=getchar()) x=(x<<3)+(x<<1)+(c^48); return x; } int main(){ freopen("sort.in","r",stdin); freopen("sort.out","w",stdout); int n,q,a[8010],x,y,v,ans=0; n=Read(),q=Read(); for(int i=1;i<=n;++i) a[i]=Read(); for(int i=1;i<=q;++i) { x=Read(); if(x==1) { y=Read(),v=Read(); a[y]=v; } if(x==2) { y=Read(); for(int j=1;j<y;++j) { if(a[j]<=a[y]) ++ans; } for(int j=y+1;j<=n;++j) { if(a[j]<a[y]) ++ans; } cout<<ans+1<<'\n'; ans=0; } } return 0; }//sort