文章
20
粉丝
0
获赞
71
访问
4.3k
#include<bits/stdc++.h>
using namespace std;
int n;
int res[100][100];
int f(int x, int y){
// if(x == y){
// cout << "1" << endl;
// return 1;
// }
if(y == 1 || x == y){
// cout << "1 ";
// if(x == y){
// cout << endl;
// }
return 1;
}else {
if(res[x][y] > 0){
 ...
登录后发布评论
暂无评论,来抢沙发