結果

問題 No.190 Dry Wet Moist
ユーザー latte0119latte0119
提出日時 2016-02-27 14:16:31
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,524 bytes
コンパイル時間 2,210 ms
コンパイル使用メモリ 174,136 KB
実行使用メモリ 27,092 KB
最終ジャッジ日時 2023-10-24 18:32:41
合計ジャッジ時間 6,450 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 1 ms
4,348 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 1 ms
4,348 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 401 ms
19,988 KB
testcase_23 AC 489 ms
27,092 KB
testcase_24 AC 400 ms
20,004 KB
testcase_25 WA -
testcase_26 AC 2 ms
4,348 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define int long long

typedef long long ll;
typedef pair<int,int>pint;
typedef vector<int>vint;
typedef vector<pint>vpint;
#define pb push_back
#define mp make_pair
#define fi first
#define se second
#define all(v) (v).begin(),(v).end()
#define rep(i,n) for(int i=0;i<(n);i++)
#define reps(i,f,n) for(int i=(f);i<(n);i++)
#define each(it,v) for(__typeof((v).begin()) it=(v).begin();it!=(v).end();it++)
template<class T,class U>inline void chmin(T &t,U f){if(t>f)t=f;}
template<class T,class U>inline void chmax(T &t,U f){if(t<f)t=f;}

int N;
int A[200000];

signed main(){
    cin>>N;
    map<int,int>cnt;
    rep(i,2*N)cin>>A[i],cnt[A[i]]++;
    int D=0,W=0,M=0;

    each(it,cnt){
        if(it->fi<0)continue;
        if(!cnt.count(-it->fi))continue;
        M+=min(it->se,cnt[-it->se]);
    }

    multiset<int>s;
    rep(i,2*N)s.insert(A[i]);
    while(s.size()>=2){
        int tmp=*s.rbegin();
        auto it=s.rbegin();
        s.erase((++it).base());
        while(s.size()&&*s.begin()+tmp<=0)s.erase(*s.begin());
        if(s.size()){
            W++;
            s.erase(s.begin());
        }
    }

    s.clear();
    rep(i,2*N)s.insert(A[i]);
    while(s.size()>=2){
        int tmp=*s.begin();
        s.erase(s.begin());
        while(s.size()&&*s.rbegin()+tmp>=0)s.erase(*s.rbegin());
        if(s.size()){
            D++;
            auto it=s.rbegin();
            s.erase((++it).base());
        }
    }

    cout<<D<<" "<<W<<" "<<M<<endl;
    return 0;
}
0