自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

Abner

博观而约取,厚积而薄发,不可择焉不精,语焉不详!

  • 博客(30)
  • 资源 (83)
  • 收藏
  • 关注

原创 zoj 1508 Intervals

#include #include #include #include using namespace std;const int INF = 10000000;const int MAXN = 50010;struct ArcNode{ int to; int weight; ArcNode* pNext; ArcNode() { to = 0; wei

2013-12-31 23:58:42 700

原创 zoj 2770 Burn the Linked Camp

Bellman_Ford实现:点击打开http://blog.csdn.net/hearthougan/article/details/17631941差分约束系统的SPFA实现:SPFA速度比Bellman_Ford快多了。链表实现,表头不存数据。#include #include #include #include using namespace std;const in

2013-12-30 20:48:02 974

原创 zoj 2770

#include #include #include using namespace std;const int MAXN = 1010;const int MAXM = 23000;const int INF = 100000000;struct Edge{ int u, v, w;}edges[MAXM];int n;int EN;int dist[MA

2013-12-28 14:38:09 1237

原创 poj 1201

#include #include #include using namespace std;const int MAXN = 50010;const int INF = 100000000;struct Edge{ int u, v, w;}edges[MAXN];int dist[MAXN];int n, l, r;void Inite(){

2013-12-28 14:36:16 764

原创 Floyd Test

算法思想:      Floyd(弗洛伊德)算法的基本思想是:对一个顶点个数为n的有向网(或无向网),设置一个n×n的方阵A(k) ,其中除对角线的矩阵元素都等于0外,其他元素A(k) [i][j] (i≠j)表示从顶点vi到顶点vj的有向路径长度,k表示运算步骤,k = -1, 0, 1, 2, …, n-1。初始时:A (-1)= Edge(图的邻接矩阵),即初始时,以

2013-12-26 21:50:19 700

原创 poj 3259 Wormholes

http://poj.org/problem?id=3259判断是否存在负权回路,如果存在,则表明某个顶点i入队列的次数超过了n次,n是顶点的数目。#include #include #include #include #include using namespace std;const int MAXN = 550;const int INF = 10000000;

2013-12-25 18:01:49 648

原创 poj 3268

点击打开题目#include #include #include #include using namespace std;const int INF = 10000000;const int MAXN = 1010;struct ArcNode//邻接表结构{ int to; int weight; ArcNode* pNext; Ar

2013-12-25 15:02:04 755

原创 SPFA

算法思想:   Bellman-Ford算法的时间复杂度比较高,为O(n3)或O(nm),原因在于Bellman-Ford算法要递推n次,每次递推,扫描所有的边,在递推n次的过程中很多判断是多余的。SPFA算法(Shortest Path Faster Algorithm)是Bellman-Ford算法的一种队列实现,减少了不必要的冗余判断。   SPFA算法的大致流程是用一个队列来进

2013-12-25 14:54:22 986

原创 poj 1556 The Doors

#include #include #include #include #include using namespace std;const int INF = 100000000;const int MAXN = 100;struct Point{ double x; double y;};struct Edge{ int u; i

2013-12-22 14:59:39 846

原创 poj 2240 zoj1092 Arbitrage

#include #include #include using namespace std;const int MAXN = 35;const int MAXM = 1000;struct exchange{ int ci, cj; double cij;}Ex[MAXM];char name[MAXN][20], a[20], b[20];doubl

2013-12-21 19:27:00 742

原创 hdu 3579 Hello Kiki

题目:点击打开题目#include #include #include using namespace std;typedef long long LL;const int MAXN = 10;LL Gcd(LL a, LL b){ return b == 0 ? a : Gcd(b, a%b);}void Ex_Gcd(LL a, LL b, LL &d,

2013-12-20 14:35:37 786

原创 hdu 1573 X问题

#include #include #include using namespace std;const int MAXN = 15;typedef long long LL;LL Gcd(LL a, LL b){ if(b == 0) return a; else return Gcd(b, a%b);}void Ex_

2013-12-20 12:09:21 768

原创 poj 2115 C Looooops

#include #include #include using namespace std;typedef long long LL;void Ex_Gcd(LL a, LL b, LL &d, LL &x, LL &y){ if(b == 0) { x = 1; y = 0; d = a; ret

2013-12-18 21:22:20 732

原创 poj 2891 Strange Way to Express Integers

#include #include #include using namespace std;void Ex_Gcd(long long a, long long b, long long &d, long long &x, long long &y){ if(b == 0) { x = 1; y = 0; d = a;

2013-12-12 21:15:03 763

原创 同余问题怎么求解最小正整数解

一:若gcd(a, b) = 1,则方程ax ≡ c (mod b)在[0, b-1]上有唯一解。证明:    存在性:存在整数k和l使a*k + b*l = gcd(a, b) = 1,即我们可以求出ax ≡ 1 (mod b)的解x0。当然,两边乘以c有a(cx0) ≡ c (mod b),所以有x = cx0就是ax ≡ c (mod b)的解。由于加上或减去若干倍b都是该方程的解...

2013-12-12 19:23:46 4014

原创 nefu 84

#include using namespace std;long long Extended_Gcd(long long a, long long b, long long &x, long long &y){ if(b == 0) { x = 1; y = 0; return a; } long long

2013-12-10 17:58:46 705

原创 hdu 2035 人见人爱A^B

设:a%m = r1, b %  m = r2, 则:(a*b) % m = (a%m)*(b%m)%m;令: a = k1 *m + r1, b = k2 * m + r2;则:a*b = ( k1*m+r1 ) * (k2*m + r2) = (k1*k2*m^2 + k1*m*r2 + k2*m*r1 + r1*r2)=>  (a*b)%m = (k1*k2*m^2 + k1*m

2013-12-10 13:52:51 1355

原创 hdu 1021 Fibonacci Again

设a%m = r1, b%m = r2,则:(a+b)%m = (r1 + r2)%m = (a%m + b%m)%m;令:a = k1 * m + r1; b = k2 * m + r2;则:(a+b)%m = (k1*m + r1 + k2 * m + r2)%m = ((k1 + k2) * m + r1 + r2)%m = (r1 + r2)%m = (a%m  + b%m)%m

2013-12-10 13:33:09 772

原创 poj 2769

同余问题:#include #include #include using namespace std;const int MAXN = 310;int main(){ bool p[100010]; int arr[MAXN]; int T; cin>>T; while(T--) { int n;

2013-12-10 13:04:49 860

原创 hdu 2534 Score

我们知道Gcd(a, b) = a*x + b*y;其中x, y 为正整数,如果当Gcd(a, b) = 1 时,a与b互素。根据这个,可以解这一题目a*x+b*y为a和b所能组成的数,x, y非负整数。设K为a,b所不能组成的最大数,而m和n为大于K的两个连续数,且m > n;x1,y1分别为组成m所需要a,b的个数,同理x2,y2为组成n所需a, b的个数。则有:a*x2 + b*y2

2013-12-09 19:35:38 914

原创 hdu 1007

点击打开资料#include #include #include #include #include #include using namespace std;const int MAXN = 100100;struct Point{ double x, y;};Point point[MAXN];Point s[MAXN];int cmp(Point a,

2013-12-06 10:20:23 638

转载 最近点对 分治算法分析

问题描述    在应用中,常用诸如点、圆等简单的几何对象代表现实世界中的实体。在涉及这些几何对象的问题中,常需要了解其邻域中其他几何对象的信息。例如,在空中交通控制问题中,若将飞机作为空间中移动的一个点来看待,则具有最大碰撞危险的2架飞机,就是这个空间中最接近的一对点。这类问题是计算几何学中研究的基本问题之一。下面我们着重考虑平面上的最接近点对问题。    最接近点对问题的提法是:

2013-12-05 18:29:32 1479

原创 hdu 1432 Lining Up

题目大意:给你一些顶点,计算出最多有多少顶点在一条直线上。思路:共线向量内积为零。#include #include using namespace std;const int MAXN = 750;int main(){ int n; int i, j, k; int x[MAXN], y[MAXN]; while (cin>>n

2013-12-05 14:47:29 954

原创 poj 1122 FDNY to the Rescue!

关键是建图,zoj也有一题,不过格式要求不一样,数据好像也不一样,卡那儿了!下面是能过poj的代码:#include #include #include #include using namespace std;const int MAXN = 25;const int INF = 10000010;struct Dist{ bool station; int n

2013-12-05 14:10:05 918

原创 zoj 2750 Idiomatic Phrases Game

题目大意:    成语接龙游戏,给定一些成语,该组成语中第1个和最后一个必须是给定的两个成语。在这组成语中,前一个成语的最后一个汉字必须和后一个成语的第一个汉字相同。在游戏过程中,Tom有一本字典,他必须从字典中选用成语。字典中每个成语都有一个权值T,表示选用这个成语后,Tom需要花时间T才能找到下一个合适的成语。你的任务是编写程序,给定字典,计算Tom至少需要花多长时间才能找到一个满足条件的

2013-12-04 18:18:30 850

原创 kmp hdu 3336

#include <iostream>#include <cstring>#include <cstdio>using namespace std;const int MAXN = 200010;int next[MAXN];void Get_Next(char* str, int n){ int i = 0, j = -1; ...

2013-12-03 18:25:43 641 1

原创 poj 1961 Period KMP

题目大意:给定字符串S,求其前n位所组成的字符串,其最小单元重复的次数。是上一篇的拓展;上一篇  #include <iostream>#include <cstring>#include <cstdio>using namespace std;const int MAXN = 1000010;int next[MAXN];...

2013-12-03 15:32:06 718

原创 KMP poj 2406 Power Strings 字符串的幂

题意:    给定两个字符串a和b,定义式子:a*b表示两个字符串的连接,例如:a = "abc", b = "def" 则:a*b = "abcdef"。如果将连乘看成乘法,则按照普遍的方法一个非负整数的幂表示如下: a^0 = "" (the empty string) and a^(n+1) = a*(a^n).输入:    输入字符串S每组样例一行,S为可打印字符.S长度在1~...

2013-12-03 13:25:12 1120

原创 KMP poj 2752 Seek the Name, Seek the Fame

     深入理解KMP中的next,当我们求完next之后,len为字符串S的长度, 令j = next[len],k = next[j],则有:S[j-k+1, j] = S[len-k+1, len],就是根据这个思路来求解这个问题;  #include <iostream>#include <cstring>#include <cstdio&...

2013-12-03 12:33:11 698

原创 KMP poj 3461

    找一个模式串在主串中出现的次数 #include <iostream>#include <cstring>using namespace std;const int MAXN = 1000010;const int MAXM = 10010;int nextval[MAXM];void Get_NextVal(char* str){...

2013-12-03 11:30:46 659

xshell+xftp免费版

之前上传的那个xshell+xftp没办法使用了,所以又重新上传了一个,亲测可用

2019-01-12

图像的风格迁移

风格迁移示例,仅作为学习下载,有需要的请自行下载。

2018-12-18

keras2.0中文文档 高清 带书签.pdf

最新keras2.0中文文档,高清,带书签,有需要的自行下载。

2018-12-08

从Word Embedding到Bert模型—自然语言处理中的预训练技术发展史

从Word Embedding到Bert模型—自然语言处理中的预训练技术发展史,用于资料备份,便与查阅。

2018-11-19

word2vec系列资料

仅用于资料备份,便与查阅。 word2vec 中的数学原理详解.pdf Word2Vec-语言模型的前世今生PDF word2vec Parameter Learning Explained.pdf

2018-11-19

word2vec 中的数学原理详解

PDF出处:https://blog.csdn.net/itplus/article/details/37969519,本着查阅方便,无法设置免积分下载,有需要的请自行下载

2018-11-01

CRF++0.58-Linux+Windows

CRF++0.58-Linux+Windows,里面包含了Linux版CRF++-0.58.tar.gz,和Windows版CRF++-0.58.rar,这两个版本本,亲自测试可用,有需要请自行下载。

2018-09-29

npp++32位+NPPTextFx.dll

npp++ 32位,从官网下载的,因为处理文本需要,TextFx插件,但是这个插件只支持32位的。 该压缩包包含: npp++ 32位 PluginManager TextFX.v0.26.unicode.bin

2018-09-27

李航-《统计学习方法》高清完整版(带书签)

之前积分被修改的太高了,重新传一次吧,《统计学习方法》是计算机及其应用领域的一门重要的学科。《统计学习方法》全面系统地介绍了统计学习的主要方法,特别是监督学习方法,包括感知机、k近邻法、朴素贝叶斯法、决策树、逻辑斯谛回归与最大熵模型、支持向量机、提升方法、EM算法、隐马尔可夫模型和条件随机场等。除第1章概论和最后一章总结外,每章介绍一种方法。叙述从具体问题或实例入手,由浅入深,阐明思路,给出必要的数学推导,便于读者掌握统计学习方法的实质,学会运用。为满足读者进一步学习的需要,书中还介绍了一些相关研究,给出了少量习题,列出了主要参考文献。

2018-09-17

中文同义词词库-同义词词库-access版本

中文同义词词库-同义词词库-access版 本 有需要的请自行下载

2018-09-15

自用xshell软件

XshellXftpPortable 备份一份软件,以供以后使用方便。

2018-09-03

LDA数学八卦-带书签

讲解LDA模型,相当经典的文档,里面的数学推理严谨。自制书签,方便查阅。有需要的自行下载。

2018-08-30

数论概论 第三版(中文)

《数论概论》是2008年机械工业出版社出版的图书,作者是JosephH.Silverman。本书介绍了有关数论大量的知识,以及数论的一般方法和应用等.

2018-08-29

Stanford NLP note - Christopher Manning教授-完整吧

之前的少了几章,这个是完整版。授课老师是大名鼎鼎的Christopher Manning教授,他是两本书的第一作者:一本是《统计自然语言处理基础》(Foundations of Statistical Natural Language Processing),另一本是《信息检索导论》(Introduction to Information Retrieval),都是相应领域的入门经典。

2018-08-08

Stanford NLP note - Christopher Manning教授

授课老师是大名鼎鼎的Christopher Manning教授,他是两本书的第一作者:一本是《统计自然语言处理基础》(Foundations of Statistical Natural Language Processing),另一本是《信息检索导论》(Introduction to Information Retrieval),都是相应领域的入门经典。

2018-08-08

21天学通Java-第7版-超清带书签.pdf

《21天学通Java》是超清晰版本,带书签,压缩包内还有一个第6版,有需要的请自行下载。 《21天学通Java:20小时多媒体语音视频教学》是Java语言的入门教程,由浅入深,循序渐进地讲授如何使用Java语言进行程序开发。全书内容包括Java开发环境、Java基本语法知识、Java面向对象特点、Java界面开发,以及Java数据库开发和网络编程开发。为了便于读者学习,《21天学通Java》最后一章对一个完整学生管理系统进行了分析。具体讲解了学生模块和老师模块,以及其他各个模块的功能分析。《21天学通Java》旨在为Java语言的初学者和大中专学生提供易于入门,便于全面了解和掌握Java编程技术的教辅资料,同时对有一定经验的Java编程者和学习者也有一定的参考价值。《21天学通Java》附赠DVD光盘1张,内容包括超大容量手把手视频、电子教案(PPT)、编程参考宝典电子书、源代码及各章习题答案。

2018-07-27

计算机统计自然语言处理PDF

哈工大 关毅老师主编的教材,pdf,我自己简答插了书签,有需要的请自行下载。 本书分为基础、原理和应用3个篇章。基础篇论述了自然语言处理技术的数学基础和中文语言处理特有的自动分词技术; 原理篇论述了基于统计和基于语言学规则的语言处理技术的基本原理; 应用篇论述了在音字转换、自动文摘、信息检索、手写体识别等应用领域中的实用语言处理方法。

2018-07-26

统计自然语言处理基础PDF(中英文-带书签)

统计自然语言处理基础PDF,包含中英文两版,带书签。统计自然语言处理 第二版 宗成庆。有需要的请自行下载。

2018-07-25

pytorch+cuda9.0

torch-0.3.0.post4-cp27-cp27mu-linux_x86_64.whl 官网总是打不开,再次备份一份,有需要的请自行下载

2018-04-10

Tensorflow 实战Google深度学习框架-清晰-带书签

TensorFlow是谷歌2015年开源的主流深度学习框架,目前已在谷歌、优步(Uber)、京东、小米等科技公司广泛应用。《Tensorflow实战》为使用TensorFlow深度学习框架的入门参考书,旨在帮助读者以最快、最有效的方式上手TensorFlow和深度学习。书中省略了深度学习繁琐的数学模型推导,从实际应用问题出发,通过具体的TensorFlow样例程序介绍如何使用深度学习解决这些问题。《Tensorflow实战》包含了深度学习的入门知识和大量实践经验,是走进这个最新、最火的人工智能领域的首选参考书。

2018-01-17

TensorFlow Machine Learning Cookbook.pdf

Explore machine learning concepts using the latest numerical computing library — TensorFlow — with the help of this comprehensive cookbook About This Book Your quick guide to implementing TensorFlow in your day-to-day machine learning activities Learn advanced techniques that bring more accuracy and speed to machine learning Upgrade your knowledge to the second generation of machine learning with this guide on TensorFlow Who This Book Is For This book is ideal for data scientists who are familiar with C++ or Python and perform machine learning activities on a day-to-day basis. Intermediate and advanced machine learning implementers who need a quick guide they can easily navigate will find it useful. What You Will Learn Become familiar with the basics of the TensorFlow machine learning library Get to know Linear Regression techniques with TensorFlow Learn SVMs with hands-on recipes Implement neural networks and improve predictions Apply NLP and sentiment analysis to your data Master CNN and RNN through practical recipes Take TensorFlow into production In Detail TensorFlow is an open source software library for Machine Intelligence. The independent recipes in this book will teach you how to use TensorFlow for complex data computations and will let you dig deeper and gain more insights into your data than ever before. You’ll work through recipes on training models, model evaluation, sentiment analysis, regression analysis, clustering analysis, artificial neural networks, and deep learning – each using Google’s machine learning library TensorFlow. This guide starts with the fundamentals of the TensorFlow library which includes variables, matrices, and various data sources. Moving ahead, you will get hands-on experience with Linear Regression techniques with TensorFlow. The next chapters cover important high-level concepts such as neural networks, CNN, RNN, and NLP. Once you are familiar and comfortable with the TensorFlow ecosystem, the last chapter will show you how to take it to production. Style and approach This book takes a recipe-based approach where every topic is explicated with the help of a real-world example.

2018-01-17

Automatic Speech Recognition A Deep Learning Approach

解析深度学习-语音识别实践-英文版,没有找到中文版的

2017-11-07

最大熵模型与自然语言处理

最大熵模型与自然语言处理.有需要的请自行下载。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。

2017-09-01

Baum-Welch

Baum-Welch,隐马尔可夫学习算法,自己备份。

2017-08-29

Deep Learning for Hybrid Unit Selection Synthesis - Apple

TTS,语音合成

2017-08-24

google-chrome-stable_current_amd64.deb

google浏览器需要的,请自行下载。

2017-08-11

Speech_Synthesis_Paul_Taylor.pdf

Speech Synthesis Paul Taylor.

2017-07-28

cudnn 5.1 for CUDA 8.0 Linux

cuDNN v5.1 Library for Linux. cuDNN v5.1 (Jan 20, 2017), for CUDA 8.0。

2017-07-05

Speech_Synthesis_Paul_Taylor

TTs

2017-06-17

matplotlib tutorial-(原版)

matplotlib tutorial,matplotlib教程,英文版,需要的自行下载

2017-03-27

机器学习.算法原理与编程实践+代码

机器学习.算法原理与编程实践,加代码,有需要的,自行下载。

2017-03-20

鱼c小甲鱼零基础学python全套课后题

前50课,需要的自行下载

2017-03-16

Scikit-learn 使用手册中文高清完整版.pdf

Scikit-learn 使用手册中文版,有需要的自行下载。

2017-03-09

scikit-learn.user_guide

scikit-learn.user_guide,英文版

2017-03-09

李宏毅 一天搞懂深度学习.ppt版下载

本文是2016 台湾资料科学年会前导课程“一天搞懂深度学习”的全部讲义PPT(共268页),由台湾大学电机工程学助理教授李宏毅主讲。作者在文中分四个部分对神经网络的原理、目前存在形态以及未来的发展进行了介绍。深度学习的每一个核心概念在文中都有相关案例进行呈现,通俗易懂。一天的时间搞懂深度学习?其实并不是没有可能。 需要的,请自行下载

2017-02-23

算法导论第三版答案(完整版)

网上的 算法导论(第三版)答案都不完整,这个是完整版答案,分每章一个单独pdf格式的文件,易于查阅。有需要的请自行下载。

2017-01-11

李航博士《统计学习方法》课件

清华大学深圳研究生院的袁春老师为《统计学习方法》一书制作了完整的课件。感谢袁老师,同时推荐大家使用。

2016-11-13

机器学习实战(中文带书签+英文+源代码)

本书第一部分主要介绍机器学习基础,以及如何利用算法进行分类,并逐步介绍了多种经典的监督学习算法,如k近邻算法、朴素贝叶斯算法、Logistic回归算法、支持向量机、AdaBoost集成方法、基于树的回归算法和分类回归树(CART)算法等。第三部分则重点介绍无监督学习及其一些主要算法:k均值聚类算法、Apriori算法、FP-Growth算法。第四部分介绍了机器学习算法的一些附属工具。

2016-10-26

《机器学习》----[Tom M. Mitchell]--带书签

《机器学习》展示了机器学习中核心的算法和理论,并阐明了算法的运行过程。《机器学习》综合了许多的研究成果,例如统计学、人工智能、哲学、信息论、生物学、认知科学、计算复杂性和控制论等,并以此来理解问题的背景、算法和其中的隐含假定。《机器学习》可作为计算机专业 本科生、研究生教材,也可作为相关领域研究人员、教师的参考书。

2016-10-16

《统计学习方法》李航-带书签高清完整PDF版

《统计学习方法》是计算机及其应用领域的一门重要的学科。《统计学习方法》全面系统地介绍了统计学习的主要方法,特别是监督学习方法,包括感知机、k近邻法、朴素贝叶斯法、决策树、逻辑斯谛回归与最大熵模型、支持向量机、提升方法、EM算法、隐马尔可夫模型和条件随机场等。除第1章概论和最后一章总结外,每章介绍一种方法。叙述从具体问题或实例入手,由浅入深,阐明思路,给出必要的数学推导,便于读者掌握统计学习方法的实质,学会运用。为满足读者进一步学习的需要,书中还介绍了一些相关研究,给出了少量习题,列出了主要参考文献。

2016-10-16

空空如也

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

TA关注的人

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