結果

問題 No.2809 Sort Query
ユーザー cho435cho435
提出日時 2024-07-27 18:03:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,832 ms / 2,000 ms
コード長 1,266 bytes
コンパイル時間 6,579 ms
コンパイル使用メモリ 301,588 KB
実行使用メモリ 47,872 KB
最終ジャッジ日時 2024-07-27 18:05:56
合計ジャッジ時間 108,100 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1,413 ms
47,728 KB
testcase_02 AC 1,128 ms
47,728 KB
testcase_03 AC 1,133 ms
47,744 KB
testcase_04 AC 1,079 ms
47,744 KB
testcase_05 AC 1,116 ms
47,744 KB
testcase_06 AC 1,006 ms
47,744 KB
testcase_07 AC 1,103 ms
47,744 KB
testcase_08 AC 1,066 ms
47,744 KB
testcase_09 AC 1,093 ms
47,872 KB
testcase_10 AC 1,025 ms
47,744 KB
testcase_11 AC 1,392 ms
47,872 KB
testcase_12 AC 1,362 ms
47,744 KB
testcase_13 AC 1,393 ms
47,744 KB
testcase_14 AC 1,439 ms
47,744 KB
testcase_15 AC 1,452 ms
47,744 KB
testcase_16 AC 1,348 ms
47,868 KB
testcase_17 AC 1,363 ms
47,872 KB
testcase_18 AC 1,420 ms
47,744 KB
testcase_19 AC 1,445 ms
47,856 KB
testcase_20 AC 1,410 ms
47,872 KB
testcase_21 AC 1,832 ms
47,744 KB
testcase_22 AC 1,670 ms
47,872 KB
testcase_23 AC 1,725 ms
47,744 KB
testcase_24 AC 1,778 ms
47,872 KB
testcase_25 AC 1,775 ms
47,744 KB
testcase_26 AC 1,610 ms
47,744 KB
testcase_27 AC 1,548 ms
47,744 KB
testcase_28 AC 1,562 ms
47,744 KB
testcase_29 AC 1,545 ms
47,872 KB
testcase_30 AC 1,474 ms
47,744 KB
testcase_31 AC 1,384 ms
47,872 KB
testcase_32 AC 1,336 ms
47,744 KB
testcase_33 AC 1,428 ms
47,744 KB
testcase_34 AC 1,315 ms
47,732 KB
testcase_35 AC 1,439 ms
47,744 KB
testcase_36 AC 1,457 ms
47,744 KB
testcase_37 AC 1,504 ms
47,744 KB
testcase_38 AC 1,444 ms
47,872 KB
testcase_39 AC 1,461 ms
47,872 KB
testcase_40 AC 1,468 ms
47,872 KB
testcase_41 AC 1,102 ms
47,744 KB
testcase_42 AC 1,204 ms
47,744 KB
testcase_43 AC 1,139 ms
47,744 KB
testcase_44 AC 1,131 ms
47,872 KB
testcase_45 AC 1,141 ms
47,872 KB
testcase_46 AC 1,171 ms
47,744 KB
testcase_47 AC 1,041 ms
47,872 KB
testcase_48 AC 1,115 ms
47,744 KB
testcase_49 AC 969 ms
47,744 KB
testcase_50 AC 940 ms
47,744 KB
testcase_51 AC 1,360 ms
47,744 KB
testcase_52 AC 1,302 ms
47,744 KB
testcase_53 AC 1,337 ms
47,744 KB
testcase_54 AC 1,282 ms
47,744 KB
testcase_55 AC 1,250 ms
47,744 KB
testcase_56 AC 692 ms
28,416 KB
testcase_57 AC 556 ms
21,760 KB
testcase_58 AC 608 ms
24,320 KB
testcase_59 AC 498 ms
18,304 KB
testcase_60 AC 831 ms
39,808 KB
testcase_61 AC 1,040 ms
47,232 KB
testcase_62 AC 543 ms
22,912 KB
testcase_63 AC 735 ms
30,720 KB
testcase_64 AC 1,067 ms
46,464 KB
testcase_65 AC 609 ms
33,408 KB
testcase_66 AC 2 ms
5,376 KB
testcase_67 AC 2 ms
5,376 KB
testcase_68 AC 2 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({0,i});
	}
	map<pair<ll,ll>,pair<ll,ll>> mp;
	rep(i,0,n){
		mp[{0,i}]={a.at(i),i};
	}
	rep(Qi,0,q){
		ll t;
		cin>>t;
		if(t==1){
			ll k,x;
			cin>>k>>x;
			k--;
			auto p=*st.find_by_order(k);
			mp[p]={x,p.second};
		}else if(t==2){
			for(auto[p,q]:mp){
				st.erase(p);
				st.insert(q);
			}
			mp.clear();
		}else if(t==3){
			ll k;
			cin>>k;
			k--;
			auto p=*st.find_by_order(k);
			if(mp.count(p)) p=mp.at(p);
			cout<<p.first<<"\n";
		}
	}
}
0