結果

問題 No.345 最小チワワ問題
ユーザー alpha_virginis
提出日時 2016-02-26 22:25:45
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 856 bytes
コンパイル時間 690 ms
コンパイル使用メモリ 67,776 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-25 11:23:19
合計ジャッジ時間 1,556 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstring>
#include <iostream>
#include <vector>
#include <string>
#include <map>
#include <queue>
#include <algorithm>

int main() {

  std::string str;
  std::cin >> str;

  int res = 10000;
  for(int begin = 0; begin < (int)str.size(); ++begin) {
    for(int end = begin + 1; end < (int)str.size(); ++end) {
      int flag = 0;
      for(int i = begin; i <= end; ++i) {
        if( flag == 0 and str[i] == 'c' ) {
          flag += 1;
          continue;
        }
        if( flag == 1 and str[i] == 'w' ) {
          flag += 1;
          continue;
        }
        if( flag == 2 and str[i] == 'w' ) {
          res = std::min(res, end - begin + 1);
          goto label_1;
        }
      }
    label_1:;
    }
  }

  if( res != 10000 ) {
    std::cout << res << std::endl;
  }
  else {
    std::cout << -1 << std::endl;
  }
  
  return 0;
}
0