結果

問題 No.1051 PQ Permutation
ユーザー carrot46carrot46
提出日時 2020-05-08 22:48:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,020 bytes
コンパイル時間 3,374 ms
コンパイル使用メモリ 175,720 KB
実行使用メモリ 15,512 KB
最終ジャッジ日時 2023-09-19 07:55:31
合計ジャッジ時間 8,681 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 2 ms
4,384 KB
testcase_04 WA -
testcase_05 AC 1 ms
4,380 KB
testcase_06 WA -
testcase_07 AC 2 ms
4,384 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 2 ms
4,388 KB
testcase_11 AC 1 ms
4,384 KB
testcase_12 WA -
testcase_13 AC 1 ms
4,380 KB
testcase_14 WA -
testcase_15 AC 140 ms
15,372 KB
testcase_16 AC 155 ms
15,460 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 206 ms
15,512 KB
testcase_21 AC 203 ms
15,428 KB
testcase_22 WA -
testcase_23 AC 203 ms
15,416 KB
testcase_24 AC 210 ms
15,452 KB
testcase_25 AC 12 ms
4,380 KB
testcase_26 WA -
testcase_27 AC 3 ms
4,380 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 11 ms
4,384 KB
testcase_31 AC 4 ms
4,380 KB
testcase_32 AC 10 ms
4,380 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 65 ms
9,524 KB
testcase_36 AC 65 ms
9,356 KB
testcase_37 AC 58 ms
4,596 KB
testcase_38 AC 136 ms
15,372 KB
testcase_39 AC 163 ms
15,388 KB
testcase_40 WA -
testcase_41 AC 143 ms
15,456 KB
testcase_42 AC 2 ms
4,384 KB
testcase_43 AC 1 ms
4,380 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 2 ms
4,384 KB
testcase_48 AC 206 ms
15,504 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[i];
                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