結果
問題 | No.252 "良問"(良問とは言っていない (2) |
ユーザー | kyuridenamida |
提出日時 | 2015-07-24 22:57:18 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 868 bytes |
コンパイル時間 | 1,355 ms |
コンパイル使用メモリ | 162,304 KB |
実行使用メモリ | 17,040 KB |
最終ジャッジ日時 | 2024-07-08 13:28:15 |
合計ジャッジ時間 | 2,683 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 98 ms
5,248 KB |
testcase_01 | AC | 136 ms
5,376 KB |
testcase_02 | AC | 106 ms
6,032 KB |
testcase_03 | AC | 109 ms
16,992 KB |
testcase_04 | AC | 108 ms
17,040 KB |
testcase_05 | AC | 106 ms
17,036 KB |
testcase_06 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int diff(string a,string b){ int ans = 0; for(int i = 0 ; i < a.size() ; i++) if( a[i] != b[i] ) ans++; return ans; } int f(string s){ vector<int> good(s.size()+10,1e9); vector<int> imos(s.size()+10,0); vector<int> imos2(s.size()+10,0); good[4] = 4; int ans = 11; for(int i = 0 ; i+7 <= s.size() ; i++){ if(i) imos[i] += imos[i-1]; if(i) imos2[i] += imos2[i-1]; if(i) good[i] = min(good[i],good[i-1]); if( s.substr(i,7) == "problem" ) imos[i+7]++; if( s.substr(i,4) == "good" ) imos2[i+4]++; good[i+4] = min(good[i+4],imos2[i] + diff(s.substr(i,4),"good")); int need = diff(s.substr(i,7),"problem"); ans = min(ans, need + imos[i] + good[i] ); } return ans; } int main(){ int n; cin >> n; for(int i = 0 ; i < n ; i++){ string s; cin >> s; cout << f(s) << endl; } }