結果

問題 No.1051 PQ Permutation
ユーザー kiyoshi0205kiyoshi0205
提出日時 2020-05-08 23:17:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 217 ms / 2,000 ms
コード長 2,108 bytes
コンパイル時間 2,556 ms
コンパイル使用メモリ 182,948 KB
実行使用メモリ 13,976 KB
最終ジャッジ日時 2023-09-19 08:06:49
合計ジャッジ時間 7,558 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,384 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 2 ms
4,384 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 1 ms
4,380 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 1 ms
4,380 KB
testcase_11 AC 2 ms
4,384 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 1 ms
4,384 KB
testcase_14 AC 1 ms
4,380 KB
testcase_15 AC 217 ms
13,864 KB
testcase_16 AC 197 ms
13,128 KB
testcase_17 AC 77 ms
4,608 KB
testcase_18 AC 77 ms
4,540 KB
testcase_19 AC 78 ms
4,680 KB
testcase_20 AC 136 ms
10,084 KB
testcase_21 AC 146 ms
10,408 KB
testcase_22 AC 77 ms
4,556 KB
testcase_23 AC 141 ms
10,088 KB
testcase_24 AC 132 ms
10,004 KB
testcase_25 AC 9 ms
4,380 KB
testcase_26 AC 5 ms
4,380 KB
testcase_27 AC 3 ms
4,384 KB
testcase_28 AC 12 ms
4,380 KB
testcase_29 AC 5 ms
4,380 KB
testcase_30 AC 10 ms
4,380 KB
testcase_31 AC 3 ms
4,384 KB
testcase_32 AC 11 ms
4,380 KB
testcase_33 AC 3 ms
4,384 KB
testcase_34 AC 2 ms
4,384 KB
testcase_35 AC 65 ms
8,568 KB
testcase_36 AC 65 ms
8,648 KB
testcase_37 AC 57 ms
4,868 KB
testcase_38 AC 138 ms
13,796 KB
testcase_39 AC 126 ms
13,836 KB
testcase_40 AC 76 ms
4,624 KB
testcase_41 AC 103 ms
9,492 KB
testcase_42 AC 1 ms
4,384 KB
testcase_43 AC 2 ms
4,380 KB
testcase_44 AC 2 ms
4,384 KB
testcase_45 AC 2 ms
4,388 KB
testcase_46 AC 2 ms
4,380 KB
testcase_47 AC 2 ms
4,380 KB
testcase_48 AC 148 ms
13,976 KB
権限があれば一括ダウンロードができます

ソースコード

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,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);
}
0