結果
問題 | No.1051 PQ Permutation |
ユーザー | kiyoshi0205 |
提出日時 | 2020-05-08 23:19:41 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,102 bytes |
コンパイル時間 | 2,007 ms |
コンパイル使用メモリ | 184,420 KB |
実行使用メモリ | 14,208 KB |
最終ジャッジ日時 | 2024-07-05 20:02:27 |
合計ジャッジ時間 | 6,082 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 172 ms
13,952 KB |
testcase_16 | AC | 160 ms
13,312 KB |
testcase_17 | AC | 79 ms
5,376 KB |
testcase_18 | AC | 78 ms
5,376 KB |
testcase_19 | AC | 77 ms
5,376 KB |
testcase_20 | AC | 121 ms
10,368 KB |
testcase_21 | AC | 127 ms
10,752 KB |
testcase_22 | AC | 77 ms
5,376 KB |
testcase_23 | AC | 121 ms
10,496 KB |
testcase_24 | AC | 120 ms
10,112 KB |
testcase_25 | AC | 10 ms
5,376 KB |
testcase_26 | AC | 6 ms
5,376 KB |
testcase_27 | AC | 3 ms
5,376 KB |
testcase_28 | AC | 12 ms
5,376 KB |
testcase_29 | AC | 6 ms
5,376 KB |
testcase_30 | AC | 11 ms
5,376 KB |
testcase_31 | AC | 3 ms
5,376 KB |
testcase_32 | AC | 10 ms
5,376 KB |
testcase_33 | AC | 3 ms
5,376 KB |
testcase_34 | AC | 3 ms
5,376 KB |
testcase_35 | WA | - |
testcase_36 | AC | 66 ms
8,704 KB |
testcase_37 | AC | 60 ms
5,376 KB |
testcase_38 | WA | - |
testcase_39 | AC | 125 ms
14,208 KB |
testcase_40 | AC | 78 ms
5,376 KB |
testcase_41 | WA | - |
testcase_42 | AC | 2 ms
5,376 KB |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | AC | 1 ms
5,376 KB |
testcase_47 | WA | - |
testcase_48 | WA | - |
ソースコード
#pragma GCC optimize("Ofast") #include<bits/stdc++.h> // #include<ext/pb_ds/assoc_container.hpp> // #include<ext/pb_ds/tree_policy.hpp> // #include<ext/pb_ds/tag_and_trait.hpp> // using namespace __gnu_pbds; // #include<boost/multiprecision/cpp_int.hpp> // namespace multiprecisioninteger = boost::multiprecision; // using cint=multiprecisioninteger::cpp_int; using namespace std; using ll=long long; #define double long double using datas=pair<ll,ll>; using ddatas=pair<double,double>; using tdata=pair<ll,datas>; using vec=vector<ll>; using mat=vector<vec>; using pvec=vector<datas>; using pmat=vector<pvec>; // using llset=tree<ll,null_type,less<ll>,rb_tree_tag,tree_order_statistics_node_update>; #define For(i,a,b) for(i=a;i<(ll)b;++i) #define bFor(i,b,a) for(i=b,--i;i>=(ll)a;--i) #define rep(i,N) For(i,0,N) #define rep1(i,N) For(i,1,N) #define brep(i,N) bFor(i,N,0) #define brep1(i,N) bFor(i,N,1) #define all(v) (v).begin(),(v).end() #define allr(v) (v).rbegin(),(v).rend() #define vsort(v) sort(all(v)) #define vrsort(v) sort(allr(v)) #define endl "\n" #define eb emplace_back #define print(v) cout<<v<<endl #define printyes cout<<"Yes"<<endl #define printno cout<<"No"<<endl #define printYES cout<<"YES"<<endl #define printNO cout<<"NO"<<endl #define output(v) do{bool f=0;for(auto outi:v){cout<<(f?" ":"")<<outi;f=1;}cout<<endl;}while(0) int main(){ ll i,N,A,B,pa=0,pb=0; cin>>N>>A>>B; vec v(N); rep(i,N){ cin>>v[i]; if(v[i]==A)pa=i; if(v[i]==B)pb=i; } if(!next_permutation(all(v))){ print(-1); return 0; } if(pa<pb){ output(v); return 0; } set<ll> se; set<ll>::iterator itr; while(--i>=0){ se.insert(v[i]); if(i<=pb){ itr=se.upper_bound(v[i]); if(itr!=se.end()&&*itr==B)++itr; if(itr!=se.end())break; } } if(i==-1){ print(-1); return 0; } v[i]=*itr; se.erase(itr); itr=se.begin(); if(A<B||v[i]==A){ while(++i<N){ v[i]=*itr; ++itr; } }else{ while(++i<N){ if(*itr==B)++itr; v[i]=*itr; if(*itr==A)v[++i]=B; ++itr; } } output(v); }