自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

飒然霜林的博客

朝闻道,夕死无憾

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

原创 【题解】 UVA 340 猜数字游戏的提示

目录 题目描述题意分析AC代码题目描述https://vj.e949.cn/ef72995afa0f802e4cfcb268592c3df3?v=1542412459题意分析题意:给出一行答案序列,再给出一系列猜测序列全为0时,猜测结束。           输出(位置正确数 , 在两个序列中出现过但位置不正确的个数)AC代码/*** Copyrig...

2018-11-18 14:11:23 268

原创 【题解】 UVA 401 回文词

目录 题目描述题意分析AC代码题目描述https://vj.e949.cn/9b33ac42e5fbc32e8c88307566611887?v=1541912899题意分析题意:给你一个字符串,让你判断它是不是回文/镜像串 AC代码/*** Copyright(c)* All rights reserved.* Author : Mingzhe...

2018-11-15 21:38:03 208

原创 【题解】UVA 10082 WERTYU

目录 题目描述题意分析AC代码题目描述https://vj.e949.cn/17da58ae1cdd5a22021b976e9544b652?v=1542269294题意分析题意:键盘输入误导致 右移一位,将其还原AC代码/*** Copyright(c)* All rights reserved.* Author : Mingzhe* Date ...

2018-11-15 21:25:14 203

原创 【题解】 UVA 272 TeX 中的引号

目录 题目描述题意分析AC代码题目描述https://vj.e949.cn/41e0e34d61d7191aed9fc036c8405496?v=1542228492题意分析题意: 将双引号替换AC代码#include <cstdio>#include <cmath>#include <iostream>#incl...

2018-11-15 21:19:35 263

Combinatorics and Graph Theory

组合数学与图论,英文版。内置高清图片,缺陷没有书签。 目录如下: 1 Fundamentals 7 1.1 Examples . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8 1.2 Combinations and permutations . . . . . . . . . . . . . . . . . 11 1.3 Binomial coefficients . . . . . . . . . . . . . . . . . . . . . . . 16 1.4 Bell numbers . . . . . . . . . . . . . . . . . . . . . . . . . . . 22 1.5 Choice with repetition . . . . . . . . . . . . . . . . . . . . . . 27 1.6 The Pigeonhole Principle . . . . . . . . . . . . . . . . . . . . . 32 1.7 Sperner’s Theorem . . . . . . . . . . . . . . . . . . . . . . . . 36 1.8 Stirling numbers . . . . . . . . . . . . . . . . . . . . . . . . . 39 2 Inclusion-Exclusion 45 2.1 The Inclusion-Exclusion Formula . . . . . . . . . . . . . . . . . 45 2.2 Forbidden Position Permutations . . . . . . . . . . . . . . . . . 48 3 3 Generating Functions 53 3.1 Newton’s Binomial Theorem . . . . . . . . . . . . . . . . . . . 53 3.2 Exponential Generating Functions . . . . . . . . . . . . . . . . 56 3.3 Partitions of Integers . . . . . . . . . . . . . . . . . . . . . . . 59 3.4 Recurrence Relations . . . . . . . . . . . . . . . . . . . . . . . 62 3.5 Catalan Numbers . . . . . . . . . . . . . . . . . . . . . . . . . 66 4 Systems of Distinct Representatives 71 4.1 Existence of SDRs . . . . . . . . . . . . . . . . . . . . . . . . 72 4.2 Partial SDRs . . . . . . . . . . . . . . . . . . . . . . . . . . . 74 4.3 Latin Squares . . . . . . . . . . . . . . . . . . . . . . . . . . . 76 4.4 Introduction to Graph Theory . . . . . . . . . . . . . . . . . . 83 4.5 Matchings . . . . . . . . . . . . . . . . . . . . . . . . . . . . 84 5 Graph Theory 91 5.1 The Basics . . . . . . . . . . . . . . . . . . . . . . . . . . . . 91 5.2 Euler Circuits and Walks . . . . . . . . . . . . . . . . . . . . . 96 5.3 Hamilton Cycles and Paths . . . . . . . . . . . . . . . . . . . 100 5.4 Bipartite Graphs . . . . . . . . . . . . . . . . . . . . . . . . 103 5.5 Trees . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 105 5.6 Optimal Spanning Trees . . . . . . . . . . . . . . . . . . . . 108 5.7 Connectivity . . . . . . . . . . . . . . . . . . . . . . . . . . 110 5.8 Graph Coloring . . . . . . . . . . . . . . . . . . . . . . . . . 117 5.9 The Chromatic Polynomial . . . . . . . . . . . . . . . . . . . 124 5.10 Coloring Planar Graphs . . . . . . . . . . . . . . . . . . . . . 125 5.11 Directed Graphs . . . . . . . . . . . . . . . . . . . . . . . . 129 6 P´olya–Redfield Counting 135 6.1 Groups of Symmetries . . . . . . . . . . . . . . . . . . . . . 137 6.2 Burnside’s Theorem . . . . . . . . . . . . . . . . . . . . . . 140 6.3 P´olya-Redfield Counting . . . . . . . . . . . . . . . . . . . . 146 A Hints 151 Index 153

2018-12-03

Python for Everyone: Exploring Data Using Python 3

Coursera 上热门课程的讲义。十分适合Python初学者。英文版

2018-08-22

计算机科学中的离散结构

有关计算机科学的离散入门书籍。里面内容详尽。十分适合初学者学习。

2018-08-22

空空如也

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

TA关注的人

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