摘要:
//最长回文子串 #include #include #include #include #include #define MAX 5005 char buf[MAX],s[MAX]; int p[MAX]; int main() { while(gets(buf)) { int n,m=0,max1=0; int i,j,x,y; ... 阅读全文
摘要:
Problem Description The GeoSurvComp geologic survey company is responsible for detecting underground oil deposits. GeoSurvComp works with one large rectangular region of land at a time, and creates ... 阅读全文