結果
| 問題 | No.345 最小チワワ問題 |
| コンテスト | |
| ユーザー |
nanophoto12
|
| 提出日時 | 2016-02-27 00:45:03 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 940 bytes |
| 記録 | |
| コンパイル時間 | 815 ms |
| コンパイル使用メモリ | 74,172 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-09-25 11:27:38 |
| 合計ジャッジ時間 | 1,903 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 29 |
ソースコード
#include <queue>
#include <algorithm>
#include <vector>
#include <set>
#include <iostream>
#include <numeric>
#include <tuple>
#include <cmath>
using namespace std;
typedef long long int ll;
typedef pair<int, int> pii;
typedef tuple<ll, ll, ll> tiii;
typedef vector<int> vi;
#define REP(i,x) for(int i=0;i<(int)(x);i++)
#define ALL(container) (container).begin(), (container).end()
int main(){
string s;
cin >> s;
vector<int> wPos;
int INF = 10000000;
int minLength = INF;
for(int i = (int)s.length()-1;i >= 0;i--)
{
if(s[i] == 'c')
{
if(wPos.size() >= 2)
{
minLength = min(minLength, wPos[wPos.size()-2] - i + 1);
}
}
else if(s[i] == 'w')
{
wPos.push_back(i);
}
}
if(minLength == INF)
{
cout << -1 << endl;
return 0;
}
cout << minLength << endl;
return 0;
}
nanophoto12