結果

問題 No.345 最小チワワ問題
ユーザー MayimgMayimg
提出日時 2018-12-24 20:38:49
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 474 bytes
コンパイル時間 1,728 ms
コンパイル使用メモリ 166,792 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-01 05:11:16
合計ジャッジ時間 2,250 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main(){
	ios::sync_with_stdio(false);
	cin.tie(0);  
	string s;
	cin >> s;
	int ans = 100000;
	int n = s.size();
	for(int i = 0; i < n; i++) {
		if(s[i] == 'c') {
			int w = 0;
			for(int j = i + 1; j < n; j++) {
				if(s[j] == 'w') w++;
				if(w == 2) {
					ans = min(ans, j - i + 1);
					break;
				}
			}
		}
	}
	if(ans == 100000) cout << -1 << endl;
	else cout << ans << endl;
	return 0;	
}
0