摘要: #include<iostream> #include<algorithm> using namespace std; struct SIZE { int l; int w; }sticks[5005]; int flag[5005]; bool cmp(const SIZE &a,const SI 阅读全文
posted @ 2017-01-18 00:14 王坤1993 阅读(129) 评论(0) 推荐(0) 编辑
摘要: #include <cstdio> #include <algorithm> using namespace std; #define SIZE 205 struct Data_Type { int from, to; bool flag; }moving[SIZE]; bool Cmp(const 阅读全文
posted @ 2017-01-16 23:19 王坤1993 阅读(187) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>int main(){ int n,u,d; while(scanf("%d%d%d",&n,&u,&d),n) { int t=(n-u)/(u-d); if(t*(u-d)<(n-u)) t++; t*=2; t++; printf("%d\n",t); } r 阅读全文
posted @ 2017-01-16 23:17 王坤1993 阅读(146) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>#include<string.h>#include<iostream>using namespace std;int main(){ //freopen("test.in","r",stdin); //freopen("test.out","w",stdout); 阅读全文
posted @ 2017-01-16 23:16 王坤1993 阅读(100) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>#include<string>#include<iostream>using namespace std; //高精度加法//只能是两个正数相加string add(string str1,string str2)//高精度加法{ string str; int 阅读全文
posted @ 2017-01-16 23:14 王坤1993 阅读(122) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<cmath> using namespace std; int main() { int T,t=0,m,n; cin>>T; while(T--) { cin>>m>>n; cout<<"Scenario #"<<++t<<":"<<endl 阅读全文
posted @ 2017-01-16 20:37 王坤1993 阅读(142) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> using namespace std; int count = 0, n = 0; //判断该ch[x][y]是否可以放置 bool isOk(char **ch, int x, int y){ int i; //向上检索 for (i = x - 1; i 阅读全文
posted @ 2017-01-15 21:55 王坤1993 阅读(108) 评论(0) 推荐(0) 编辑
摘要: #include <cstdio> #include <cstring> #include <queue> using namespace std; const int maxn=55; int n,m,t,x1,y1,x2,y2; struct node { int x,y; int zb; in 阅读全文
posted @ 2017-01-15 21:54 王坤1993 阅读(269) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>#include<cstdio>#include<cstring>#include<algorithm>#include<queue>#include<vector>#include<cmath>#include<map>#include<string>#defi 阅读全文
posted @ 2017-01-15 21:31 王坤1993 阅读(241) 评论(0) 推荐(0) 编辑
摘要: #include"stdio.h" #include"stdlib.h" #include"string.h" #define N 10000 int a[N]; int main() { int i,j,n,len; while(scanf("%d",&n)!=-1) { memset(a,0,s 阅读全文
posted @ 2017-01-15 21:25 王坤1993 阅读(99) 评论(0) 推荐(0) 编辑