結果
問題 | No.252 "良問"(良問とは言っていない (2) |
ユーザー | face4 |
提出日時 | 2019-12-22 17:57:36 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 425 ms / 2,000 ms |
コード長 | 900 bytes |
コンパイル時間 | 736 ms |
コンパイル使用メモリ | 76,228 KB |
実行使用メモリ | 54,964 KB |
最終ジャッジ日時 | 2024-09-14 13:23:07 |
合計ジャッジ時間 | 4,253 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 218 ms
5,248 KB |
testcase_01 | AC | 171 ms
5,376 KB |
testcase_02 | AC | 357 ms
13,508 KB |
testcase_03 | AC | 425 ms
54,928 KB |
testcase_04 | AC | 425 ms
54,964 KB |
testcase_05 | AC | 420 ms
54,928 KB |
testcase_06 | AC | 2 ms
5,376 KB |
ソースコード
#include<iostream> #include<vector> #include<set> using namespace std; int main(){ int t; cin >> t; while(t--){ string s; cin >> s; multiset<int> cnt; int n = s.length(); vector<int> pro(n, 0); for(int i = 4; i+7 <= n; i++){ int diff = 0; for(int j = 0; j < 7; j++) diff += "problem"[j]!=s[i+j]; pro[i] = diff; cnt.insert(diff); } int ret = 11, tmp = 0; for(int i = 0; i+11 <= n; i++){ string g = s.substr(i,4); int diff = 0; for(int j = 0; j < 4; j++) diff += "good"[j]!=s[i+j]; ret = min(ret, tmp+diff+(*cnt.begin())); cnt.erase(cnt.find(pro[i+4])); if(i >= 6){ if(s.substr(i-6,7)=="problem") tmp++; } } cout << ret << endl; } return 0; }