首页 > TAG信息列表 > 10.17

里扣刷题第一周(10.10-10.17)

数组+链表+哈希表 题目总结。 前言 第一周主要学习了基础的数据结构知识,数组,哈希表和链表。 一、数组 定义:数组是存放在连续内存空间上的相同类型数据的集合。 具体代表性题目记录: 1)34题:用二分法解决。定义两个指针(left,right),分别指向数组的头和尾,然后移动。 难点:区间的开

省内联考 10.17 随机过程(process)

简要题意: 在长度为 \(l\) 的数轴上均匀随机 \(n\) 个区间,求被至少 \(k\) 个区间覆盖的长度期望。 这个描述已经足够形式化了,下面直接开始推导。 设 P_x 为每个点合法的概率,二项式反演有: $$P_x=\sum_{i=k}^n\binom{n}{i}(2x(1-x))^i(1-2x(1-x))^{n-i}$$ 枚举 \(k\),则 $$answer =

10.17知识整理

1.取小数后几位只需要 #include<bits/stdc++.h> using namespace std; int main() { double n; cin>>n; cout<<fixed<<setprecision("几位小数")<<n; } ------------------------------------------------------------------------------------

10.17 linux 文件权限

文件权限模拟练习 [root@wen ~]# groupadd incahome [root@wen ~]# usersdd oldboy -g incahome-bash: usersdd: command not found[root@wen ~]# useradd oldboy -g incahome[root@wen ~]# id oldboyuid=502(oldboy) gid=502(incahome) 组=502(incahome)[root@wen ~]# useradd ol

【蓝桥杯历年题】2020蓝桥杯A组省赛第二场(10.17)

文章目录 第一题:门牌制作(枚举)答案:624 第二题:既约分数(最大公约数)答案:2481215 第三题:蛇形填数 题目链接 第一题:门牌制作(枚举) 答案:624 #include <iostream> using namespace std; int get(int x) { int res = 0; while(x){ if(x % 10 == 2) res++;

2020.10.16-10.17补题报告

B - Power Sequence Let's call a list of positive integers a0,a1,...,an−1a0,a1,...,an−1 a power sequence if there is a positive integer cc, so that for every 0≤i≤n−10≤i≤n−1 then ai=ciai=ci. Given a list of nn positive integers a0,a1,...,an−

20201015-2 alpha week 1/2 Scrum立会报告+燃尽图 03

此作业参见:https://edu.cnblogs.com/campus/nenu/2020Fall/homework/11347 Scrum立会 要求从今天起开始的7天中,至少5天,每天召开Scrum立会,当天发布Scrum报告。报告由本组团队账号提交。 每次Scurm会议满分50。Scrum会议不满5次的,每缺1次倒扣50分。当天未提交 Scurm报告,在24小时内补

10.17

第七题: 1.定义方法 isSXH(int num)  功能:判断数字num是否是水仙花数,如果是返回true,如果不是返回false 2.在主方法中,键盘录入数据,调用isSXH方法,判断传入的数据是否为水仙花数,如果是就输出"xxx为水仙花数",否则就输出"xxx不是水仙花数"  演示:      请输入一个三

10.17 模拟赛

10.17 模拟赛 T1 直接看题解吧,懒得写了,和前天T2的思路差不多 #include<iostream> #include<cstring> #include<algorithm> #include<cstdio> #include<vector> #include<queue> #include<stack> #include<bitset> #include<set> using name

10.17 学习记录

gcd int gcd(int a,int b){ return b ? gcd(b,a%b) : a;}//lcm(a,b)=a*b/gcd(a,b); //直接使用__gcd(a,b);   快速幂 int pow_mod(int a, int n, int m){ long long ans = 1; while(n){ if(n&1){ ans = (ans * a) % m; } a = (a