結果

問題 No.1051 PQ Permutation
ユーザー kiyoshi0205kiyoshi0205
提出日時 2020-05-08 23:06:09
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 2,509 bytes
コンパイル時間 2,044 ms
コンパイル使用メモリ 184,912 KB
実行使用メモリ 14,208 KB
最終ジャッジ日時 2024-07-05 19:57:42
合計ジャッジ時間 5,912 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 46
権限があれば一括ダウンロードができます

ソースコード

diff #

#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,f=0,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;
  For(i,pb,N)se.insert(v[i]);
  auto itr=se.upper_bound(B);
  if(itr!=se.end()){
    v[i=pb]=*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;
      }
    }
  }else{
    i=pb;
    while(--i>=0){
      se.insert(v[i]);
      if(B<v[i])f=1;
      itr=se.upper_bound(v[i]);
      if(itr!=se.end()&&(*itr!=B||f))break;
    }
    if(i==-1){
      print(-1);
      return 0;
    }
    if(*itr==B)++itr;
    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);
}
0