求助!全TLE!

P1464 Function

Real_Luka_Modric @ 2023-01-20 09:28:55

#include <bits/stdc++.h>
using namespace std;
long long w(int a,int b,int c){
    if(a<=0||b<=0||c<=0)return 1;
    if(a>20||b>20||c>20) return w(20,20,20);
    if(a<b&&b<c)return w(a,b,c-1)+w(a,b-1,c-1)-w(a,b-1,c);
    return w(a-1,b,c)+w(a-1,b-1,c)+w(a-1,b,c-1)-w(a-1,b-1,c-1);
}
long long a,b,c;
int main(){
    while(cin>>a>>b>>c)
    {
        if(a==-1&&b==-1&&c==-1) break;
        cout<<"w("<<a<<","<<b<<","<<c<<") = "<<w(a,b,c)<<endl;
    }
    return 0;
}

by Ja50nY0un9_as_AgNO3 @ 2023-01-20 09:33:47

@Real_Luka_Modric 你需要将每个不同参数对应的函数值存进数组里,如果需要再次使用这个参数的时候就直接从数组里面拿出来用。


by Real_Luka_Modric @ 2023-01-20 09:36:51

@Ja50nY0un9 但题目没有给定数据范围,没法开数组啊?


by Ja50nY0un9_as_AgNO3 @ 2023-01-20 09:39:44

@Real_Luka_Modric 仔细观察,只有 20*20*20 的范围。在递归之前特判一下 a, b, c 的取值。


by Tx1234567 @ 2023-01-22 22:36:42

记忆化搜索


|