結果

問題 No.346 チワワ数え上げ問題
ユーザー めうめう🎒めうめう🎒
提出日時 2016-10-21 00:58:12
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 12 ms / 2,000 ms
コード長 893 bytes
コンパイル時間 488 ms
コンパイル使用メモリ 73,568 KB
実行使用メモリ 13,824 KB
最終ジャッジ日時 2024-05-02 21:13:27
合計ジャッジ時間 1,722 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,296 KB
testcase_01 AC 4 ms
7,424 KB
testcase_02 AC 4 ms
7,296 KB
testcase_03 AC 3 ms
7,424 KB
testcase_04 AC 3 ms
7,424 KB
testcase_05 AC 3 ms
7,424 KB
testcase_06 AC 4 ms
7,424 KB
testcase_07 AC 4 ms
7,424 KB
testcase_08 AC 3 ms
7,296 KB
testcase_09 AC 4 ms
7,424 KB
testcase_10 AC 12 ms
13,696 KB
testcase_11 AC 8 ms
11,008 KB
testcase_12 AC 9 ms
12,160 KB
testcase_13 AC 7 ms
10,752 KB
testcase_14 AC 4 ms
7,680 KB
testcase_15 AC 9 ms
12,032 KB
testcase_16 AC 10 ms
12,672 KB
testcase_17 AC 11 ms
13,696 KB
testcase_18 AC 11 ms
13,824 KB
testcase_19 AC 9 ms
12,928 KB
testcase_20 AC 10 ms
13,824 KB
testcase_21 AC 11 ms
13,824 KB
testcase_22 AC 11 ms
13,824 KB
testcase_23 AC 3 ms
7,296 KB
testcase_24 AC 4 ms
7,296 KB
testcase_25 AC 4 ms
7,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cstdio>
#include <iostream>
#include <map>
#include <math.h>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <vector>
using namespace std;

#define ll long long
#define INF (1 << 30)
#define INFLL (1LL << 60)

string str;
ll memo[100010][5] = {};

ll dp(int now, int check){
	ll count = 0;

	if(check == 3) return 1;
	if(now == str.size()) return 0;
	if(memo[now][check] != INFLL) return memo[now][check];

	if(check == 0){
		if(str[now] == 'c'){
			count += dp(now + 1, check + 1);
		}
	}else if(check == 1 || check == 2){
		if(str[now] == 'w'){
			count += dp(now + 1, check + 1);
		}
	}

	count += dp(now + 1,check);

	return memo[now][check] = count;
}

int main() {
	for(int i = 0;i < 100010;i++){
		for(int j = 0;j < 5;j++){
			memo[i][j] = INFLL;
		}
	}

	cin >> str;

	cout << dp(0, 0) << endl;
	return 0;
}
0