結果
| 問題 |
No.345 最小チワワ問題
|
| コンテスト | |
| ユーザー |
kaito_tateyama
|
| 提出日時 | 2017-08-12 22:49:10 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 2,000 ms |
| コード長 | 795 bytes |
| コンパイル時間 | 598 ms |
| コンパイル使用メモリ | 72,488 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-09-25 12:02:44 |
| 合計ジャッジ時間 | 1,520 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 29 |
ソースコード
#include <iostream>
#include <fstream>
#include <vector>
#include <string>
#include <algorithm>
//---------------------------
using namespace std;
//---------------------------
#define REP(i,n) for(int i = 0; i < (n); i++)
#define P(x) cout << (x) << "\n"
//---------------------------
int main(){
std::ios::sync_with_stdio(false);
std::cin.tie(0);
string s;cin >> s;
int n = s.size();
int ans = 101;
for (int i = 0; i < n; i++) {
if (s[i] == 'c') {
for (int j = i+1; j < n; j++) {
if (s[j] == 'w') {
for (int k = j+1; k < n; k++) {
if (s[k] == 'w') {
ans = min(k-i+1,ans);
}
}
}
}
}
}
if (ans == 101) {
cout << -1 << "\n";
}else{
cout << ans << "\n";
}
return 0;
}
kaito_tateyama