結果

問題 No.345 最小チワワ問題
ユーザー aitdccdaitdccd
提出日時 2018-01-01 18:33:25
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 561 bytes
コンパイル時間 1,504 ms
コンパイル使用メモリ 169,524 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-25 12:08:07
合計ジャッジ時間 2,348 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define REP(i, n) for(int i = 0; i < n; i++)

int main() {
    string s;
    cin >> s;
    vector<int> c, w;
    REP(i, s.length()) {
        if (s[i] == 'c') c.push_back(i);
        if (s[i] == 'w') w.push_back(i);
    }
    int ans = INT_MAX;
    REP(i, int(c.size())) {
        REP(j, int(w.size()) - 1) {
            if (w[j] > c[i]) {
                ans = min(ans, w[j + 1] - c[i] + 1);
                break;
            }
        }
    }
    cout << ((ans == INT_MAX) ? -1 : ans) << endl;
    return 0;
}
0