fre

HDU3400 三分套三分

馋奶兔 提交于 2021-01-03 11:40:44
题意 就是给你两条线段AB , CD ,一个人在AB以速度p跑,在CD上以q跑, 在其他地方跑速度是r。问你从A到D最少的时间。 三分AB ,然后再三分CD ,模板题目,这题卡精度 eps不能少 1 #include <cstdio> 2 #include <cstring> 3 #include <queue> 4 #include <cmath> 5 #include <algorithm> 6 #include < set > 7 #include <iostream> 8 #include <map> 9 #include <stack> 10 #include < string > 11 #include <vector> 12 #define pi acos(-1.0) 13 #define eps 1e-9 14 #define fi first 15 #define se second 16 #define rtl rt<<1 17 #define rtr rt<<1|1 18 #define bug printf("******\n") 19 #define mem(a,b) memset(a,b,sizeof(a)) 20 #define name2str(x) #x 21 #define fuck(x) cout<<#x" = "<<x<<endl 22

Linux性能优化实战学习笔记:第十六讲

≡放荡痞女 提交于 2020-12-13 16:34:15
一、free数据的来源 1、碰到看不明白的指标时该怎么办吗? 不懂就去查手册。用 man 命令查询 free 的文档、就可以找到对应指标的详细说明。比如,我们执行 man fre... 2、free数据的来源 [root@ccb-installment-api ~]# man free NAME free - Display amount of free and used memory in the system SYNOPSIS free [options] DESCRIPTION free displays the total amount of free and used physical and swap memory in the system, as well as the buffers and caches used by the kernel. The information is gathered by parsing /proc/meminfo. The displayed columns are: total Total installed memory (MemTotal and SwapTotal in /proc/meminfo) used Used memory (calculated as total - free - buffers -

Problem D. Country Meow 2018ICPC南京

…衆ロ難τιáo~ 提交于 2020-11-03 02:26:45
n个点求出最小圆覆盖所有点 退火算法不会,不过这题可以用三分套三分写 x轴y轴z轴各三分 1 #include <cstdio> 2 #include <cstring> 3 #include <queue> 4 #include <cmath> 5 #include <algorithm> 6 #include < set > 7 #include <iostream> 8 #include <map> 9 #include <stack> 10 #include < string > 11 #include <vector> 12 #define pi acos(-1.0) 13 #define eps 1e-8 14 #define fi first 15 #define se second 16 #define rtl rt<<1 17 #define rtr rt<<1|1 18 #define bug printf("******\n") 19 #define mem(a,b) memset(a,b,sizeof(a)) 20 #define name2str(x) #x 21 #define fuck(x) cout<<#x" = "<<x<<endl 22 #define f(a) a*a 23 #define sf(n) scanf("%d", &n) 24

lopatkin俄大神精简Windows 10 Enterprise 19041.331 20H1 Release x86-x64 EN-RU PIP

蹲街弑〆低调 提交于 2020-07-27 13:30:59
Microsoft Windows 10 Enterprise 19041.331 20H1 Release x86-x64 EN-RU PIP 生产年份:2020 版本:Windows 10 Enterprise 19041.331 20H1 Release 平台: x86-x64 系统要求:CPU-1 gz RAM-1-2 gb HD-4-6gb Video-c DirectX 9.0 Display-1024 x 768 语言:俄语,英语 原贴地址: http://emtrek.org/viewtopic.php?t=52439 下载地址: https://www.90pan.com/b1944674 密码:9tty 下载及安装教程: https://my.oschina.net/xiaogg/blog/3107397 CENA_X64FRE_EN-RU_PIP.iso CRC32: D2D73322 MD5: 960B1A5692941EBE1487D52782059894 SHA-1: B75083A7A6306AEC1BDAA92C0C311CC438EC2228 CENA_X86FRE_EN-RU_PIP.iso CRC32: 628AE0C7 MD5: 719EC0850E8E0D537419DA12B879277F SHA-1:

XVIII Open Cup named after E.V. Pankratiev. Ukrainian Grand Prix

北慕城南 提交于 2020-05-07 11:21:03
A. Accommodation Plan 对于已知的$K$个点,离它们距离都不超过$L$的点在树上是一个连通块,考虑在每种方案对应的离$1$最近的点统计。 即对于每个点$x$,统计离它距离不超过$L$的点数$call[x]$,再减去离它和它父亲距离都不超过$L$的点数$cext[x]$,然后用组合数计算方案数。 对于$call[x]$可以通过点分治+排序双指针$O(n\log^2n)$统计。 对于$cext[x]$,注意到$cext[x]=call[x]-csub[x]$,其中$csub[x]$表示$x$点子树中深度在$(dep[x]+L-dis(x,fa[x]),dep[x]+L]$的点数,二维数点问题,扫描线+树状数组维护即可$O(n\log n)$统计。 时间复杂度$O(n\log^2n)$。 #include<cstdio> #include<algorithm> using namespace std; typedef long long ll; const int N=100010,P=1000000007; int n,K,L,i,j,x,y,z,fac[N],inv[N],ans; int g[N],nxt[N<<1],v[N<<1],w[N<<1],ok[N<<1],ed,son[N],f[N],all,now; int call[N],csub[N],cnt

Linux 操作系统 — Kernel

霸气de小男生 提交于 2020-05-03 14:34:21
目录 文章目录 目录 趣解 Linux 内核 地基 第一层 跃层 趣解 Linux 内核 今天,我来为大家解读一幅来自 TurnOff.us 的漫画 “InSide The Linux Kernel” 。 TurnOff.us 是一个极客漫画网站,作者 Daniel Stori 画了一些非常有趣的关于编程语言、Web、云计算、Linux 相关的漫画。今天解读的便是其中的一篇。 地基 地基(底层)由一排排的文件柜组成,井然有序,文件柜里放置着 “文件” —— 电脑中的文件。左上角,有一只胸前挂着 421 号牌的小企鹅,它表示着 PID(Process ID) 为 421 的进程,它正在查看文件柜中的文件,这代表系统中正有一个进程在访问文件系统。在右下角有一只小狗,它是看门狗(Watchdog) ,这代表对文件系统的监控。 第一层 在这一层,最引人瞩目的莫过于中间的一块垫子,众多小企鹅在围着着桌子坐着。这个垫子的区域代表进程表。 左上角有一个小企鹅,站着,仿佛在说些什么这显然是一位家长式的人物,不过看起来周围坐的那些小企鹅不是很听话 —— 你看有好多走神、自顾自聊天的 —— “喂喂,说你呢,哇塞娃(171),转过身来”。它代表着 Linux 内核中的初始化(init)进程,也就是我们常说的 PID 为 1 的进程。桌子上坐的小企鹅都在等待状态(Wait)中,等待工作任务。 瞧瞧,垫子

lopatkin俄大神精简中文系统Windows 10 Pro 18363.592 19H2 Release x86-x64 ZH-CN SM

限于喜欢 提交于 2020-04-18 10:04:17
Microsoft Windows 10 Pro 18363.592 19H2 Release x86-x64 ZH-CN SM 生产年份:2019 版本:Windows 10 Pro 18363.592 19H2 Release 平台: x86-x64 系统要求:CPU-1 gz RAM-1-2 gb HD-4-6gb Video-c DirectX 9.0 Display-1024 x 768 语言:中文 原贴地址: http://emtrek.org/viewtopic.php?t=50999 下载地址: https://www.90pan.com/b1726277 密码:m402 下载及安装教程: https://my.oschina.net/xiaogg/blog/3107397 CPRA_X64FRE_ZH-CN_SM.iso CRC32: B3912634 MD5: BA390D930FC6C4D845D5FFA869ADAD69 SHA-1: 1A7DA536D66194F6F318E2C5D5D872AB63E07FEA CPRA_X86FRE_ZH-CN_SM.iso CRC32: A792097C MD5: 4838A7E608759D2C71CE482448A85C3D SHA-1:

lopatkin俄大神精简中文系统Windows 10 Pro 19041.21 20H1 Release x86-x64 ZH-CN SMS

你。 提交于 2020-04-18 09:19:34
Microsoft Windows 10 Pro 19041.21 20H1 Release x86-x64 ZH-CN SMS 生产年份:2020 版本:Windows 10 Pro 19041.21 20H1 Release 平台: x86-x64 系统要求:CPU-1 gz RAM-1-2 gb HD-4-6gb Video-c DirectX 9.0 Display-1024 x 768 语言:中文 原贴地址: http://emtrek.org/viewtopic.php?t=50998 下载地址: https://www.90pan.com/b1726272 密码:2pag 下载及安装教程: https://my.oschina.net/xiaogg/blog/3107397 CPRA_X64FRE_ZH-CN_SMS.iso CRC32: F484ECB8 MD5: 47099C1E8A228CA901B365E4FE8834B0 SHA-1: FB8DD6D57D9F09BF8C4FB468684E737761717E6C CPRA_X86FRE_ZH-CN_SMS.iso CRC32: 042B79F4 MD5: B1ECF784DC1F7DDE4DEB8208FC8304F7 SHA-1: