結果
問題 | No.1536 仕切り直し |
ユーザー | Kude |
提出日時 | 2021-06-06 18:35:45 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 29 ms / 2,000 ms |
コード長 | 1,183 bytes |
コンパイル時間 | 4,102 ms |
コンパイル使用メモリ | 263,912 KB |
実行使用メモリ | 25,856 KB |
最終ジャッジ日時 | 2024-05-04 00:49:16 |
合計ジャッジ時間 | 5,333 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 11 ms
10,240 KB |
testcase_05 | AC | 19 ms
18,304 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 8 ms
8,960 KB |
testcase_09 | AC | 11 ms
11,008 KB |
testcase_10 | AC | 29 ms
25,856 KB |
testcase_11 | AC | 6 ms
6,784 KB |
testcase_12 | AC | 20 ms
18,688 KB |
ソースコード
#include<bits/stdc++.h> #include<atcoder/all> 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) (x).begin(), (x).end() #define rall(x) (x).rbegin(), (x).rend() template<class T> void chmax(T& a, const T& b) {a = max(a, b);} template<class T> void chmin(T& a, const T& b) {a = min(a, b);} 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, m; cin >> n >> m; VL a(n); rep(i, n) cin >> a[i]; constexpr ll INF = 1002003004005006007; VVL dp(n + 1, VL(m + 1, -INF)); dp[0][0] = 0; rep(i, n + 1) rep(j, m + 1) { if (i) chmax(dp[i][j], dp[i - 1][j] + (j & 1 ? -1 : 1) * a[i - 1]); if (j) chmax(dp[i][j], dp[i][j - 1]); } VI ans; int i = n, j = m; while(i || j) { if (i && dp[i][j] == dp[i - 1][j] + (j & 1 ? -1 : 1) * a[i - 1]) i--; if (j && dp[i][j] == dp[i][j - 1]) j--, ans.push_back(i); } rrep(i, m) cout << ans[i] << '\n'; }