結果
問題 | No.1150 シュークリームゲーム(Easy) |
ユーザー | jupiro |
提出日時 | 2020-09-23 03:06:44 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,549 bytes |
コンパイル時間 | 1,259 ms |
コンパイル使用メモリ | 135,940 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-27 04:26:36 |
合計ジャッジ時間 | 4,012 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,948 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
6,944 KB |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 13 ms
6,944 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 13 ms
6,940 KB |
testcase_26 | AC | 14 ms
6,940 KB |
testcase_27 | AC | 14 ms
6,944 KB |
testcase_28 | AC | 15 ms
6,940 KB |
testcase_29 | AC | 13 ms
6,940 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 14 ms
6,944 KB |
testcase_33 | WA | - |
testcase_34 | AC | 14 ms
6,940 KB |
testcase_35 | AC | 15 ms
6,940 KB |
testcase_36 | AC | 15 ms
6,940 KB |
testcase_37 | WA | - |
testcase_38 | AC | 12 ms
6,944 KB |
testcase_39 | AC | 13 ms
6,940 KB |
testcase_40 | AC | 13 ms
6,940 KB |
testcase_41 | WA | - |
testcase_42 | AC | 13 ms
6,944 KB |
testcase_43 | AC | 12 ms
6,944 KB |
testcase_44 | AC | 17 ms
6,940 KB |
ソースコード
#include <iostream> #include <string> #include <sstream> #include <stack> #include <algorithm> #include <cmath> #include <queue> #include <bitset> #include <iomanip> #include <limits> #include <chrono> #include <random> #include <array> #include <unordered_map> #include <functional> #include <complex> #include <numeric> #include <cctype> #include <map> #include <set> #include <cstdlib> #include <bitset> #include <tuple> #include <assert.h> #include <deque> #include <utility> #include <fstream> using namespace std; typedef long long ll; 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) { a = abs(a), b = abs(b); while (b > 0) { tie(a, b) = make_pair(b, a % b); } return a; } //mt19937 rnd(chrono::steady_clock::now().time_since_epoch().count()); constexpr long long INF = 1LL << 60; constexpr int inf = 1000000007; constexpr long long mod = 1000000007LL; //constexpr long long mod = 998244353; constexpr int MAX = 5000000; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int n; cin >> n; int s, t; cin >> s >> t; s--; t--; ll all = 0; vector<ll> a(n); for (int i = 0; i < n; i++) cin >> a[i], all += a[i]; vector<ll> b, c; for (int i = s + 1; i < t; i++) { b.emplace_back(a[i]); } for (int i = (s - 1 + n) % n; i != t; i = (i - 1 + n) % n) { c.emplace_back(a[i]); } if (b.size() % 2 == 0 and c.size() % 2 == 0) { ll X = a[s]; for (int i = 0; i < b.size() / 2; i++) X += b[i]; for (int i = 0; i < c.size() / 2; i++) X += c[i]; ll Y = all - X; cout << X - Y << endl; } else if (b.size() % 2 == 0 and c.size() % 2 == 1) { ll X = a[s]; for (int i = 0; i < b.size() / 2; i++) X += b[i]; for (int i = 0; i < c.size() / 2 + 1; i++) X += c[i]; ll Y = all - X; cout << X - Y << endl; } else if (b.size() % 2 == 1 and c.size() % 2 == 0) { ll X = a[s]; for (int i = 0; i < b.size() / 2 + 1; i++) X += b[i]; for (int i = 0; i < c.size() / 2; i++) X += c[i]; ll Y = all - X; cout << X - Y << endl; } else { ll res = -INF; { ll X = a[s]; for (int i = 0; i < b.size() / 2 + 1; i++) X += b[i]; for (int i = 0; i < c.size() / 2; i++) X += c[i]; ll Y = all - X; chmax(res, X - Y); } { ll X = a[s]; for (int i = 0; i < b.size() / 2; i++) X += b[i]; for (int i = 0; i < c.size() / 2 + 1; i++) X += c[i]; ll Y = all - X; chmax(res, X - Y); } cout << res << endl; } return 0; }