摘要:
include <bits/stdc++.h> using namespace std; int max(int a[100],int n){ int t; if(n==1) t=a[1]; else if(max(a,n-1)>a[n]) t=max(a,n-1); else t=a[n]; re 阅读全文
摘要:
#include<iostream> #include<cstdio> #include<cstdlib> #include<cstring> #define N 100 using namespace std; int a[N][N],b[N]; int vis[N][N]; int tot; i 阅读全文