結果
問題 | No.252 "良問"(良問とは言っていない (2) |
ユーザー | koba-e964 |
提出日時 | 2017-03-06 15:19:45 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 175 ms / 2,000 ms |
コード長 | 974 bytes |
コンパイル時間 | 642 ms |
コンパイル使用メモリ | 66,344 KB |
実行使用メモリ | 105,788 KB |
最終ジャッジ日時 | 2024-06-23 11:23:32 |
合計ジャッジ時間 | 2,289 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 111 ms
6,816 KB |
testcase_01 | AC | 151 ms
6,944 KB |
testcase_02 | AC | 175 ms
23,716 KB |
testcase_03 | AC | 174 ms
105,752 KB |
testcase_04 | AC | 172 ms
105,716 KB |
testcase_05 | AC | 171 ms
105,788 KB |
testcase_06 | AC | 2 ms
6,944 KB |
ソースコード
#include <algorithm> #include <iostream> #include <string> #include <vector> #define REP(i,s,n) for(int i=(int)(s);i<(int)(n);i++) using namespace std; typedef vector<int> VI; int solve(const string &s) { string pat = "problemgoodproblem"; reverse(pat.begin(), pat.end()); int n = s.length(); int inf = 1e7; vector<VI> dp(n + 1, VI(18, inf)); dp[0][0] = 0; REP(i, 1, n + 1) { REP(j, 0, 18) { int mi = inf; if ((j == 0 || j == 7)) { mi = min(mi, dp[i - 1][j]); } if (j >= 1) { mi = min(mi, dp[i - 1][j - 1] + (s[i - 1] == pat[j - 1] ? 0 : 1)); } if (j == 11) { REP(k, 11, 18) { mi = min(mi, dp[i - 1][k] + (s[i - 1] == pat[k] ? 1 : 0)); } } dp[i][j] = mi; } } int mi = inf; REP(j, 11, 18) { mi = min(mi, dp[n][j]); } return mi; } int main(void){ int t; cin >> t; while (t--) { string s; cin >> s; reverse(s.begin(), s.end()); cout << solve(s) << endl; } }