A #include <bits/stdc++.h> #define all(n) (n).begin(), (n).end() #define se second #define fi first #define pb push_back #define mp make_pair #define ...
分类:
其他好文 时间:
2020-09-11 16:00:21
阅读次数:
50
地址:https://github.com/taishan1994/DGL_Chinese_Manual 目录begin 安装 4使用conda安装 4使用pip安装 4使用源安装 4设置默认的Backend 4 图 41.1 关于图的一些基本定义 41.2 图、节点和边 51.3 节点和边特征 6 ...
分类:
其他好文 时间:
2020-09-10 23:08:13
阅读次数:
300
题目 题目来源:CCF 山东省选 2008; 在线评测:Luogu#1984。 题目描述 把总质量为 $1\ \textrm$ 的水分装在 \(n\) 个杯子里,每杯水的质量均为 \(\left(\dfrac{1}{n}\right)\ \textrm{kg}\),初始温度均为 $0; ^\circ ...
分类:
其他好文 时间:
2020-09-09 18:54:43
阅读次数:
40
#通过管道传递 cat somefile.txt |python somescriot.py |sort import sys text = sys.stdin.read() #标准输入流 words = text.split() print words #用户互动 raw_input() x = ...
分类:
其他好文 时间:
2020-09-04 17:10:31
阅读次数:
52
*& **& Report zabc*& 循环+栈*& **&*&*& *REPORT zabc.TYPES BEGIN OF ty_num.TYPES num TYPE i.TYPES END OF ty_num.DATA gt_num TYPE TABLE OF ty_num.DATA gt_s ...
分类:
其他好文 时间:
2020-09-03 16:40:30
阅读次数:
43
题目 给定一个仅包含大小写字母和空格 ' ' 的字符串 s,返回其最后一个单词的长度。如果字符串从左向右滚动显示,那么最后一个单词就是最后出现的单词。 如果不存在最后一个单词,请返回 0 。 说明:一个单词是指仅由字母组成、不包含任何空格字符的 最大子字符串。 示例: 输入: "Hello Worl ...
分类:
编程语言 时间:
2020-09-02 16:58:47
阅读次数:
42
题目 Description Little Leticija is preparing for a programming exam. Even though she has solved a lot of tasks, there’s one still left unsolved, so she ...
分类:
其他好文 时间:
2020-08-31 13:30:01
阅读次数:
65
扰动法 应用两次扰动法。 \[ \large\begin{aligned} S_k(n)&=\sum_{i=0}^ni^k \\ &=\sum_{i=0}^n(i+1)^k-(n+1)^k \\ &=\sum_{i=0}^n\sum_{j=0}^k\binom{k}{j}i^j-(n+1)^k \\ ...
分类:
其他好文 时间:
2020-08-28 14:30:56
阅读次数:
40
SQLServer中删除重复数据的几个方法 数据库的使用过程中由于程序方面的问题有时候会碰到重复数据,重复数据导致了数据库部分设置不能正确设置…… 方法一declare@maxinteger,@idintegerdeclarecur_rowscursorlocalforselect主字段,count()from表名groupby主字段havingcount()>1opencur_rows
分类:
数据库 时间:
2020-08-26 17:14:59
阅读次数:
133
点击查看代码块 #include <bits/stdc++.h> #define ed end() #define bg begin() #define mkp make_pair #define pb push_back #define vv(T) v(v(T)) #define v(T) vec ...
分类:
其他好文 时间:
2020-08-21 16:38:12
阅读次数:
84