結果

問題 No.1051 PQ Permutation
ユーザー carrot46carrot46
提出日時 2020-05-08 22:53:16
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 214 ms / 2,000 ms
コード長 2,020 bytes
コンパイル時間 1,929 ms
コンパイル使用メモリ 176,100 KB
実行使用メモリ 15,684 KB
最終ジャッジ日時 2023-09-19 07:57:35
合計ジャッジ時間 7,409 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 1 ms
4,376 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 2 ms
4,376 KB
testcase_14 AC 1 ms
4,380 KB
testcase_15 AC 139 ms
15,368 KB
testcase_16 AC 153 ms
15,684 KB
testcase_17 AC 73 ms
4,588 KB
testcase_18 AC 73 ms
4,680 KB
testcase_19 AC 72 ms
4,548 KB
testcase_20 AC 211 ms
15,408 KB
testcase_21 AC 203 ms
15,552 KB
testcase_22 AC 73 ms
4,724 KB
testcase_23 AC 211 ms
15,500 KB
testcase_24 AC 214 ms
15,372 KB
testcase_25 AC 12 ms
4,384 KB
testcase_26 AC 5 ms
4,380 KB
testcase_27 AC 2 ms
4,380 KB
testcase_28 AC 11 ms
4,376 KB
testcase_29 AC 5 ms
4,384 KB
testcase_30 AC 11 ms
4,404 KB
testcase_31 AC 4 ms
4,376 KB
testcase_32 AC 10 ms
4,384 KB
testcase_33 AC 3 ms
4,380 KB
testcase_34 AC 3 ms
4,376 KB
testcase_35 AC 64 ms
9,296 KB
testcase_36 AC 65 ms
9,496 KB
testcase_37 AC 58 ms
4,892 KB
testcase_38 AC 136 ms
15,364 KB
testcase_39 AC 164 ms
15,496 KB
testcase_40 AC 72 ms
4,604 KB
testcase_41 AC 142 ms
15,416 KB
testcase_42 AC 2 ms
4,380 KB
testcase_43 AC 2 ms
4,380 KB
testcase_44 AC 2 ms
4,380 KB
testcase_45 AC 2 ms
4,380 KB
testcase_46 AC 1 ms
4,380 KB
testcase_47 AC 2 ms
4,384 KB
testcase_48 AC 206 ms
15,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <iomanip>
using namespace std;
#define reps(i,s,n) for(int i = s; i < n; i++)
#define rep(i,n) reps(i,0,n)
#define Rreps(i,n,e) for(int i = n - 1; i >= e; --i)
#define Rrep(i,n) Rreps(i,n,0)
#define ALL(a) a.begin(), a.end()
#define fi first
#define se second
typedef long long ll;
typedef vector<ll> vec;
typedef vector<vec> mat;

ll N,M,H,W,Q,K,A,B;
string S;
const ll MOD = 998244353;
//const ll MOD = (1e+9) + 7;
typedef pair<ll, ll> P;
const ll INF = (1LL<<60);

int main() {
    ll p, q;
    cin>>N>>p>>q;
    vec a(N);
    rep(i,N) cin>>a[i];
    if(!next_permutation(ALL(a))){
        cout<<-1<<endl;
        return 0;
    }
    int id = 0;
    bool flag = false;
    rep(i,N){
        if(a[i] == p) flag = true;
        if(flag && a[i] == q){
            rep(j,N){
                cout<<a[j];
                j == N - 1 ? cout<<endl : cout<<' ';
            }
            return 0;
        }
        if(a[i] == q){id = i; break;}
    }
    vec ans(N);
    set<ll> s;
    rep(i,N) s.insert(i+1);
    rep(i,id) s.erase(a[i]);
    s.erase(q);
    while(id >= 0){
        if(s.upper_bound(a[id]) != s.end()){
            int temp = *s.upper_bound(a[id]);
            rep(i,id) ans[i] = a[i];
            s.insert(a[id]);
            ans[id++] = temp;
            s.erase(temp);
            s.insert(q);
            //cout<<id<<' '<<s.size()<<endl;
            bool pq = s.find(p) == s.end();
            for(ll t : s){
                if(t != p && t != q){
                    ans[id++] = t;
                }else if(t == q){
                    if(pq) ans[id++] = t;
                    else pq = true;
                }else{
                    ans[id++] = t;
                    if(pq) ans[id++] = q;
                    else pq = true;
                }
            }
            rep(i,N){cout<<ans[i]; i == N - 1 ? cout<<endl : cout<<' ';}
            return 0;
        }else{
            if(a[id] != q) s.insert(a[id]);
            --id;
        }
    }
    cout<<-1<<endl;
}
0