(PP 1.1) Measure theory: Why measure theory - The Banach-Tarski Paradox ball -> tear down to pieces -> rigid transformation (translation/rotation) -> ...
分类:
其他好文 时间:
2019-06-07 11:06:02
阅读次数:
93
题目大意:求从 1 到 N 中共有多少个数可以表示成 $M^K,K \gt 1$。$N \le 1e18$ 题解: 发现 N 很大,若直接枚举 M 的话有 1e9 级别的数据量,肯定超时,因此考虑枚举幂次。发现对于幂次为 k 的符合条件的数有 N 开 K 次方下取整个,同时注意到 k 的取值范围最大 ...
分类:
其他好文 时间:
2019-06-07 11:01:48
阅读次数:
71
1. #include<stdio.h>int add(int x,int y){ int z; z=x+y; return z;}int minus(int x,int y){ int z; z=x-y; return z;}int multip(int x,int y){ int z; z=x* ...
分类:
其他好文 时间:
2019-06-06 15:59:42
阅读次数:
81
#include <stdio.h> #include <math.h> int main(int argc, char* argv[]) { int add(int a,int b); int minus(int a,int b); int multip(int a,int b); int quo ...
分类:
其他好文 时间:
2019-06-06 15:33:13
阅读次数:
94
1 #include 2 #include 3 4 int prime(int p); 5 void Goldbach(int n); 6 7 int main() 8 { 9 int m, n, i, cnt; 10 11 scanf_s("%d %d", &m, &n); 12 if (prim... ...
分类:
其他好文 时间:
2019-06-04 09:30:58
阅读次数:
149
引言 之前因为调整样式把博客园的样式毁了,所以一直在自己的另一个博客上更新,有兴趣的可以去观望一下: "http://blog.yunlambert.top/" 最近还是把博客园拾起来吧。。。。。 最近看到一个多线程代码如下: C++ typedef unsigned long long ULL; ...
分类:
其他好文 时间:
2019-05-30 21:59:38
阅读次数:
178
Ugly Numbers UVA - 136 Ugly numbers are numbers whose only prime factors are 2, 3 or 5. The sequence 1, 2, 3, 4, 5, 6, 8, 9, 10, 12, 15, ...shows the ...
分类:
其他好文 时间:
2019-05-30 17:26:31
阅读次数:
118
编程对内存的了解要非常的熟悉!!!! 参考:http://www.bangnishouji.com/tools/Byte_calculate.html 字节换算工具 字节换算器 通过字节换算器你可以轻松的知道存储空间1G等于多少KB,1M等于多少KB,1T等于多少KB,一个字节等于多少位。你可以在左 ...
分类:
其他好文 时间:
2019-05-30 14:43:11
阅读次数:
622
图为开源自动化运维体系链 1、cobbler实现自动装机 2、saltstack实现工程自动化配置 3、kubernetes实现容器自动化编排 4、zabbix实现自动化监控 5、elastic实现应用日志自动化收集 6、jenkins实现开发持续化交付 原理分析 cobbler简介 Cobbler ...
分类:
其他好文 时间:
2019-05-29 20:53:49
阅读次数:
158