結果
問題 | No.1405 ジグザグロボット |
ユーザー | SSRS |
提出日時 | 2020-12-11 22:29:18 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,676 bytes |
コンパイル時間 | 2,080 ms |
コンパイル使用メモリ | 177,112 KB |
実行使用メモリ | 40,960 KB |
最終ジャッジ日時 | 2024-09-16 23:32:29 |
合計ジャッジ時間 | 26,425 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,752 KB |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 251 ms
6,144 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 262 ms
6,272 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 282 ms
6,400 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | TLE | - |
testcase_32 | TLE | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | TLE | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; const int INF = 1000000; int main(){ int N, X, Y; cin >> N >> X >> Y; string S; cin >> S; vector<string> T(1); for (int i = 0; i < N; i++){ if (S[i] == 'S'){ T.push_back(""); } else { T.back() += S[i]; } } int M = T.size(); if (Y >= M){ cout << -1 << endl; } else { vector<vector<int>> a(M + 1, vector<int>(M + 1, 0)); for (int i = 0; i < M; i++){ for (int j = i + 1; j <= M; j++){ for (int k = i; k < j; k++){ int sz = T[k].size(); for (int l = 0; l < sz; l++){ if (T[k][l] == 'L'){ a[i][j]--; } else { a[i][j]++; } a[i][j] = max(a[i][j], 0); } } } } vector<vector<int>> dp(Y + 2, vector<int>(M + 1, -INF)); dp[0][0] = 0; for (int i = 0; i <= Y; i++){ for (int j = 0; j < M; j++){ for (int k = j + 1; k <= M; k++){ dp[i + 1][k] = max(dp[i + 1][k], dp[i][j] + a[j][k]); } } } if (dp[Y + 1][M] < X){ cout << -1 << endl; } else { for (int i = 0; i < Y + 2; i++){ for (int j = 0; j <= M; j++){ cout << dp[i][j] << ' '; } cout << endl; } //DP復元 vector<int> P(Y + 2); P[Y + 1] = M; for (int i = Y; i >= 0; i--){ for (int j = 0; j < P[i + 1]; j++){ if (dp[i + 1][P[i + 1]] == dp[i][j] + a[j][P[i + 1]]){ P[i] = j; break; } } } for (int i = 0; i < Y + 2; i++){ cout << P[i] << ' '; } cout << endl; } } }