码迷,mamicode.com
首页 >  
搜索关键字:dy    ( 426个结果
POJ 2243 || HDU 1372:Knight Moves(BFS)
简单搜索 直接代码: #include #include #include #include using namespace std; char a,c; int e,f; int dx[8] = {-2, -2, -1, -1, 1, 1, 2, 2}; int dy[8] = {-1, 1, -2, 2, -2, 2, -1, 1}; int qq[9][9]; struct node {...
分类:其他好文   时间:2014-07-17 19:05:30    阅读次数:265
poj2243Knight Moves宽搜
#include#include#include#include#include#include#include#include#include#include#includeusing namespace std;int dx[]={-2,-1,1,2,-2,-1,1,2};int dy[]={1...
分类:其他好文   时间:2014-07-16 18:19:53    阅读次数:172
poj 3020 Antenna Placement
二分匹配基础,只要将a,b找出来就好 对于每个“ *”的4个方向进行查找并且记录他们间的关系; 因为我们对a->b和b->a都进行了读取,所以要除2; #include #include char str[41][11]; bool mat[400][400],usedif[400]; int h,w,link[400],num; int dx[4]={0,0,-1,1}; int dy[4...
分类:其他好文   时间:2014-07-16 10:17:10    阅读次数:229
关于第二型曲面积分换元(新版)
数分教材上都没有给出第二型曲面积分换元的结果(公式,定理),如果有同学在哪本书上看到请告诉我。实际上,学会微分形式,外微分运算后二型曲面积分换元就很简单了。比如\(I=\iint_{\Sigma} P(x,y,z)dx\wedge dy\)其中\(x=2x'+3y'+4z'\),\(y=ax'+by...
分类:其他好文   时间:2014-07-06 19:00:15    阅读次数:196
Hopcroft-Karp算法模版
#include #include #include #include #include #include using namespace std; const int maxn = 3010; const int INF = 1<<28; int dx[maxn], dy[maxn]; int cx[maxn], cy[maxn]; vector G[maxn]; int dis;...
分类:其他好文   时间:2014-07-06 11:39:26    阅读次数:199
mxGraph实现按住ctrl键盘拖动图形实现复制图形功能
实现这个功能非常简单,只需要重写moveCells方法就可以了。下面是源文件中的代码: mxGraph.prototype.moveCells = function(cells, dx, dy, clone, target, evt) { if (cells != null && (dx != 0 || dy != 0 || clone || target != null)) { ...
分类:其他好文   时间:2014-06-30 10:54:15    阅读次数:385
bnu 34986 Football on Table(数学+暴力)
题目连接:bnu 34986 Football on Table 题目大意:给出桌子的大小L,W,然后是球的起始位置sx,sy,以及移动的向量dx,dy,然后给出n,表示有n个杆,对于每个杆,先给出位置x,以及杆上有多少个小人c,给出小人的宽度,再给出c个小人间的距离。现在问说球有多少个概率可以串过所有人。 解题思路;对于每个杆求无阻挡的概率,注意概率 = 空隙 / 可移动的范围大小,...
分类:其他好文   时间:2014-06-26 13:17:21    阅读次数:207
Generate contour plot in GNU Octave
Step 1: generating the grid points for the 2D contour plot:[xx, yy] = meshgrid(x_start:dx:x_end, y_start:dy:y_end);Step 2: Calculate the data values a...
分类:其他好文   时间:2014-06-24 14:16:47    阅读次数:185
微软职位内部推荐-SDE II
微软近期Open的职位:MSIT Dynamics CRM Software Developer (SDE, Microsoft China, Beijing)Are you interested in shaping the future vision of how we implement Dy...
分类:其他好文   时间:2014-06-24 09:15:35    阅读次数:302
Understanding the RelationshipType Enumeration [AX 2012]
Understanding the RelationshipType Enumeration [AX 2012]3 out of 3 rated this helpful-Rate this topic Updated:January 28, 2012 Applies To:Microsoft Dy...
分类:其他好文   时间:2014-06-05 20:49:01    阅读次数:428
426条   上一页 1 ... 40 41 42 43 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!