```python i = 2 while i <= 200: isPrimeNumber = True j = 2 while j < i: if(i % j == 0): isPrimeNumber=False break j += 1 if(isPrimeNumber == True): pr... ...
分类:
编程语言 时间:
2020-03-10 15:44:31
阅读次数:
891
Problem Description 对于表达式n^2+n+41,当n在(x,y)范围内取整数值时(包括x,y)(-39<=x<y<=50),判定该表达式的值是否都为素数。 Input 输入数据有多组,每组占一行,由两个整数x,y组成,当x=0,y=0时,表示输入结束,该行不做处理。 Output ...
分类:
其他好文 时间:
2020-03-09 13:33:47
阅读次数:
35
题目描述 题解 首先我们考虑一种做法,对于一棵树考虑枚举每个点为根去 $\text{dfs}$ ,然后建立出特征串的 $\text{SAM}$ ,每次走到的点计算 $\text{right}$ 集合大小即可。效率为 $O(size^2)$ 。 考虑另一种做法,我们可以点分治,考虑 $u→x→v$ 这 ...
分类:
其他好文 时间:
2020-03-08 21:58:15
阅读次数:
89
键盘输入一个整数n,接着输入n个实型数,分别求取这n个实型数的平方根。代码如下: 使用gcc编译,报错如下: 原因是没有链接数学库,加上-lm即可,-l是链接,m是数学库(math.h) 那我们怎么知道sqrt在哪个库呢? centos7下使用: nm -Do /lib64/*.so|grep sq ...
分类:
其他好文 时间:
2020-03-07 10:10:31
阅读次数:
96
#include <stdio.h> #include <math.h> #include <string.h> #include <malloc.h> typedef enum {false,true } bool; bool IsPrime(int n) { if(n==0||n==1) ret ...
分类:
其他好文 时间:
2020-03-06 21:49:41
阅读次数:
260
$\sigma_1^2=1,\sigma_2^2=3,\rho=0.75$ $\sigma_1^2=1,\sigma_2^2=1,\rho=0$ ...
分类:
编程语言 时间:
2020-03-06 21:47:58
阅读次数:
123
SQL脚本 思路:计算经纬度之间球面距离,返回单位:米 6378137*2*ASIN(SQRT(POWER(SIN((destination_lat-endpoint_lat)*ACOS(-1)/360),2) +COS(destination_lat*ACOS(-1)/180)*COS(endpo ...
分类:
其他好文 时间:
2020-03-06 20:23:59
阅读次数:
75
```python import matplotlib.pyplot as plt import numpy as np def norm_pdf(x,mu,sigma): pdf=np.exp(-((x-mu)**2)/(2*sigma**2))/(sigma*np.sqrt(2*np.pi)) ... ...
分类:
编程语言 时间:
2020-03-06 19:20:27
阅读次数:
92
1、scanf之间有逗号,输入时必须有逗号隔开。2、bool使用时需要加入头文件#include <stdbool.h>3、输入多行是要在每一行中加上“”双引号;4、在printf中想输出百分号是%%。5、在C语言中的双精度型求余数中,会因为表达的问题导致最后的结果不一定准确。6、c语言中,整数÷整 ...
分类:
编程语言 时间:
2020-03-06 10:38:05
阅读次数:
86
1),求正数的平方根 #正数求平方根 num=float(input('输入一个数字:')) sqrt=num**0.5 print('平方根为:',sqrt) 2),math.sqrt用于求负数和复数2平方根 import cmath num=float(input('输入一个数字:')) a=c ...
分类:
编程语言 时间:
2020-03-05 01:15:17
阅读次数:
58