結果

問題 No.2740 Old Maid
ユーザー MtSakaMtSaka
提出日時 2024-04-20 10:35:05
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 1,711 bytes
コンパイル時間 2,330 ms
コンパイル使用メモリ 210,732 KB
実行使用メモリ 19,128 KB
最終ジャッジ日時 2024-10-12 06:08:32
合計ジャッジ時間 10,604 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 62
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define overload(a,b,c,d,...) d
#define rep1(a) for(ll _=0;_<(ll)a;++_)
#define rep2(i,a) for(ll i=0;i<(ll)a;++i)
#define rep3(i,a,b) for(ll i=(ll)a;i<(ll)b;++i)
#define rep(...) overload(__VA_ARGS__,rep3,rep2,rep1)(__VA_ARGS__)
#define rrep1(i,a) for(ll i=(ll)a-1;i>=0;--i)
#define rrep2(i,a,b) for(ll i=(ll)b-1;i>=(ll)a;--i)
#define rrep(...) overload(__VA_ARGS__,rrep2,rrep1)(__VA_ARGS__)
#define eb emplace_back
#define pb push_back
#define all(v) (v).begin(),(v).end()
#define rall(v) (v).rbegin(),(v).rend()
#define lb(v,x) (lower_bound(all(v),x)-(v).begin())
#define ub(v,x) (upper_bound(all(v),x)-(v).begin())
using namespace std;
using ll=long long;
using vl=vector<ll>;
using ld=long double;
using i128=__int128_t;
template<typename T,typename U>inline static constexpr bool chmin(T&a,const U&b){return (a>b?a=b,true:false);}
template<typename T,typename U>inline static constexpr bool chmax(T&a,const U&b){return (a<b?a=b,true:false);}
static constexpr ll inf=numeric_limits<ll>::max()/2;
struct IOSetup{IOSetup(){ios::sync_with_stdio(false);cin.tie(nullptr);}};
static constexpr ll mod=998244353;
ll fac(ll n){return (n==0?1:fac(n-1)*n);}
int main(){
    ll n;cin>>n;
    vl p(n);for(auto&&e:p)cin>>e;
    vl nxt(n,-1);
    vl bef(n,-1);
    rep(i,n-1)nxt[p[i]-1]=p[i+1]-1;
    rep(i,n-1)bef[p[i+1]-1]=p[i]-1;
    set<ll>st;
    rep(i,n)st.insert(i);
    vl q;
    rep(i,n/2){
        ll a=*st.begin();
        if(nxt[a]==-1)a=*next(st.begin());
        ll b=nxt[a];
        q.eb(a);
        q.eb(b);
        if(bef[a]!=-1)nxt[bef[a]]=nxt[b];
        if(nxt[b]!=-1)bef[nxt[b]]=bef[a];
        st.erase(a);
        st.erase(b);
    }
    rep(i,n)cout<<q[i]+1<<" \n"[i==n-1];
}
0