結果
問題 | No.1925 悪鬼三七次元 |
ユーザー | Kude |
提出日時 | 2022-05-03 00:28:05 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,415 bytes |
コンパイル時間 | 2,534 ms |
コンパイル使用メモリ | 227,956 KB |
実行使用メモリ | 6,784 KB |
最終ジャッジ日時 | 2024-07-02 04:29:38 |
合計ジャッジ時間 | 4,777 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 17 ms
6,656 KB |
testcase_04 | AC | 18 ms
6,784 KB |
testcase_05 | AC | 17 ms
6,784 KB |
testcase_06 | AC | 16 ms
6,784 KB |
testcase_07 | AC | 17 ms
6,656 KB |
testcase_08 | AC | 16 ms
6,784 KB |
testcase_09 | AC | 17 ms
6,656 KB |
testcase_10 | AC | 17 ms
6,656 KB |
testcase_11 | AC | 17 ms
6,656 KB |
testcase_12 | AC | 17 ms
6,656 KB |
testcase_13 | AC | 17 ms
6,656 KB |
testcase_14 | AC | 17 ms
6,784 KB |
testcase_15 | AC | 17 ms
6,656 KB |
testcase_16 | AC | 17 ms
6,784 KB |
testcase_17 | AC | 16 ms
6,656 KB |
testcase_18 | AC | 16 ms
6,784 KB |
testcase_19 | AC | 16 ms
6,656 KB |
testcase_20 | AC | 17 ms
6,656 KB |
testcase_21 | AC | 16 ms
6,656 KB |
testcase_22 | AC | 16 ms
6,656 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 6 ms
5,376 KB |
testcase_26 | AC | 4 ms
5,376 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 7 ms
5,376 KB |
testcase_30 | WA | - |
testcase_31 | AC | 11 ms
5,376 KB |
testcase_32 | AC | 6 ms
5,376 KB |
testcase_33 | AC | 6 ms
5,376 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | AC | 6 ms
5,376 KB |
testcase_37 | AC | 8 ms
5,376 KB |
testcase_38 | AC | 10 ms
5,376 KB |
testcase_39 | WA | - |
testcase_40 | AC | 13 ms
5,888 KB |
testcase_41 | AC | 11 ms
5,376 KB |
testcase_42 | WA | - |
ソースコード
#include<bits/stdc++.h> namespace { #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wunused-function" #include<atcoder/all> #pragma GCC diagnostic pop using namespace std; using namespace atcoder; #define rep(i,n) for(int i = 0; i < (int)(n); i++) #define rrep(i,n) for(int i = (int)(n) - 1; i >= 0; i--) #define all(x) begin(x), end(x) #define rall(x) rbegin(x), rend(x) template<class T> bool chmax(T& a, const T& b) { if (a < b) { a = b; return true; } else return false; } template<class T> bool chmin(T& a, const T& b) { if (b < a) { a = b; return true; } else return false; } using ll = long long; using P = pair<int,int>; using VI = vector<int>; using VVI = vector<VI>; using VL = vector<ll>; using VVL = vector<VL>; } int main() { ios::sync_with_stdio(false); cin.tie(0); int n; cin >> n; VI a(n); rep(i, n) cin >> a[i]; constexpr ll INF = 1002003004005006007; if (n % 2) { int m = n / 2; ll ans = INF; ll now = accumulate(a.begin(), a.begin() + m, 0LL); rep(i, m + 1) { now += a[i + m]; chmin(ans, now); now -= a[i]; } cout << ans << '\n'; return 0; } int m = n / 2; VL accmf(n + 1, INF), accmb(n + 1, INF), accm1f(n + 1, INF), accm1b(n + 1); { ll now = accumulate(a.begin(), a.begin() + m - 1, 0LL); ll acc = INF; for(int i = 0; i + m - 1 < n; i++) { now += a[i + m - 1]; chmin(acc, now); accmf[i] = acc; now -= a[i]; } } { ll now = accumulate(a.end() - (m - 1), a.end(), 0LL); ll acc = INF; for(int i = n - m; i >= 0; i--) { now += a[i]; chmin(acc, now); accmb[i] = acc; now -= a[i + m - 1]; } } m++; { ll now = accumulate(a.begin(), a.begin() + m - 1, 0LL); ll acc = INF; for(int i = 0; i + m - 1 < n; i++) { now += a[i + m - 1]; chmin(acc, now); accm1f[i] = acc; now -= a[i]; } } { ll now = accumulate(a.end() - (m - 1), a.end(), 0LL); ll acc = INF; for(int i = n - m; i >= 0; i--) { now += a[i]; chmin(acc, now); accm1b[i] = acc; now -= a[i + m - 1]; } } m--; ll ans = 0; for(int i = 0; i < n - 1; i++) { if (i < m - 1) { chmax(ans, min(accm1f[i], accmb[i + 2])); } else if (i == m - 1) { chmax(ans, accm1f[i]); } else { chmax(ans, min(accmf[i - m], accm1b[i - m + 1])); } } cout << ans << '\n'; }