結果
問題 | No.1374 Absolute Game |
ユーザー | HIcoder |
提出日時 | 2023-07-19 23:46:28 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 823 bytes |
コンパイル時間 | 993 ms |
コンパイル使用メモリ | 112,976 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-19 21:48:41 |
合計ジャッジ時間 | 2,598 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | WA | - |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | AC | 15 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 26 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 49 ms
5,376 KB |
testcase_16 | WA | - |
testcase_17 | AC | 46 ms
5,376 KB |
testcase_18 | WA | - |
testcase_19 | AC | 46 ms
5,376 KB |
testcase_20 | AC | 18 ms
5,376 KB |
testcase_21 | AC | 24 ms
5,376 KB |
testcase_22 | AC | 46 ms
5,376 KB |
testcase_23 | AC | 6 ms
5,376 KB |
testcase_24 | WA | - |
testcase_25 | AC | 9 ms
5,376 KB |
testcase_26 | AC | 15 ms
5,376 KB |
testcase_27 | WA | - |
ソースコード
#include<iostream> #include<set> #include<algorithm> #include<vector> #include<string> #include<set> #include<map> #include<numeric> #include<queue> #include<cmath> #include <unordered_set> #include<cassert> using namespace std; typedef long long ll; const ll INF=1LL<<60; typedef pair<ll,int> P; typedef pair<int,P> PP; const ll MOD=1e9+7; int main(){ int N; cin>>N; vector<ll> c(N); for(int i=0;i<N;i++){ cin>>c[i]; } ll ans=-INF; for(int t=0;t<2;t++){ sort(c.begin(),c.end()); vector<ll> sum(2,0); for(int i=0;i<N;i++){ sum[i%2]+=c[i]; } //ll d=sum[0] - sum[1];//abs(sum[0]) - abs(sum[1]); ll d=abs(sum[0]) - abs(sum[1]); ans=max(ans,d); reverse(c.begin(),c.end()); } cout<<ans<<endl; }