问题标题: 酷町堂:2466 Memory Limit Exceeded

0
0
已解决
周天睿
周天睿
初级光能
初级光能
#include<iostream>
#include<string>
using namespace std;
int f(int n)
{
    if(n==1||n==2) 
        return n;
    return f(n-1)+f(n-3);
}
int main()
{
    int n;
    cin>>n;
    cout<<f(n);
    return 0;
}

哪里错了?

生平第一次MLE


0
已采纳
童梦圆
童梦圆
资深守护
资深守护

改为

就AC了!!!

求采纳!!!

0
0
我要回答