【Codeforces Round #455 (Div. 2) C】 Python Indentation

【链接】 我是链接,点我呀:)
【题意】


在这里输入题意

【题解】


一个for循环之后。
下一个写代码的地方一是从(x+1,y+1)开始的

然后如果写完了一个simple statement
下次就有(x+1,y),(x+1,y-1),(x+1,y-2)..(x+1,0)这些位置可以写下一行的代码了。

写个记忆化搜索就好。
(这里的y就是tab的个数-1)

【代码】

#include <bits/stdc++.h>
#define ll long long
using namespace std;

const int N = 5000;
const ll MOD = 1e9+7;

int n;
char s[5];
vector <char> v;
ll f[N+10][N+10];

ll dfs(int x,int y){
    if (x==n) return 1;
    if (f[x][y]!=-1) return f[x][y];
    ll &ans = f[x][y];
    ans = 0;
    if (v[x]=='f'){
        ans =(ans+ dfs(x+1,y+1))%MOD;
    }else{
        ans =(ans+dfs(x+1,y))%MOD;
        if (y>=2) {
            ans =(ans+dfs(x,y-1))%MOD;
        }
    }
    return ans;
}

int main(){
    #ifdef LOCAL_DEFINE
        freopen("rush_in.txt", "r", stdin);
    #endif
    ios::sync_with_stdio(0),cin.tie(0);
    memset(f,255,sizeof f);
    v.push_back('*');
    cin >> n;
    for (int i = 1;i <= n;i++){
        cin >> s;
        v.push_back(s[0]);
    }
    cout << dfs(1,1) << endl;
    return 0;
}

转载于:https://www.cnblogs.com/AWCXV/p/8134155.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值