結果
| 問題 |
No.2740 Old Maid
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-04-24 23:05:37 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 706 bytes |
| コンパイル時間 | 1,888 ms |
| コンパイル使用メモリ | 177,072 KB |
| 実行使用メモリ | 22,796 KB |
| 最終ジャッジ日時 | 2024-11-07 08:21:21 |
| 合計ジャッジ時間 | 17,108 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 15 WA * 47 |
ソースコード
#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;
int n = N;
while ((int)q.size() < N) {
map<int, int>::iterator it = m.begin();
if (it->second == n - 1)
it++;
int x = it->second;
map<int, int>::iterator it2 = p.find(x);
it2++;
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);
if (y == n-1) n -= 2;
}
rep(i, N)
cout << q[i] << " ";
cout << endl;
return 0;
}