結果
問題 | No.150 "良問"(良問とは言っていない |
ユーザー |
![]() |
提出日時 | 2015-09-23 08:55:47 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 5 ms / 5,000 ms |
コード長 | 1,072 bytes |
コンパイル時間 | 588 ms |
コンパイル使用メモリ | 81,988 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-11 01:56:42 |
合計ジャッジ時間 | 1,329 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 20 |
ソースコード
#include <iostream> #include <cmath> #include <climits> #include <string> #include <vector> #include <queue> #include <stack> #include <functional> #include <algorithm> #include <sstream> #include <map> #include <set> #include <utility> #define endl '\n' #define ALL(a) (a).begin(),(a).end() #define SZ(a) int((a).size()) #define FOR(i,a,b) for(int i=(a);i<(b);++i) #define RFOR(i,a,b) for (int i=(b)-1;i>=(a);i--) #define REP(i,n) FOR(i,0,n) #define RREP(i,n) for (int i=(n)-1;i>=0;i--) #define DEBUG(x) cout<<#x<<": "<<x<<endl using namespace std; typedef pair<int,int> P; typedef long long int LL; string s[100]; string good="good"; string problem="problem"; int main() { ios::sync_with_stdio(false); cin.tie(0); int t; cin>>t; REP(k,t) cin>>s[k]; int ans; REP(i,t){ ans=10000; REP(j,SZ(s[i])-4-7+1){ int c=0; REP(k,4){ if(s[i][j+k]!=good[k]){ c++; } } FOR(k,j+4,SZ(s[i])-7+1){ int t=0; REP(l,7){ if(s[i][k+l]!=problem[l]){ t++; } } ans=min(ans,c+t); } } cout<<ans<<endl; } return 0; }