結果
問題 | No.1247 ブロック登り |
ユーザー | mkawa2 |
提出日時 | 2021-08-19 00:18:37 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 398 ms / 3,000 ms |
コード長 | 1,506 bytes |
コンパイル時間 | 2,099 ms |
コンパイル使用メモリ | 205,220 KB |
実行使用メモリ | 225,184 KB |
最終ジャッジ日時 | 2024-10-11 22:27:18 |
合計ジャッジ時間 | 9,543 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 84 ms
225,084 KB |
testcase_01 | AC | 85 ms
225,044 KB |
testcase_02 | AC | 84 ms
225,176 KB |
testcase_03 | AC | 83 ms
225,048 KB |
testcase_04 | AC | 85 ms
225,060 KB |
testcase_05 | AC | 84 ms
224,960 KB |
testcase_06 | AC | 83 ms
225,016 KB |
testcase_07 | AC | 86 ms
224,980 KB |
testcase_08 | AC | 85 ms
225,084 KB |
testcase_09 | AC | 85 ms
225,060 KB |
testcase_10 | AC | 86 ms
225,112 KB |
testcase_11 | AC | 398 ms
225,100 KB |
testcase_12 | AC | 386 ms
225,116 KB |
testcase_13 | AC | 395 ms
224,860 KB |
testcase_14 | AC | 393 ms
225,044 KB |
testcase_15 | AC | 394 ms
224,968 KB |
testcase_16 | AC | 391 ms
224,972 KB |
testcase_17 | AC | 390 ms
224,980 KB |
testcase_18 | AC | 363 ms
225,020 KB |
testcase_19 | AC | 101 ms
225,112 KB |
testcase_20 | AC | 88 ms
225,112 KB |
testcase_21 | AC | 85 ms
225,040 KB |
testcase_22 | AC | 92 ms
224,992 KB |
testcase_23 | AC | 88 ms
225,024 KB |
testcase_24 | AC | 85 ms
225,100 KB |
testcase_25 | AC | 398 ms
225,116 KB |
testcase_26 | AC | 389 ms
225,184 KB |
testcase_27 | AC | 393 ms
225,056 KB |
testcase_28 | AC | 396 ms
224,968 KB |
ソースコード
// #include <atcoder/all> // using namespace atcoder; #include <bits/stdc++.h> using namespace std; #define rep(i, n) for (int i = 0; i < (n); i++) #define all(x) (x).begin(), (x).end() using ll = long long; using pii = pair<int, int>; using pll = pair<ll, ll>; using vi = vector<int>; using vll = vector<ll>; using vvi = vector<vector<int>>; const int inf = 1e9; const ll lim = 1e18; int dx[] = {1, 1, 0, -1, -1, -1, 0, 1}; int dy[] = {0, 1, 1, 1, 0, -1, -1, -1}; int dp[305][2][305][305]; void chmax(int &a, const int &b) { a = max(a, b); } int main() { cin.tie(0); ios::sync_with_stdio(false); rep(i, 305) rep(j, 2) rep(k, 305) rep(l, 305) dp[i][j][k][l] = -inf; int n, k, d; cin >> n >> k; vi a(n); rep(i, n) cin >> a[i]; rep(i, n) dp[k][0][i][i] = a[i] * k; vi ans(n, -inf); for (int i = k; i >= 0; i--) { rep(j, 2) { rep(l, n) { for (int r = l; r < n; r++) { int pre = dp[i][j][l][r]; if (pre == -inf) continue; int p = j ? r - i : l + i; if (l <= p && p <= r) chmax(ans[p], pre); if (i - 2 >= 0 && l != r) chmax(dp[i - 2][j][l][r], pre); d = j ? r - l + 1 : 1; if (l - 1 >= 0 && i - d >= 0) chmax(dp[i - d][0][l - 1][r], pre + a[l - 1] * (i - d)); d = j ? 1 : r - l + 1; if (r + 1 < n && i - d >= 0) chmax(dp[i - d][1][l][r + 1], pre + a[r + 1] * (i - d)); } } } } rep(i, n) cout << ans[i] << endl; return 0; }