結果

問題 No.2835 Take and Flip
ユーザー ttkkggwwttkkggww
提出日時 2024-08-09 21:27:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 626 bytes
コンパイル時間 3,936 ms
コンパイル使用メモリ 268,088 KB
実行使用メモリ 20,260 KB
最終ジャッジ日時 2024-08-09 21:27:24
合計ジャッジ時間 8,965 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,752 KB
testcase_01 AC 2 ms
6,948 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 2 ms
6,944 KB
testcase_06 RE -
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using ll = long long;
ll N;
vector<ll> A;

void solve(){
    set<ll> s;
    for(ll i = 0;i<N;i++){
        s.insert(A[i]);
    }
    ll X=0,Y=0;
    for(ll i = 0;i<N;i++){
        if(i%2==0){
            X += *s.begin();
            s.erase(s.begin());
        }else{
            Y -= *s.rbegin();
            s.erase(prev(s.end()));
        }
    }
    cout<<X-Y<<endl;
}

signed main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cin >> N;
    A.resize(N);
    for(ll i = 0; i < N; i++) cin >> A[i];
    solve();
}
0