摘要:
题目链接 题目描述 对于一个递归函数w(a,b,c) 如果a<=0 or b<=0 or c<=0就返回值1. 如果a>20 or b>20 or c>20就返回w(20,20,20) 如果a<b并且b<c 就返回w(a,b,c-1)+w(a,b-1,c-1)-w(a,b-1,c) 其它别的情况就返 阅读全文
摘要:
题目链接 #include <bits/stdc++.h> using namespace std; #define rep(i,s,t) for(int i=s;i<t;i++) #define REP(i,s,t) for(int i=s;i<=t;i++) const int N = 1e3 阅读全文
摘要:
《题目链接》 #include <bits/stdc++.h> using namespace std; #define REP(i,s,t) for(int i=s;i<=t;i++) const int N = 205; struct Node { int x, step; }; queue<N 阅读全文