上一页 1 2 3 4 5 6 ··· 16 下一页
摘要: http://poj.org/problem?id=3668水题,STL 1 #include 2 #include 3 4 using namespace std; 5 6 set > set1; 7 8 int gcd(int x, int y) 9 {10 return y? gcd(y, x%y): x;11 }12 13 int abs(int x)14 {15 return x<0? -1*x: x;16 }17 18 struct P19 {20 int x, y;21 }p[1234];22 23 int main()24 {25 in... 阅读全文
posted @ 2013-07-27 19:32 Yuan1991 阅读(265) 评论(0) 推荐(0) 编辑
摘要: http://poj.org/problem?id=3670DP,最长不降子序列,O(n*logn)解法 1 #include 2 #define N 30030 3 4 int n, a[N], dp[N]; 5 const int maxint = (1>1;13 if(dp[m] maxn)35 {36 maxn ++;37 dp[maxn+1] = maxint;38 }39 }40 return maxn;41 }42 43 int main()44 {45 ... 阅读全文
posted @ 2013-07-27 19:30 Yuan1991 阅读(177) 评论(0) 推荐(0) 编辑
摘要: easy_install安装:1 easy_install coverage运行:1 coverage run test.py2 coverage report 阅读全文
posted @ 2013-07-03 13:53 Yuan1991 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 因为hudson需要依赖java等,手动安装比较费劲官方给出了一种很简单的解决方案:http://wiki.eclipse.org/Hudson-ci/Installing_Hudson_DEB1 sudo sh -c "echo 'deb http://hudson-ci.org/debian binary/' > /etc/apt/sources.list.d/hudson.list"2 sudo apt-get update3 sudo apt-get install hudson之后访问:http://localhost:8080进行配置就可以 阅读全文
posted @ 2013-06-27 21:16 Yuan1991 阅读(234) 评论(0) 推荐(0) 编辑
摘要: http://poj.org/problem?id=1061数论,单变元模线性方程 1 #include <stdio.h> 2 3 long long extend_gcd(long long a, long long b, long long &x, long long &y) 4 { 5 if(b == 0) 6 { 7 x = 1; 8 y = 0; 9 return a;10 }11 else12 {13 long long r = extend_gcd(b, a%b, y, x... 阅读全文
posted @ 2013-05-31 11:31 Yuan1991 阅读(145) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 16 下一页