結果
| 問題 |
No.1051 PQ Permutation
|
| コンテスト | |
| ユーザー |
kiyoshi0205
|
| 提出日時 | 2020-05-08 23:17:05 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 198 ms / 2,000 ms |
| コード長 | 2,108 bytes |
| コンパイル時間 | 2,064 ms |
| コンパイル使用メモリ | 184,524 KB |
| 実行使用メモリ | 14,336 KB |
| 最終ジャッジ日時 | 2024-07-05 20:01:42 |
| 合計ジャッジ時間 | 6,447 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 46 |
ソースコード
#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(!next_permutation(all(v))){
print(-1);
return 0;
}
rep(i,N){
if(v[i]==A)pa=i;
if(v[i]==B)pb=i;
}
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);
}
kiyoshi0205