結果

問題 No.1051 PQ Permutation
ユーザー betrue12betrue12
提出日時 2020-05-09 02:26:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 209 ms / 2,000 ms
コード長 1,366 bytes
コンパイル時間 2,223 ms
コンパイル使用メモリ 215,120 KB
実行使用メモリ 14,464 KB
最終ジャッジ日時 2024-07-05 20:08:43
合計ジャッジ時間 6,486 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 136 ms
14,208 KB
testcase_16 AC 130 ms
13,568 KB
testcase_17 AC 74 ms
5,376 KB
testcase_18 AC 74 ms
5,376 KB
testcase_19 AC 75 ms
5,376 KB
testcase_20 AC 111 ms
10,624 KB
testcase_21 AC 115 ms
10,880 KB
testcase_22 AC 78 ms
5,376 KB
testcase_23 AC 111 ms
10,624 KB
testcase_24 AC 107 ms
10,368 KB
testcase_25 AC 9 ms
5,376 KB
testcase_26 AC 5 ms
5,376 KB
testcase_27 AC 3 ms
5,376 KB
testcase_28 AC 12 ms
5,376 KB
testcase_29 AC 5 ms
5,376 KB
testcase_30 AC 10 ms
5,376 KB
testcase_31 AC 4 ms
5,376 KB
testcase_32 AC 10 ms
5,376 KB
testcase_33 AC 3 ms
5,376 KB
testcase_34 AC 3 ms
5,376 KB
testcase_35 AC 60 ms
9,088 KB
testcase_36 AC 58 ms
8,960 KB
testcase_37 AC 60 ms
5,376 KB
testcase_38 AC 125 ms
14,464 KB
testcase_39 AC 109 ms
13,568 KB
testcase_40 AC 74 ms
5,376 KB
testcase_41 AC 99 ms
9,728 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 1 ms
5,376 KB
testcase_44 AC 1 ms
5,376 KB
testcase_45 AC 2 ms
5,376 KB
testcase_46 AC 2 ms
5,376 KB
testcase_47 AC 2 ms
5,376 KB
testcase_48 AC 209 ms
13,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

void fail(){
    cout << -1 << endl;
    exit(0);
}

void answer(vector<int> A){
    int N = A.size();
    for(int i=0; i<N; i++) cout << A[i]+1 << " \n"[i==N-1];
    exit(0);
}

int main(){
    int N, P, Q;
    cin >> N >> P >> Q;
    P--; Q--;
    vector<int> A(N);
    for(int i=0; i<N; i++) cin >> A[i], A[i]--;

    if(!next_permutation(A.begin(), A.end())) fail();
    int posP = -1, posQ = -1;
    for(int i=0; i<N; i++){
        if(A[i] == P) posP = i;
        if(A[i] == Q) posQ = i;
    }
    if(posP < posQ) answer(A);

    sort(A.begin()+posQ+1, A.end(), greater<>());

    set<int> avail;
    for(int i=posQ+1; i<N; i++) avail.insert(A[i]);
    while(true){
        int pt = posQ;
        while(pt >= 0 && A[pt] > A[pt+1]){
            avail.insert(A[pt]);
            pt--;
        }
        if(pt == -1) fail();
        if(*avail.lower_bound(A[pt]) == Q){
            swap(A[pt], A[posQ]);
            avail.erase(Q);
            avail.insert(A[posQ]);
            posQ = pt;
        }else{
            break;
        }
    }

    if(!next_permutation(A.begin(), A.end())) fail();
    for(int i=0; i<N; i++){
        if(A[i] == P) posP = i;
        if(A[i] == Q) posQ = i;
    }
    if(posP < posQ) answer(A);

    A.erase(A.begin()+posQ);
    A.insert(A.begin()+posP, Q);
    answer(A);
    return 0;
}
0