結果
問題 |
No.2740 Old Maid
|
ユーザー |
|
提出日時 | 2024-04-24 20:57:55 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 628 bytes |
コンパイル時間 | 1,968 ms |
コンパイル使用メモリ | 177,296 KB |
実行使用メモリ | 32,512 KB |
最終ジャッジ日時 | 2024-11-07 05:59:36 |
合計ジャッジ時間 | 12,003 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | -- * 3 |
other | TLE * 1 -- * 61 |
ソースコード
#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; int y = x + 1; while (m.find(p[y]) == m.end()) y++; q.push_back(p[x]); q.push_back(p[y]); m.erase(p[x]); m.erase(p[y]); } rep(i, N) cout << q[i] << " "; cout << endl; return 0; }