結果

問題 No.2809 Sort Query
ユーザー cho435cho435
提出日時 2024-07-27 18:26:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,560 ms / 2,000 ms
コード長 1,392 bytes
コンパイル時間 5,132 ms
コンパイル使用メモリ 294,244 KB
実行使用メモリ 28,032 KB
最終ジャッジ日時 2024-07-27 18:27:55
合計ジャッジ時間 92,925 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1,182 ms
27,904 KB
testcase_02 AC 1,157 ms
27,864 KB
testcase_03 AC 1,091 ms
28,032 KB
testcase_04 AC 1,357 ms
27,904 KB
testcase_05 AC 995 ms
27,904 KB
testcase_06 AC 1,026 ms
27,904 KB
testcase_07 AC 962 ms
27,904 KB
testcase_08 AC 946 ms
27,904 KB
testcase_09 AC 967 ms
28,032 KB
testcase_10 AC 992 ms
27,896 KB
testcase_11 AC 1,279 ms
27,904 KB
testcase_12 AC 1,255 ms
27,944 KB
testcase_13 AC 1,203 ms
27,904 KB
testcase_14 AC 1,266 ms
28,012 KB
testcase_15 AC 1,201 ms
27,904 KB
testcase_16 AC 1,236 ms
27,904 KB
testcase_17 AC 1,191 ms
28,032 KB
testcase_18 AC 1,281 ms
28,032 KB
testcase_19 AC 1,233 ms
27,948 KB
testcase_20 AC 1,351 ms
27,848 KB
testcase_21 AC 1,560 ms
27,904 KB
testcase_22 AC 1,431 ms
27,904 KB
testcase_23 AC 1,436 ms
27,904 KB
testcase_24 AC 1,449 ms
28,032 KB
testcase_25 AC 1,462 ms
27,904 KB
testcase_26 AC 1,311 ms
27,904 KB
testcase_27 AC 1,242 ms
27,904 KB
testcase_28 AC 1,325 ms
27,904 KB
testcase_29 AC 1,304 ms
28,016 KB
testcase_30 AC 1,260 ms
28,032 KB
testcase_31 AC 1,015 ms
27,904 KB
testcase_32 AC 1,132 ms
27,904 KB
testcase_33 AC 1,017 ms
28,032 KB
testcase_34 AC 1,056 ms
27,904 KB
testcase_35 AC 1,003 ms
27,904 KB
testcase_36 AC 1,087 ms
27,904 KB
testcase_37 AC 1,183 ms
28,032 KB
testcase_38 AC 1,142 ms
27,904 KB
testcase_39 AC 1,084 ms
27,904 KB
testcase_40 AC 1,147 ms
27,904 KB
testcase_41 AC 1,242 ms
27,904 KB
testcase_42 AC 1,061 ms
27,904 KB
testcase_43 AC 1,005 ms
28,032 KB
testcase_44 AC 1,023 ms
27,904 KB
testcase_45 AC 1,060 ms
27,904 KB
testcase_46 AC 911 ms
27,904 KB
testcase_47 AC 929 ms
27,904 KB
testcase_48 AC 905 ms
28,032 KB
testcase_49 AC 902 ms
28,032 KB
testcase_50 AC 934 ms
27,904 KB
testcase_51 AC 745 ms
28,032 KB
testcase_52 AC 737 ms
27,904 KB
testcase_53 AC 729 ms
27,904 KB
testcase_54 AC 810 ms
27,904 KB
testcase_55 AC 763 ms
27,904 KB
testcase_56 AC 705 ms
17,152 KB
testcase_57 AC 536 ms
13,440 KB
testcase_58 AC 511 ms
14,848 KB
testcase_59 AC 492 ms
11,520 KB
testcase_60 AC 677 ms
23,552 KB
testcase_61 AC 903 ms
27,648 KB
testcase_62 AC 507 ms
14,080 KB
testcase_63 AC 711 ms
18,432 KB
testcase_64 AC 1,003 ms
27,264 KB
testcase_65 AC 525 ms
19,968 KB
testcase_66 AC 2 ms
5,376 KB
testcase_67 AC 4 ms
5,376 KB
testcase_68 AC 3 ms
5,376 KB
testcase_69 AC 2 ms
5,376 KB
testcase_70 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using ll = long long;
#define rep(i, s, t) for (ll i = s; i < (ll)(t); i++)

#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;
template<typename T>
using pbds_tree = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;

template<typename T>
bool chmin(T &x, T y) { return x > y ? (x = y, true) : false; }
template<typename T>
bool chmax(T &x, T y) { return x < y ? (x = y, true) : false; }

struct io_setup {
	io_setup() {
		ios::sync_with_stdio(false);
		std::cin.tie(nullptr);
		cout << fixed << setprecision(15);
	}
} io_setup;

int main(){
	ll n,q;
	cin>>n>>q;
	vector<ll> a(n);
	rep(i,0,n) cin>>a.at(i);
	pbds_tree<pair<ll,ll>> st;
	rep(i,0,n){
		st.insert({-1,i});
	}
	vector<ll> b=a;
	vector<int> ch(n);
	iota(ch.begin(),ch.end(),0);
	rep(i,0,n) a.at(i)=-1;
	rep(Qi,0,q){
		ll t;
		cin>>t;
		if(t==1){
			ll k,x;
			cin>>k>>x;
			k--;
			auto[p,i]=*st.find_by_order(k);
			if(b.at(i)==-1) ch.push_back(i);
			b.at(i)=x;
		}else if(t==2){
			while(!ch.empty()){
				int i=ch.back();
				ch.pop_back();
				st.erase({a.at(i),i});
				st.insert({b.at(i),i});
				a.at(i)=b.at(i);
				b.at(i)=-1;
			}
		}else if(t==3){
			ll k;
			cin>>k;
			k--;
			auto[p,i]=*st.find_by_order(k);
			if(b.at(i)!=-1) p=b.at(i);
			cout<<p<<"\n";
		}
	}
}
0