結果
問題 | No.1374 Absolute Game |
ユーザー | shu8Cream |
提出日時 | 2021-02-05 23:20:45 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 987 bytes |
コンパイル時間 | 2,103 ms |
コンパイル使用メモリ | 205,692 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-02 14:32:23 |
合計ジャッジ時間 | 3,325 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
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 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
ソースコード
/** * author: shu8Cream * created: 05.02.2021 22:59:15 **/ #include <bits/stdc++.h> using namespace std; #define rep(i,n) for (int i=0; i<(n); i++) #define all(x) (x).begin(), (x).end() using ll = long long; using P = pair<int,int>; using vi = vector<int>; using vvi = vector<vi>; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int n; cin >> n; vector<ll> c(n); rep(i,n) cin >> c[i]; sort(all(c)); ll ans = 0; if(n%2==0){ ll a = 0, b = 0; rep(i,n/2){ a+=c[i]; b+=c[i+n/2]; } ans=abs(abs(a)-abs(b)); }else{ ll a = 0, b = 0; rep(i,n/2+1){ a+=c[i]; b+=c[i+n/2]; } //cout << a << " " << b << endl; ll tmp = abs(a)-abs(b-c[n/2]); ans=max(tmp, abs(b)-abs(a-c[n/2])); //cout << abs(a)-abs(b-c[n/2]) << endl; //cout << abs(b)-abs(a-c[n/2]) << endl; } cout << ans << endl; }