結果
問題 | No.1247 ブロック登り |
ユーザー | 👑 emthrm |
提出日時 | 2020-10-02 23:11:31 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,203 bytes |
コンパイル時間 | 2,155 ms |
コンパイル使用メモリ | 213,968 KB |
実行使用メモリ | 330,752 KB |
最終ジャッジ日時 | 2024-07-17 23:29:49 |
合計ジャッジ時間 | 13,504 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | WA | - |
testcase_07 | AC | 5 ms
6,944 KB |
testcase_08 | AC | 5 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 3 ms
6,940 KB |
testcase_11 | AC | 861 ms
330,624 KB |
testcase_12 | AC | 790 ms
313,728 KB |
testcase_13 | AC | 844 ms
330,624 KB |
testcase_14 | AC | 807 ms
330,624 KB |
testcase_15 | AC | 863 ms
330,496 KB |
testcase_16 | AC | 822 ms
330,624 KB |
testcase_17 | AC | 860 ms
330,624 KB |
testcase_18 | AC | 791 ms
299,392 KB |
testcase_19 | AC | 115 ms
60,288 KB |
testcase_20 | AC | 49 ms
30,848 KB |
testcase_21 | WA | - |
testcase_22 | AC | 9 ms
8,832 KB |
testcase_23 | AC | 7 ms
7,424 KB |
testcase_24 | AC | 2 ms
6,944 KB |
testcase_25 | AC | 887 ms
330,752 KB |
testcase_26 | AC | 813 ms
330,624 KB |
testcase_27 | AC | 844 ms
330,624 KB |
testcase_28 | AC | 806 ms
330,624 KB |
ソースコード
#define _USE_MATH_DEFINES #include <bits/stdc++.h> using namespace std; #define FOR(i,m,n) for(int i=(m);i<(n);++i) #define REP(i,n) FOR(i,0,n) #define ALL(v) (v).begin(),(v).end() using ll = long long; constexpr int INF = 0x3f3f3f3f; constexpr ll LINF = 0x3f3f3f3f3f3f3f3fLL; constexpr double EPS = 1e-8; constexpr int MOD = 1000000007; // constexpr int MOD = 998244353; constexpr int dy[] = {1, 0, -1, 0}, dx[] = {0, -1, 0, 1}; constexpr int dy8[] = {1, 1, 0, -1, -1, -1, 0, 1}, dx8[] = {0, -1, -1, -1, 0, 1, 1, 1}; template <typename T, typename U> inline bool chmax(T &a, U b) { return a < b ? (a = b, true) : false; } template <typename T, typename U> inline bool chmin(T &a, U b) { return a > b ? (a = b, true) : false; } struct IOSetup { IOSetup() { cin.tie(nullptr); ios_base::sync_with_stdio(false); cout << fixed << setprecision(20); } } iosetup; int main() { int n, k; cin >> n >> k; vector<int> a(n); REP(i, n) cin >> a[i]; if (k == 1) { cout << *max_element(ALL(a)) << '\n'; return 0; } vector dp(2, vector(n, vector(n, vector(k, -INF)))); REP(i, n - 1) { dp[false][i][i + 1][k - 1] = a[i] * (k - 1) + a[i + 1] * k; dp[true][i][i + 1][k - 1] = a[i] * k + a[i + 1] * (k - 1); } for (int h = k - 1; h > 1; --h) { REP(l, n) FOR(r, l + 1, n) { if (l > 0) chmax(dp[false][l - 1][r][h - 1], dp[false][l][r][h] + a[l - 1] * (h - 1)); if (r + 1 < n) chmax(dp[true][l][r + 1][h - 1], dp[true][l][r][h] + a[r + 1] * (h - 1)); if (h - (r - l) >= 1) { chmax(dp[true][l][r][h - (r - l)], dp[false][l][r][h]); chmax(dp[false][l][r][h - (r - l)], dp[true][l][r][h]); } if (h >= 3) { chmax(dp[false][l][r][h - 2], dp[false][l][r][h]); chmax(dp[true][l][r][h - 2], dp[true][l][r][h]); } } } vector<int> score(n, -INF); REP(i, n) { REP(l, i + 1) FOR(r, i, n) { if (i - l + 1 < k) chmax(score[i], dp[false][l][r][i - l + 1]); if (r - i + 1 < k) chmax(score[i], dp[true][l][r][r - i + 1]); } } REP(i, n) { int ans = -INF; if (i > 0) chmax(ans, score[i - 1]); if (i + 1 < n) chmax(ans, score[i + 1]); cout << ans << '\n'; } return 0; }