题目描述 给定在笛卡尔坐标系的单位圆上的$N$个点(圆心为$(0, 0)$)。第$i$个点的坐标为$(cos(\frac{2 \pi T_i}{L}), sin(\frac{2 \pi T_i}{L}))$。 三个不同的点将在这$N$个点中等概率的随机,请求出这三个点构成的三角形的内切圆圆心的$x$ ...
分类:
其他好文 时间:
2020-03-18 09:40:05
阅读次数:
60
#include<bits/stdc++.h> using namespace std; typedef double db; const db eps=1e-6; const db pi=acos(-1); int n; struct Node{ int id;db h; Node(){} Nod ...
分类:
编程语言 时间:
2020-03-17 08:29:54
阅读次数:
74
1. 相关数学公式 球体表面积公式: S=4πr²=πD² 球体体积公式: 2.算法分析: 计算表面积和体积,均依赖球体半径。 所以需要先输入球体半径,然后根据公式计算出球体表面积和体积。 最终输出。 3.代码 #include <stdio.h> #define PI 3.1415927 //定义 ...
分类:
编程语言 时间:
2020-03-16 12:36:56
阅读次数:
1134
#include<iostream> #include<math.h> #define Pi 3.1415926 using namespace std; int main(){ int i,sinx,cosx; int line=0;//行数 float x=0; for(;line<25;x+= ...
分类:
其他好文 时间:
2020-03-15 00:12:14
阅读次数:
65
var R = 320; function setPosition(){ pivot2.position.x = - Math.sin(Math.PI/5)*R; pivot2.position.z = Math.cos(Math.PI/5)*R; pivot2.rotation.z = -Math ...
分类:
其他好文 时间:
2020-03-14 18:33:37
阅读次数:
67
树莓派/Debian 构建LAMP Web服务器并搭建WordPress博客(一) 一、前言 学习在您的Raspberry Pi上设置LAMP(Linux,Apache,MariaDB,PHP)堆栈,并将其配置为 Web 服务器。您将下载并安装 WordPress 并设置一个基本网站,您可以在与Pi ...
分类:
Web程序 时间:
2020-03-14 12:40:42
阅读次数:
75
https://www.cnblogs.com/lbssxz/p/11014911.html 这是网上看到的题目,以上是原博主的解答和题目来源(没找到别的题目来源) 题目大意: 城市交通费 【问题描述】 有 n 个城市,编号 1~n。其中 i 号城市的繁华度为 pi。省内有 m 条可以双向同行的高速 ...
分类:
其他好文 时间:
2020-03-12 09:17:50
阅读次数:
92
一. 二维数据曲线图1.1 绘制二维曲线的基本函数1.plot()函数 plot函数用于绘制二维平面上的线性坐标曲线图,要提供一组x坐标和对应的y坐标,可以绘制分别以x和y为横、纵坐标的二维曲线。 例: t=0:0.1:2*pi; x=2 * t; y=t.*sin(t).*sin(t); plot ...
分类:
其他好文 时间:
2020-03-11 10:48:56
阅读次数:
85
1 #include <bits/stdc++.h> 2 #define dbg(x) cout << #x << "=" << x << endl 3 #define eps 1e-8 4 #define pi acos(-1.0) 5 6 using namespace std; 7 typed ...
分类:
其他好文 时间:
2020-03-10 01:12:16
阅读次数:
52
题意: 有一个概率Q,Q的初始值为1,一个界限P,以及N件物品,每件物品都有自身的价值vi,以及一个概率下降比率pi(表示选取这件物品会导致Q变为 Q*(1-pi))。 问在Q大于P的条件下,最大的收益值。 核心思想:01背包的思想,选取正确的 量 作为背包容量。 题解思路: 如果以概率作为‘背包容 ...
分类:
其他好文 时间:
2020-03-09 22:35:44
阅读次数:
64