結果
問題 | No.150 "良問"(良問とは言っていない |
ユーザー | ei1333333 |
提出日時 | 2016-02-25 18:21:07 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 969 bytes |
コンパイル時間 | 1,313 ms |
コンパイル使用メモリ | 159,444 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-11 02:00:02 |
合計ジャッジ時間 | 2,089 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 1 ms
5,248 KB |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | AC | 2 ms
5,248 KB |
testcase_20 | AC | 2 ms
5,248 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; const int INF = 1 << 30; const string temp[] = {"good", "problem"}; int unmatch[2][100]; bool late[100]; int main() { int K; cin >> K; while(K--) { string S; cin >> S; for(int j = 0; j < 2; j++) { for(int i = 0; i <= S.size() - temp[j].size(); i++) { unmatch[j][i] = 0; for(int k = 0; k < temp[j].size(); k++) { unmatch[j][i] += S[i + k] != temp[j][k]; } late[i] = unmatch[j][i] == 0; } } for(int i = 1; i <= S.size() - temp[0].size(); i++) { unmatch[0][i] = min(unmatch[0][i - 1], unmatch[0][i]); } for(int i = S.size() - temp[1].size() - 1; i >= 0; i--) { unmatch[1][i] = min(unmatch[1][i + 1], unmatch[1][i]); } int ret = INF; for(int i = 0; i + temp[0].size() <= S.size() - temp[1].size() ; i++) { ret = min(ret, unmatch[0][i] + unmatch[1][i + temp[0].size()]); } cout << ret << endl; } }