結果

問題 No.1051 PQ Permutation
ユーザー tactac
提出日時 2020-05-23 17:48:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 4,457 bytes
コンパイル時間 3,838 ms
コンパイル使用メモリ 210,352 KB
実行使用メモリ 8,588 KB
最終ジャッジ日時 2023-07-30 02:32:53
合計ジャッジ時間 6,860 ms
ジャッジサーバーID
(参考情報)
judge5 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,356 KB
testcase_01 AC 1 ms
4,356 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 2 ms
4,356 KB
testcase_04 AC 1 ms
4,352 KB
testcase_05 AC 1 ms
4,356 KB
testcase_06 AC 1 ms
4,360 KB
testcase_07 AC 2 ms
4,356 KB
testcase_08 AC 2 ms
4,356 KB
testcase_09 AC 1 ms
4,356 KB
testcase_10 AC 2 ms
4,384 KB
testcase_11 AC 1 ms
4,360 KB
testcase_12 AC 1 ms
4,356 KB
testcase_13 AC 2 ms
4,352 KB
testcase_14 AC 1 ms
4,360 KB
testcase_15 AC 57 ms
8,588 KB
testcase_16 AC 56 ms
8,512 KB
testcase_17 AC 40 ms
6,420 KB
testcase_18 AC 40 ms
6,656 KB
testcase_19 AC 40 ms
6,444 KB
testcase_20 AC 51 ms
7,348 KB
testcase_21 AC 51 ms
7,568 KB
testcase_22 AC 40 ms
6,440 KB
testcase_23 AC 50 ms
7,628 KB
testcase_24 AC 50 ms
7,572 KB
testcase_25 AC 5 ms
4,384 KB
testcase_26 AC 3 ms
4,380 KB
testcase_27 AC 2 ms
4,388 KB
testcase_28 AC 7 ms
4,384 KB
testcase_29 AC 3 ms
4,384 KB
testcase_30 AC 5 ms
4,384 KB
testcase_31 AC 2 ms
4,380 KB
testcase_32 AC 5 ms
4,380 KB
testcase_33 AC 2 ms
4,380 KB
testcase_34 AC 2 ms
4,384 KB
testcase_35 AC 21 ms
5,828 KB
testcase_36 AC 22 ms
5,796 KB
testcase_37 AC 21 ms
5,400 KB
testcase_38 AC 43 ms
7,264 KB
testcase_39 AC 21 ms
5,432 KB
testcase_40 AC 40 ms
7,356 KB
testcase_41 AC 40 ms
7,340 KB
testcase_42 AC 2 ms
4,384 KB
testcase_43 AC 1 ms
4,384 KB
testcase_44 AC 2 ms
4,384 KB
testcase_45 AC 1 ms
4,384 KB
testcase_46 AC 2 ms
4,384 KB
testcase_47 AC 1 ms
4,380 KB
testcase_48 AC 21 ms
5,412 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: 関数 ‘void solve()’ 内:
main.cpp:68:11: 警告: ‘q_’ may be used uninitialized [-Wmaybe-uninitialized]
   68 |   int p_, q_;
      |           ^~
main.cpp:68:7: 警告: ‘p_’ may be used uninitialized [-Wmaybe-uninitialized]
   68 |   int p_, q_;
      |       ^~

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
#define F first
#define S second
#define pii pair<int, int>
#define pli pair<ll, int>
#define pil pair<int, ll>
#define pll pair<ll, ll>
#define eb emplace_back
#define all(v) v.begin(), v.end()
#define rep(i, n) for (int i = 0; i < (n); ++i)
#define rep3(i, l, n) for (int i = l; i < (n); ++i)
#define sz(v) (int)v.size()
#define endl '\n'
const int inf = 1000000007;
const ll INF = 1e18;
// int mod = 998244353;
int mod = 1000000007;
#define abs(x) (x >= 0 ? x : -(x))
#define lb(v, x) (int)(lower_bound(all(v), x) - v.begin())
#define ub(v, x) (int)(upper_bound(all(v), x) - v.begin())
template<typename T1, typename T2> inline bool chmin(T1 &a, T2 b) { if (a > b) { a = b; return 1; } return 0; }
template<typename T1, typename T2> inline bool chmax(T1 &a, T2 b) { if (a < b) { a = b; return 1; } return 0; }
ll gcd(ll a, ll b) { if (b == 0) return a; return gcd(b, a % b); }
ll lcm(ll a, ll b) { return a / gcd(a, b) * b; }
template<typename T, typename U> T pow_(T a, U b) { return b ? pow_(a * a, b / 2) * (b % 2 ? a : 1) : 1; }
ll modpow(ll a, ll b, ll _mod) { return b ? modpow(a * a % _mod, b / 2, _mod) * (b % 2 ? a : 1) % _mod : 1; }
template<class T, class U> ostream& operator << (ostream& os, const pair<T, U>& p) { os << p.F << " " << p.S; return os; }
template<class T> ostream& operator << (ostream& os, const vector<T>& vec) { rep(i, sz(vec)) { if (i) os << " "; os << vec[i]; } return os; }
template<typename T> inline istream& operator >> (istream& is, vector<T>& v) { rep(j, sz(v)) is >> v[j]; return is; }
template<class T, class T2> inline void add(T &a, T2 b) { a += b; if (a >= mod) a -= mod; }
template<class T> void operator += (vector<T>& v, vector<T> v2) { rep(i, sz(v2)) v.eb(v2[i]); }

void solve();

int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  cout.tie(0);
  cout << fixed << setprecision(11);
  int T;
  T = 1;
  while (T--) solve();
}

// https://yukicoder.me/problems/no/1051/editorial
void solve() {
  int n;
  cin >> n;
  int p, q;
  cin >> p >> q;
  vector<int> a(n);
  cin >> a;

  // a と先頭 i 文字目まで一致し, p が q の左
  int i_ = -1; // 可能な最大の i
  vector<int> ma(n + 1), ma2(n + 1);
  for (int i = n - 1; i >= 0; --i) {
    chmax(ma[i], ma[i + 1]);
    chmax(ma2[i], ma2[i + 1]);

    if (a[i] > ma[i + 1]) { ma2[i] = ma[i + 1]; ma[i] = a[i]; }
    else if (a[i] > ma2[i + 1]) { ma2[i] = a[i]; }
  }
  // cerr << ma << endl << ma2 << endl;

  int p_, q_;
  rep(i, n) { if (a[i] == p) p_ = i; else if (a[i] == q) q_ = i; }

  rep(i, n) {
    if ((p_ <= i && q_ <= i && p_ < q_) || (p_ <= i && q_ > i)) {
      if (a[i + 1] < ma[i + 1]) i_ = i;
    } else if ((p_ <= i && q_ <= i && q_ < p_) || (q_ <= i && p_ > i)) {

    } else if (p_ > i && q_ > i) {
      if (a[i + 1] < ma[i + 1] && ma[i + 1] != q) i_ = i;
      if (a[i + 1] < ma2[i + 1] && ma2[i + 1] != q) i_ = i;
    }
  }
  cerr << "i_ " << i_ << endl;

  if ((p_ <= i_ && q_ <= i_ && p_ < q_) || (p_ <= i_ && q_ > i_)) {
    vector<int> b;
    rep(i, i_ + 1) b.eb(a[i]);
    int tmp = n + 1;
    rep3(i, i_ + 2, n) if (a[i] > a[i_ + 1]) chmin(tmp, a[i]);
    cerr << "tmp " << tmp << endl;
    if (tmp == n + 1) { cout << -1 << endl; return; }

    b.eb(tmp);
    vector<int> tmp_;
    rep3(i, i_ + 1, n) if (a[i] != tmp) tmp_.eb(a[i]);
    sort(all(tmp_));
    b += tmp_;
    cout << b << endl;
  } else if (p_ > i_ && q_ > i_) {
    int m = n + 1;
    // cerr << "a " << a << "  " << i_ + 2 << endl;
    rep3(i, i_ + 2, n) if (a[i] > a[i_ + 1] && a[i] != q) chmin(m, a[i]);
    cerr << "m " << m << endl;
    if (m == n + 1) { cout << -1 << endl; return; }

    if (p < q || (p > q && m == p)) {
      vector<int> b;
      rep(i, i_ + 1) b.eb(a[i]);
      b.eb(m);
      vector<int> tmp_;
      rep3(i, i_ + 1, n) if (a[i] != m) tmp_.eb(a[i]);
      sort(all(tmp_));
      // cerr << "tmp_ " << tmp_ << endl;
      b += tmp_;
      cout << b << endl;
    } else {
      if (m != p) {
        vector<int> b;
        rep(i, i_ + 1) b.eb(a[i]);
        b.eb(m);
        vector<int> tmp_;
        rep3(i, i_ + 1, n) if (a[i] != m && a[i] != q && a[i] < p) tmp_.eb(a[i]);
        sort(all(tmp_));
        b += tmp_;
        b.eb(p);
        b.eb(q);
        tmp_.clear();
        rep3(i, i_ + 1, n) if (a[i] != m && a[i] != q && a[i] > p) tmp_.eb(a[i]);
        sort(all(tmp_));
        b += tmp_;
        cout << b << endl;
      }
    }
  }
}
0