結果
問題 | No.1374 Absolute Game |
ユーザー | vjudge1 |
提出日時 | 2024-10-19 01:32:25 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,336 bytes |
コンパイル時間 | 2,439 ms |
コンパイル使用メモリ | 204,876 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-19 01:32:30 |
合計ジャッジ時間 | 4,558 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 1 ms
6,816 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,816 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 | AC | 9 ms
6,820 KB |
testcase_21 | AC | 12 ms
6,820 KB |
testcase_22 | AC | 21 ms
6,816 KB |
testcase_23 | AC | 4 ms
6,816 KB |
testcase_24 | AC | 5 ms
6,820 KB |
testcase_25 | AC | 5 ms
6,816 KB |
testcase_26 | AC | 9 ms
6,816 KB |
testcase_27 | AC | 11 ms
6,820 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define N 100005 typedef long long ll; typedef unsigned long long ull; ll n, a[N], s[2], ans; int main() { #ifndef ONLINE_JUDGE freopen("admin.in", "r", stdin); // freopen("admin.out", "w", stdout); #endif scanf("%lld", &n); for (int i = 1; i <= n; i++) scanf("%lld", a + i); sort(a + 1, a + 1 + n); int l, r, now; if (a[1] < 0) { if (a[2] < 0) { s[0] = s[1] = 0; now = 0; for (int i = 1; i <= n; i++, now ^= 1) s[now] += a[i]; ans = max(ans, abs(s[0]) - abs(s[1])); } if (a[n] >= 0) { s[0] = s[1] = 0; l = 1, r = n, now = 0; while (l <= r) { if (now & 1) s[0] += a[l++]; else s[1] += a[r--]; now ^= 1; } ans = max(ans, abs(s[0]) - abs(s[1])); } } if (a[n] >= 0) { if (a[1] < 0) { s[0] = s[1] = 0; l = 1, r = n, now = 0; while (l <= r) { if (now & 1) s[0] += a[r--]; else s[1] += a[l++]; now ^= 1; } ans = max(ans, abs(s[0]) - abs(s[1])); } if (a[n - 1] >= 0) { s[0] = s[1] = 0; now = 0; for (int i = n; i >= 1; i--, now ^= 1) s[now] += a[i]; ans = max(ans, abs(s[0]) - abs(s[1])); } } printf("%lld", ans); return 0; }