結果
問題 | No.1405 ジグザグロボット |
ユーザー | SSRS |
提出日時 | 2020-12-11 21:58:11 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,152 bytes |
コンパイル時間 | 2,029 ms |
コンパイル使用メモリ | 175,696 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-09-16 23:27:33 |
合計ジャッジ時間 | 9,238 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | RE | - |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | RE | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | RE | - |
testcase_07 | WA | - |
testcase_08 | RE | - |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
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 < k; 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(M + 1, vector<int>(Y + 2, -INF)); for (int i = 0; i < M; i++){ for (int j = 0; j < Y + 2; j++){ for (int k = i + 1; k <= M; k++){ dp[k][j + 1] = min(dp[k][j + 1], dp[i][j] + a[i][k]); } } } if (dp[M][Y + 1] < X){ cout << -1 << endl; } else { assert(false); } } }