上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 20 下一页
摘要: #include<iostream> using namespace std; int GetMaxNum(int a[],int n) //求最大字段和 { int i,sum=0,maxsum=0; maxsum|=1<<31; for(i=1;i<=n;i++) { sum+=a[i]; if 阅读全文
posted @ 2017-01-22 23:19 王坤1993 阅读(185) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> using namespace std; char s1[105],s2[105]; int val[5][5]={ {5,-1,-2,-1,-3}, {-1,5,-3,-2,-4}, {-2,-3,5,-2,-2}, {-1,-2,-2,5,-1}, {-3, 阅读全文
posted @ 2017-01-22 23:17 王坤1993 阅读(195) 评论(0) 推荐(0) 编辑
摘要: #include<cstdio> #include<iostream> #include<cstring> using namespace std; int main(){ int y,m,d; int t; scanf("%d",&t); while(t--){ scanf("%d%d%d",&y 阅读全文
posted @ 2017-01-22 23:15 王坤1993 阅读(188) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <string.h> #include <algorithm> using namespace std; int n,k,dp[105][105],a[105][105]; int to[4][2] = {1,0,-1,0,0,1,0,-1}; 阅读全文
posted @ 2017-01-22 23:14 王坤1993 阅读(166) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<cmath> using namespace std; struct Point { double x,y; }; double dis_sq(const Point& a,const Point& b) //距离平方 { return (a. 阅读全文
posted @ 2017-01-22 23:13 王坤1993 阅读(287) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> using namespace std; int main() { int cases; int k; cin>>cases; while(cases--) { int y,n; cin>>y>>n; int num=0; for(k=y;;k++) { if( 阅读全文
posted @ 2017-01-21 21:02 王坤1993 阅读(139) 评论(0) 推荐(0) 编辑
摘要: #include <map> #include <string.h> #include <iostream> using namespace std; #include<stdio.h> int main() { char s1[20],s2[20],s[3005],s3[20],c,a[100]; 阅读全文
posted @ 2017-01-21 21:00 王坤1993 阅读(155) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <string> #include <cstring> #include <stack> #include <algorithm> using namespace std; const int inf = 1<<30; struct node 阅读全文
posted @ 2017-01-21 20:56 王坤1993 阅读(158) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> using namespace std; #define N 5050 char a[N],b[N],tmp[N]; void Read(char p[]) { getchar(); gets(tmp); while(gets(tmp)) { if(strcmp 阅读全文
posted @ 2017-01-21 20:54 王坤1993 阅读(250) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <cstdio> #include <cstring> #include <queue> using namespace std; class Data { public: int Etime; int x, y; int count; }; 阅读全文
posted @ 2017-01-21 20:53 王坤1993 阅读(219) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 20 下一页