程序设计
文章平均质量分 63
a1805180411
这个作者很懒,什么都没留下…
展开
-
poj 1060解题报告
题目很长,但是比较好理解。题意就是求(f(x)*g(x))mod h(x)#include#include#includeusing namespace std;int testcase; //测试用例的个数 const int maxl = 1005;int f[maxl]; //存放第一个多项式的系数int lf;原创 2012-12-26 20:48:50 · 438 阅读 · 0 评论 -
java调用c++程序
一开始啥都不懂,找了很多资料,原创 2014-05-02 22:12:29 · 793 阅读 · 0 评论 -
poj1088解题报告
以前都不敢做动态规划的题,这次我同学给我讲了一点,看了别人的解题报告才写了这个题,真心感觉自己很水#include#includeusing namespace std;int r,c; //区域的行和列int maxlen; //可滑行的最大长度struct Node{ int height; //区域中的高度 int len原创 2013-03-23 23:39:31 · 636 阅读 · 0 评论 -
poj1702解题报告
#include#include#include#includeusing namespace std;int t; //用例数int w; //要称物体的重量int lt[21],rt[21]; //左托盘和右托盘放的砝码。int weight[21]; //将w分为3的次幂相加的形式int l = 0,r = 0;原创 2013-03-22 23:17:57 · 640 阅读 · 0 评论 -
poj2059
#include#includeusing namespace std;struct Hatch{ int x,y;}hatch[51];int n;int s,h;int flag ;void input(){ cin>>s>>h; for(int i = 0;i < h;i++) { cin>>hatch[i].x>>hatch[i].y;原创 2013-03-22 23:20:24 · 722 阅读 · 0 评论 -
poj2029
#include#includeusing namespace std;int n;int width,height;int result;int mmax;struct Position{ int x,y;}pos[501];int s,t;void input(){ cin>>width>>height; for(int i = 1;i <=原创 2013-03-22 23:21:38 · 634 阅读 · 0 评论 -
poj2041
#include#includeusing namespace std;int n;char regulation[10];char mes[30];int regulationlen;int meslen;void processJ(){ char c = mes[meslen-1]; for(int i = meslen - 1;i >= 1;i--)原创 2013-03-22 23:19:19 · 758 阅读 · 0 评论 -
poj1218解题报告
//题意不想过多解释,自己看看就知道了//题不难,这种题我感觉就是在练个人写代码的规范//我自己的不是很好,但我感觉这样写会看起来比较清晰#includeusing namespace std;int jail[101]; //代表门的状态int cell; //有多少个牢房void init() //第一遍是全部的门都开着{ for(原创 2013-03-18 23:18:13 · 535 阅读 · 0 评论 -
poj 1099解题报告
//题意不难理解,想了好几天都没有想到比较好的方法,最后看了下他们的解题报告写的,发现自己好水啊~~~#include#include#includeusing namespace std;int n,row,col; int map[15][15]; //存储01矩阵char str[50][50]; //存放水分子的排布结构void i原创 2012-12-31 15:37:35 · 442 阅读 · 0 评论 -
poj1119解题报告
//题意:给出已有文件及相应文件出现的次数,对这些文件进行搜索,若相同,则计算它们出现次数的乘积,在开平方根,直到一次文件的检索结束,输出每次检索后的各个平方根的和#include#include#include#includeusing namespace std;struct Map{ string str; //搜索项 int原创 2012-12-31 20:36:15 · 594 阅读 · 0 评论 -
poj1051解题报告
#include#includeusing namespace std;char str1[101];string str2;string result;string str[] = {".-","-...","-.-.","-..",".","..-.","--.", "....","..",".---","-.-",".-..","原创 2012-12-26 20:54:06 · 468 阅读 · 0 评论 -
关于本地连接远程github仓库的若干问题
一般本地连接远程github仓库的方法有两种,通过http和ssh(在远程github上能找到对应的http和ssh),一般情况下,使用http在push代码时需要输入用户名和密码,但是ssh配置好后并不需要用户名和密码。所以一般用ssh会更加的方便,但是这个是需要设置的。接下来针对这两种情况进行阐述,并给出如何在两者之间进行切换。为了完整性,本文从github仓库的创建开始讲起,读者可以根据需要原创 2016-07-13 21:16:29 · 3808 阅读 · 0 评论