#include
#include
#include
using namespace std;
struct node
{
int x,y,step;
};
char map[105][105];
int vis[105][105];
int to[4][2]= {1,0,-1,0,0,1,0,-1};
int n,m,sx,sy,ex,ey,ans;
int check(in...
分类:
其他好文 时间:
2014-07-19 23:11:19
阅读次数:
330
Windows环境下用C#编程将文件上传至阿里云OSS笔记本系列文章由ex_net(张建波)编写,转载请注明出处。http://blog.csdn.net/ex_net/article/details/24962567作者:张建波 邮箱:281451020@qq.com 欢迎来信交流!第1步: 下....
Stars
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 4402 Accepted Submission(s): 1748
Problem Description
Astronomers often ex...
分类:
其他好文 时间:
2014-07-19 18:27:18
阅读次数:
197
刚学习的扩展欧几里得算法,刷个水题
求解 线性不定方程 和 模线性方程
求方程 ax+by=c 或 ax≡c (mod b) 的整数解
1、ax+by=gcd(a,b)的一个整数解:
void ex_gcd(int a,int b,int &d,int &x,int &y)//扩展欧几里得算法
{
if(!b){d=a;x=1;y=0;}
else {ex_gcd(...
分类:
其他好文 时间:
2014-07-19 18:26:00
阅读次数:
226
1 LL Ex_GCD(LL a,LL b,LL &x,LL& y) 2 { 3 if(b==0) 4 { 5 x=1; 6 y=0; 7 return a; 8 } 9 LL g=Ex_GCD(b,a%b,x,y);...
分类:
其他好文 时间:
2014-07-19 17:04:57
阅读次数:
249
下面讲的是一个意思:The problem is that the next control in the tab order following the last radiobutton of your group must have the WS_GROUP flag set.1:ex:Cont...
分类:
其他好文 时间:
2014-07-19 09:27:10
阅读次数:
176
使用sudo参数-E使得 root 用户可以使用普通用户下的环境变量,包括代理设置。jonathan@n:~$ sudo -E add-apt-repository ppa:mitya57/ppa直接在 root 用户下设置代理。jonathan@n:~$ sudo bashroot@n:~# ex...
分类:
其他好文 时间:
2014-07-18 19:13:15
阅读次数:
517
bool SetWindowTop(CWnd* pWnd){ if(!pWnd) { return false; } if(pWnd->GetExStyle()&WS_EX_TOPMOST) { return true; } else { int i= pWnd->SetWindowPos(&CWn...
分类:
其他好文 时间:
2014-07-18 09:20:33
阅读次数:
180
昨晚配置完成office web apps 2013的外部网络访问之后,今天发现了一个很奇怪的问题,就是IE 11不支持文档在线浏览,找了很多方法,打补丁什么的,都不管用,最后在预览文件的页面,看到标签,里面有一句代码:
我把他改成了
结果就搞定了
页面地址:C:\Program Files\Common Files\Microsoft Shared\Web Server Ex...
分类:
移动开发 时间:
2014-07-17 19:27:31
阅读次数:
262
function getImageSize(obj){
var _file=document.getElementById("file");
var i=_file.value.lastIndexOf('.');
var len=_file.value.length;
var extEndName=_file.value.substring(i+1,len);
var ex...
分类:
Web程序 时间:
2014-07-16 14:14:49
阅读次数:
224