結果
問題 | No.1374 Absolute Game |
ユーザー | 沙耶花 |
提出日時 | 2021-02-05 21:36:34 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 718 bytes |
コンパイル時間 | 2,106 ms |
コンパイル使用メモリ | 206,588 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-02 11:47:49 |
合計ジャッジ時間 | 3,884 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 1 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 | - |
ソースコード
#include <stdio.h> #include <bits/stdc++.h> using namespace std; #define rep(i,n) for (int i = 0; i < (n); ++i) #define Inf 1000000001 long long get(deque<long long> c,bool f0,bool f1){ long long a=0,b=0; while(c.size()!=0){ if(f0){ a += c.back(); c.pop_back(); } else{ a += c.front(); c.pop_front(); } if(c.size()==0)break; if(f1){ b += c.back(); c.pop_back(); } else{ b += c.front(); c.pop_front(); } } a = abs(a); b = abs(b); return a-b; } int main(){ int N; cin>>N; deque<long long> c(N); rep(i,N){ cin>>c[i]; } long long ans = max(min(get(c,true,false),get(c,true,true)),min(get(c,false,false),get(c,false,true))); cout<<ans<<endl; return 0; }