結果

問題 No.1051 PQ Permutation
ユーザー kiyoshi0205kiyoshi0205
提出日時 2020-05-08 23:19:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,102 bytes
コンパイル時間 3,308 ms
コンパイル使用メモリ 181,396 KB
実行使用メモリ 13,904 KB
最終ジャッジ日時 2023-09-19 08:07:39
合計ジャッジ時間 7,783 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,384 KB
testcase_01 AC 1 ms
4,384 KB
testcase_02 AC 2 ms
4,384 KB
testcase_03 AC 2 ms
4,384 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 WA -
testcase_06 AC 1 ms
4,384 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 1 ms
4,380 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 1 ms
4,384 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 208 ms
13,808 KB
testcase_16 AC 191 ms
13,080 KB
testcase_17 AC 76 ms
4,504 KB
testcase_18 AC 76 ms
4,712 KB
testcase_19 AC 77 ms
4,580 KB
testcase_20 AC 142 ms
10,080 KB
testcase_21 AC 145 ms
10,728 KB
testcase_22 AC 77 ms
4,548 KB
testcase_23 AC 135 ms
10,056 KB
testcase_24 AC 133 ms
9,872 KB
testcase_25 AC 9 ms
4,380 KB
testcase_26 AC 5 ms
4,384 KB
testcase_27 AC 2 ms
4,384 KB
testcase_28 AC 12 ms
4,380 KB
testcase_29 AC 5 ms
4,380 KB
testcase_30 AC 11 ms
4,384 KB
testcase_31 AC 4 ms
4,384 KB
testcase_32 AC 11 ms
4,384 KB
testcase_33 AC 3 ms
4,380 KB
testcase_34 AC 2 ms
4,380 KB
testcase_35 WA -
testcase_36 AC 66 ms
8,556 KB
testcase_37 AC 58 ms
4,596 KB
testcase_38 WA -
testcase_39 AC 128 ms
13,904 KB
testcase_40 AC 76 ms
4,648 KB
testcase_41 WA -
testcase_42 AC 2 ms
4,380 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 2 ms
4,380 KB
testcase_47 WA -
testcase_48 WA -
権限があれば一括ダウンロードができます

ソースコード

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