結果

問題 No.972 選び方のスコア
ユーザー ゆきのんゆきのん
提出日時 2020-10-19 05:05:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,738 bytes
コンパイル時間 1,648 ms
コンパイル使用メモリ 173,980 KB
実行使用メモリ 4,932 KB
最終ジャッジ日時 2023-09-28 13:09:36
合計ジャッジ時間 5,740 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
4,744 KB
testcase_01 AC 95 ms
4,628 KB
testcase_02 AC 91 ms
4,620 KB
testcase_03 AC 44 ms
4,376 KB
testcase_04 AC 87 ms
4,632 KB
testcase_05 AC 87 ms
4,620 KB
testcase_06 AC 87 ms
4,684 KB
testcase_07 AC 72 ms
4,380 KB
testcase_08 AC 78 ms
4,572 KB
testcase_09 AC 75 ms
4,828 KB
testcase_10 AC 79 ms
4,684 KB
testcase_11 AC 84 ms
4,572 KB
testcase_12 AC 85 ms
4,632 KB
testcase_13 AC 85 ms
4,632 KB
testcase_14 AC 84 ms
4,568 KB
testcase_15 AC 84 ms
4,680 KB
testcase_16 AC 86 ms
4,852 KB
testcase_17 AC 85 ms
4,652 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 1 ms
4,376 KB
testcase_26 AC 1 ms
4,376 KB
testcase_27 AC 2 ms
4,376 KB
testcase_28 AC 2 ms
4,380 KB
testcase_29 AC 2 ms
4,376 KB
testcase_30 AC 1 ms
4,376 KB
testcase_31 AC 1 ms
4,376 KB
testcase_32 AC 1 ms
4,380 KB
testcase_33 AC 1 ms
4,384 KB
testcase_34 AC 1 ms
4,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: 関数 ‘int main()’ 内:
main.cpp:56:23: 警告: ‘l’ may be used uninitialized [-Wmaybe-uninitialized]
   56 |             ll m = (l + r) / 2;
      |                    ~~~^~~~
main.cpp:33:8: 備考: ‘l’ はここで定義されています
   33 |     ll l, r;
      |        ^

ソースコード

diff #

#include<bits/stdc++.h>
//#include<atcoder/all>
using namespace std;
//using namespace atcoder;
#define fs first
#define sc second
#define pb push_back
#define mp make_pair
#define eb emplace_back
#define ALL(A) A.begin(),A.end()
#define RALL(A) A.rbegin(),A.rend()
typedef long long ll;
typedef pair<ll,ll> P;
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
template<typename T> T gcd(T a,T b){return b?gcd(b,a%b):a;}
const ll mod=1000000007;
const ll LINF=1ll<<60;
const int INF=1<<30;
int dx[]={1,0,-1,0,1,-1,1,-1};
int dy[]={0,1,0,-1,1,-1,-1,1};


int main(){
    int n;cin >> n;
    vector<ll> a(n);
    for (int i = 0; i < n; i++) {
        cin >> a[i];
    }
    sort(ALL(a));
    ll ans = 0;
    ll sum = 0;
    ll l, r;
    for (int i = 0; i < n; i++) {
        if(i % 2){
            sum += a[n - i/2 - 1];
            r = a[n - i/2 - 1];
            ll m = (l + r) / 2;
            ll sc = sum - (i + 1) * m;
            chmax(ans, sc);
        }
        else{
            sum += a[i/2];
            l = a[i/2];
            ll m = l;
            ll sc = sum - (i + 1) * m;
            chmax(ans, sc);
        }
    }
    sort(RALL(a));
    sum = 0;
    for (int i = 0; i < n; i++) {
        if(i % 2){
            sum += a[n - i/2 - 1];
            r = a[n - i/2 - 1];
            ll m = (l + r) / 2;
            ll sc = sum - (i + 1) * m;
            chmax(ans, sc);
        }
        else{
            sum += a[i/2];
            l = a[i/2];
            ll m = l;
            ll sc = sum - (i + 1) * m;
            chmax(ans, sc);
        }
    }
    cout << ans << endl;
    return 0;
}
0