摘要:
#include<iostream>#include<cstdio>#include<cstring>#include<cmath>#include<algorithm>#include<string>#include<queue>using namespace std;int mark[120][120],dp[120][120];int max(int a,int b,int c){ if(a<b) a=b; if(a<c) a=c; return a;}void init() //初始化{ m 阅读全文