結果

問題 No.2740 Old Maid
ユーザー tobbietobbie
提出日時 2024-04-25 19:08:18
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 619 ms / 2,000 ms
コード長 696 bytes
コンパイル時間 2,233 ms
コンパイル使用メモリ 176,972 KB
実行使用メモリ 22,796 KB
最終ジャッジ日時 2024-11-08 06:45:06
合計ジャッジ時間 19,282 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 264 ms
22,272 KB
testcase_01 AC 267 ms
22,272 KB
testcase_02 AC 267 ms
22,272 KB
testcase_03 AC 271 ms
22,272 KB
testcase_04 AC 271 ms
22,144 KB
testcase_05 AC 269 ms
22,144 KB
testcase_06 AC 267 ms
22,272 KB
testcase_07 AC 265 ms
22,144 KB
testcase_08 AC 265 ms
22,272 KB
testcase_09 AC 273 ms
22,272 KB
testcase_10 AC 256 ms
22,272 KB
testcase_11 AC 271 ms
22,272 KB
testcase_12 AC 367 ms
17,432 KB
testcase_13 AC 402 ms
18,500 KB
testcase_14 AC 54 ms
6,656 KB
testcase_15 AC 83 ms
7,768 KB
testcase_16 AC 291 ms
13,952 KB
testcase_17 AC 55 ms
6,400 KB
testcase_18 AC 408 ms
17,800 KB
testcase_19 AC 137 ms
9,404 KB
testcase_20 AC 497 ms
20,184 KB
testcase_21 AC 73 ms
7,096 KB
testcase_22 AC 265 ms
13,696 KB
testcase_23 AC 38 ms
5,888 KB
testcase_24 AC 122 ms
9,088 KB
testcase_25 AC 540 ms
21,052 KB
testcase_26 AC 5 ms
5,248 KB
testcase_27 AC 26 ms
5,248 KB
testcase_28 AC 278 ms
13,948 KB
testcase_29 AC 269 ms
13,184 KB
testcase_30 AC 9 ms
5,248 KB
testcase_31 AC 619 ms
22,796 KB
testcase_32 AC 156 ms
10,240 KB
testcase_33 AC 577 ms
21,624 KB
testcase_34 AC 274 ms
13,184 KB
testcase_35 AC 125 ms
8,960 KB
testcase_36 AC 131 ms
9,344 KB
testcase_37 AC 202 ms
11,648 KB
testcase_38 AC 100 ms
8,432 KB
testcase_39 AC 50 ms
6,272 KB
testcase_40 AC 348 ms
15,744 KB
testcase_41 AC 497 ms
19,984 KB
testcase_42 AC 2 ms
5,248 KB
testcase_43 AC 2 ms
5,248 KB
testcase_44 AC 2 ms
5,248 KB
testcase_45 AC 2 ms
5,248 KB
testcase_46 AC 2 ms
5,248 KB
testcase_47 AC 2 ms
5,248 KB
testcase_48 AC 2 ms
5,248 KB
testcase_49 AC 2 ms
5,248 KB
testcase_50 AC 2 ms
5,248 KB
testcase_51 AC 2 ms
5,248 KB
testcase_52 AC 3 ms
5,248 KB
testcase_53 AC 2 ms
5,248 KB
testcase_54 AC 2 ms
5,248 KB
testcase_55 AC 2 ms
5,248 KB
testcase_56 AC 2 ms
5,248 KB
testcase_57 AC 2 ms
5,248 KB
testcase_58 AC 2 ms
5,248 KB
testcase_59 AC 2 ms
5,248 KB
testcase_60 AC 2 ms
5,248 KB
testcase_61 AC 2 ms
5,248 KB
testcase_62 AC 2 ms
5,248 KB
testcase_63 AC 2 ms
5,248 KB
testcase_64 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define rep(i, n) for (int i = 0; i < (int)(n); i++)

int main() {
  int N;
  cin >> N;
  map<int, int> p;
  map<int, int> m;
  rep(i, N) {
    int pi; cin >> pi;
    p[i] = pi;
    m[pi] = i;
  }
  vector<int> q;
  while ((int)q.size() < N) {
    map<int, int>::iterator it, it2;
    it = m.begin();
    while (1) {
      it2 = p.find(it->second);
      it2++;
      if (it2 != p.end())
	break;
      it++;
    }
    int x = it->second;
    int y = it2->first;
    q.push_back(p[x]);
    q.push_back(p[y]);
    m.erase(p[x]);
    m.erase(p[y]);
    p.erase(x);
    p.erase(y);
  }
  rep(i, N)
    cout << q[i] << " ";
  cout << endl;
  return 0;
}
0