自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

Or_me

♑_FAR AWAY

  • 博客(4)
  • 资源 (2)
  • 收藏
  • 关注

原创 名次树 - 模板

UvaLive 5031#include <cstdio> #include <iostream> #include <cstring> #include <algorithm> #include <cstdlib> using namespace std; const int maxnode = 20005; const int maxw = 60005; const int maxc = 50

2015-09-19 10:46:57 746

原创 最短路 - Dijkstra()

http://acm.nyist.net/JudgeOnline/problem.php?pid=115#include <stdio.h> #include <string.h> #include <iostream> #include <stdlib.h> #define inf 0x3f3f3f3f #define N 1005 using namespace std; int d[N], G

2015-09-18 17:31:37 478

原创 最小生成树 - Kruskal()

//http://acm.hdu.edu.cn/showproblem.php?pid=1233 #include <cstdio> #include <algorithm> using namespace std; const int N = 105; int father[N]; int find(int x) { if (x != father[x]) father[x

2015-09-10 15:03:08 462

原创 最小生成树 - Prime()

//http://acm.hdu.edu.cn/showproblem.php?pid=1102 #include <bits/stdc++.h> #define N 111 using namespace std; int n; int G[N][N]; int vis[N], lowcost[N]; int prime()//只与点有关O(n * n),适合稠密图 { int sum =

2015-09-10 08:49:21 582

具体数学英文版

其实是因为自己看不懂才上传来的,希望不小心被哪位喜欢数学而又精通英语的喜欢帮助别人的大神看见了,加以翻译!!

2014-03-19

ACM程序设计竞赛基础教程_俞经善等编

算法学习经典,虽然简短。 欢迎大家一起学习讨论!!

2014-03-19

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除