姿态角(Euler角)pitch yaw roll飞行器的姿态角并不是指哪个角度,是三个角度的统称。它们是:俯仰、滚转、偏航。你可以想象是飞机围绕XYZ三个轴分别转动形成的夹角。地面坐标系(earth-surface inertial reference frame)Sg OXgYgZg<ignor ...
分类:
其他好文 时间:
2017-11-18 23:47:06
阅读次数:
470
1、Euler's continued fraction formula == The original formula ==[[Euler]] derived the formula as connecting a finite sum of products with a finite cont ...
分类:
其他好文 时间:
2017-11-12 14:14:01
阅读次数:
332
P1593 因子和新算法:#define ni 逆元先质因数分解,(1+p1^1+p1^2...p1^x)*(1+p2^1+p2^2...p2^x)然后套等比数列公式就可以了。 ...
分类:
其他好文 时间:
2017-10-27 20:36:14
阅读次数:
339
BZOJ 2818 Gcd 思路:枚举每个质数pi,求出∑phi[n/pi],对phi函数前缀和处理一下。 代码: 线性筛速度大约是普通筛法的5倍 ...
分类:
其他好文 时间:
2017-10-22 22:15:03
阅读次数:
141
1 //直接求解欧拉函数 2 int Euler(int n){ 3 int res=n,a=n; 4 for(int i=2;i*i1) res=res/a*(a-1); 11 return res; 12 } 13 14 //筛法求解欧拉函数 15 void Euler(){ 16 phi[1]... ...
分类:
其他好文 时间:
2017-10-14 16:51:42
阅读次数:
148
project euler 113 对于1个数字,如果他不减或者不增称为bouncy number。统计1~10^100中的bouncy number 思路:分为两种计算 1.这个数中只出现了一个数字,那么对于i位的数字有9种,故总计有9 * 100种 1.这个数中只出现了一个数字,那么对于i位的数 ...
分类:
其他好文 时间:
2017-10-12 00:53:32
阅读次数:
174
1040 最大公约数之和 题目来源: rihkddd 基准时间限制:1 秒 空间限制:131072 KB 分值: 80 难度:5级算法题 1040 最大公约数之和 题目来源: rihkddd 基准时间限制:1 秒 空间限制:131072 KB 分值: 80 难度:5级算法题 1040 最大公约数之和 ...
分类:
其他好文 时间:
2017-10-05 12:20:38
阅读次数:
176
http://www.ixueshu.com/document/9d727c07ec069e71.html ...
分类:
其他好文 时间:
2017-09-28 14:18:31
阅读次数:
136
[Perl 6][Project Euler] Problem 9 - Special Pythagorean triplet Description A Pythagorean triplet is a set of three natural numbers, a < b < c, for wh ...
分类:
其他好文 时间:
2017-09-26 01:08:52
阅读次数:
154
Euler theorem Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 524288/524288 K (Java/Others)Total Submission(s): 742 Accepted Submission(s): 584 P ...
分类:
其他好文 时间:
2017-09-23 12:19:22
阅读次数:
197