結果

問題 No.2740 Old Maid
ユーザー SyNtAx_error_1SyNtAx_error_1
提出日時 2024-04-21 15:16:17
言語 C++17(clang)
(17.0.6 + boost 1.87.0)
結果
AC  
実行時間 199 ms / 2,000 ms
コード長 1,099 bytes
コンパイル時間 2,387 ms
コンパイル使用メモリ 164,352 KB
実行使用メモリ 15,148 KB
最終ジャッジ日時 2024-10-13 14:05:16
合計ジャッジ時間 10,425 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 62
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;
constexpr int INF = (1u << 31) - 1;

int main() {
  int N;
  cin >> N;
  vector<int> P(N);
  for (auto&& p : P)
    cin >> p, p--;
  // set<int> used;
  vector<int> table(N);
  map<int, int> P2;
  for (int i = 0; i < N; i++)
    P2[i] = P[i];
  for (int i = 0; i < N; i++)
    table[P[i]] = i;
  vector<int> ans;
  for (int i = 0; i < N; i++) {
    // cout << i + 1 << ":start" << endl;
    // for (auto [a, b] : P2)
    //   cout << "[" << a + 1 << "," << b + 1 << "]" << endl;
    // iを使えるなら使う
    // id:=Pのi
    int id = table[i];
    // if (used.contains(id)) continue;
    auto itr = P2.lower_bound(id);
    // if (i == 2) cout << itr->second + 1 << "," << id + 1 << endl;
    if ((*itr).first != id) continue;
    auto itr2 = itr;
    if (++itr2 == P2.end()) continue;
    ans.push_back(itr->second);
    ans.push_back(itr2->second);
    P2.erase(itr);
    P2.erase(P2.upper_bound(id));
  }
  // cout << ans.size() << endl;
  for (int i = 0; i < N; i++) {
    cout << ans[i] + 1 << " \n"[i + 1 == N];
  }
}
0