結果
問題 | No.484 収穫 |
ユーザー | sugim48 |
提出日時 | 2017-03-05 04:12:19 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,773 bytes |
コンパイル時間 | 929 ms |
コンパイル使用メモリ | 108,436 KB |
実行使用メモリ | 34,820 KB |
最終ジャッジ日時 | 2024-06-23 02:23:38 |
合計ジャッジ時間 | 23,927 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 8 ms
5,376 KB |
testcase_10 | AC | 8 ms
5,376 KB |
testcase_11 | AC | 8 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 1,743 ms
34,696 KB |
testcase_18 | AC | 1,677 ms
34,696 KB |
testcase_19 | AC | 1,684 ms
34,688 KB |
testcase_20 | AC | 1,680 ms
34,696 KB |
testcase_21 | AC | 1,654 ms
34,696 KB |
testcase_22 | WA | - |
testcase_23 | AC | 1,826 ms
34,700 KB |
ソースコード
#define _USE_MATH_DEFINES #include <algorithm> #include <cstdio> #include <functional> #include <iostream> #include <cfloat> #include <climits> #include <cstdlib> #include <cstring> #include <cmath> #include <map> #include <queue> #include <set> #include <sstream> #include <stack> #include <string> #include <time.h> #include <vector> #include <random> #include <fstream> using namespace std; #define rep(i, N) for (int i = 0; i < N; i++) #define pb push_back typedef long long ll; typedef unsigned long long ull; typedef pair<int, int> i_i; typedef pair<ll, int> ll_i; typedef pair<int, ll> i_ll; typedef pair<double, int> d_i; typedef pair<ll, ll> ll_ll; typedef pair<double, double> d_d; struct edge { int v; ll w; }; const int MOD = 1000000007; const int _MOD = 1000000009; double EPS = 1e-10; const int INF = INT_MAX / 10; int main() { int N; cin >> N; vector<int> a(N); rep(i, N) cin >> a[i]; if (N == 1) { cout << a[0] << endl; return 0; } int lb = -1, ub = 1010000000; while (ub - lb > 1) { int mid = (lb + ub) / 2; vector<vector<int> > dpl(N + 1, vector<int>(N + 1, INF)), dpr = dpl; rep(i, N) dpl[i][i + 1] = dpr[i][i + 1] = 0; bool ok = false; for (int d = 1; d <= N; d++) for (int l = 0; l + d <= N; l++) { int r = l + d; if (mid - dpl[l][r] >= a[l]) { if (d == N) ok = true; if (l - 1 >= 0) dpl[l - 1][r] = min(dpl[l - 1][r], dpl[l][r] + 1); if (r + 1 <= N) dpr[l][r + 1] = min(dpr[l][r + 1], dpl[l][r] + r - l); } if (mid - dpr[l][r] >= a[r - 1]) { if (d == N) ok = true; if (l - 1 >= 0) dpl[l - 1][r] = min(dpl[l - 1][r], dpr[l][r] + r - l); if (r + 1 <= N) dpr[l][r + 1] = min(dpr[l][r + 1], dpr[l][r] + 1); } } if (ok) ub = mid; else lb = mid; } cout << ub << endl; }