結果

問題 No.150 "良問"(良問とは言っていない
ユーザー nenuonnenuon
提出日時 2017-06-29 13:59:34
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 6 ms / 5,000 ms
コード長 885 bytes
コンパイル時間 1,393 ms
コンパイル使用メモリ 89,424 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-11 02:11:28
合計ジャッジ時間 1,626 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cstdio>
#include <iostream>
#include <map>
#include <cmath>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <vector>
#include <stdlib.h>
#include <stdio.h>
#include <bitset>
using namespace std;
#define FOR(I,A,B) for(int I = (A); I < (B); ++I)
typedef long long ll;

int main(){
  int t;
  cin >> t;
  while (t--) {
    string s;
    cin >> s;
    int len = s.length();
    string good = "good";
    string problem = "problem";
    int ans = 1111;
    for (int i = 0; i + 10 <= len - 1; i++) {
      int g = 0;
      FOR (k,0,4) {
        if (s[k+i] != good[k]) g++;
      }
      for (int j = i + 4; j + 6 <= len - 1; j++) {
        int p = 0;
        FOR (k,0,7) {
          if (s[k+j] != problem[k]) p++;
        }
        ans = min(ans, g + p);
      }
    }
    cout << ans << endl;
  }
  return 0;
}
0