摘要: #include <cstdio> #include <cstdlib> struct element{ int id; double sa; }e[10000]; int cmp(const void *a,const void *b){ return (*(element*)a).sa>(*(e 阅读全文
posted @ 2017-01-13 21:07 王坤1993 阅读(194) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>#include<math.h>void find(int n,int &l,int &r,int &level){ int i; level=1; for(i=1;;i+=2) { if(n-i<=0) { l=(n+1)/2; r=(i-n)/2+1; brea 阅读全文
posted @ 2017-01-13 20:39 王坤1993 阅读(240) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>#include<string.h>using namespace std;int main(){ int n,i; int t; int cnt; int result; while(scanf("%d",&n)!=EOF) { cnt=0; for(i=0;i 阅读全文
posted @ 2017-01-13 20:38 王坤1993 阅读(138) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>#include<string.h>const int MAXN=130;int dp[MAXN][MAXN];//dp[i][j]表示 i 表示成最大的数不超过 j 的方法数int calc(int n,int m){ if(dp[n][m]!=-1) retur 阅读全文
posted @ 2017-01-13 20:37 王坤1993 阅读(145) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<cstdio> #include<algorithm> using namespace std; const int SIZE=1002; int main() { int n,m; int i,count; int seq[SIZE]; wh 阅读全文
posted @ 2017-01-13 20:35 王坤1993 阅读(218) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <string.h> #include <queue> using namespace std; struct node { int x,y,step; friend bool operator<(node n1,node n2) { retu 阅读全文
posted @ 2017-01-13 20:32 王坤1993 阅读(171) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>const int MAXN=500010;int a[MAXN],b[MAXN]; //用二分查找的方法找到一个位置,使得num>b[i-1] 并且num<b[i],并用num代替b[i]int Search(int num,int low,int high){ 阅读全文
posted @ 2017-01-13 20:29 王坤1993 阅读(180) 评论(0) 推荐(0) 编辑
摘要: #include <cstdio>#include <iostream>const int MAX = 1000005; using namespace std; int num[MAX], pre_max[MAX]; inline int max(int a, int b){ return a > 阅读全文
posted @ 2017-01-11 23:35 王坤1993 阅读(165) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h>#include <string.h>#define BASE 10000#define PFMT "%04d"#define MAX 105 void print_bn(int*a, int l){ int i; for(i=l-1;i>0;i--)if(a[i 阅读全文
posted @ 2017-01-11 23:34 王坤1993 阅读(226) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h>#include <string.h> int main(void){ int n,i,j,k,l; char o1[10],o2[10],s[10],h[20]; while(scanf("%d %s %s", &n, o1, o2)!=EOF) { memse 阅读全文
posted @ 2017-01-11 23:32 王坤1993 阅读(166) 评论(0) 推荐(0) 编辑