码迷,mamicode.com
首页 >  
搜索关键字:bit    ( 10514个结果
2020 BIT冬训-二分三分快速幂矩阵 L - Decode the Strings HDU - 2371
Problem Description Bruce Force has had an interesting idea how to encode strings. The following is the description of how the encoding is done:Let x1 ...
分类:其他好文   时间:2021-02-19 13:18:41    阅读次数:0
字节相关的定义、举例
什么是字节 位(bit):是计算机 内部数据 储存的最小单位,11001100是一个八位二进制数。 字节(byte):是计算机中 数据处理 的基本单位,习惯上用大写B来表示。 1B(byte,字节):8bit(位) 字符:是指计算机中使用的字母、数字、字和符号。 1bit表示1位 1Byte表示一个 ...
分类:其他好文   时间:2021-02-18 13:40:00    阅读次数:0
树套树(splay套线段树) -AcWing 2476
树套树(splay套线段树) -AcWing 2476 本来想着用multiset套线段树的,结果一直T。改成常数小的splay才过,写完人都傻了^^ /* splay套线段树 */ #include <bits/stdc++.h> using namespace std; const int N ...
分类:Windows程序   时间:2021-02-18 13:37:49    阅读次数:0
卡特兰数
卡特兰数 \(C_{2n}^{n} \: C_{2n}^{n - 1} \: = \: \frac{(2n)!}{n! \: n!} \: - \: \frac{(2n)!}{(n - 1)! \: (n + 1)!} \: = \: \frac{(2n)! \: (n + 1) \: - \: ( ...
分类:其他好文   时间:2021-02-18 13:33:34    阅读次数:0
2020 BIT冬训-二分三分快速幂矩阵 G - Kolya and Tanya CodeForces - 584B
Problem Description Kolya loves putting gnomes at the circle table and giving them coins, and Tanya loves studying triplets of gnomes, sitting in the ...
分类:其他好文   时间:2021-02-18 13:33:21    阅读次数:0
[CF19C] Deletion of Repeats - 贪心,hash
有一个字符串。它里面有许多不同的字母,这些字母用数字来标记,而且每个字母最多出现10次。现在要求按一定的规则删除字符串中的重复部分:首先找到最短的重复部分(如果有多个就选择最左边的),然后删掉它的左半部分和左边的全部字母。求最终结果。 ...
分类:其他好文   时间:2021-02-18 13:14:40    阅读次数:0
POJ3784 Running Median 题解
题目描述 For this problem, you will write a program that reads in a sequence of 32-bit signed integers. After each odd-indexed value is read, output the m ...
分类:其他好文   时间:2021-02-18 13:06:04    阅读次数:0
最小生成树 : Kruskal
https://www.acwing.com/problem/content/1143/ \(裸题\) #include <bits/stdc++.h> using namespace std; #define IO ios::sync_with_stdio(false);cin.tie(0); c ...
分类:其他好文   时间:2021-02-17 14:58:39    阅读次数:0
Apollo versus Pan(CF1466E)(位运算)
题意: 给定长度为 \(n\) 的序列 \(x\)。 求 \(\sum^{n}_{i=1} \sum^{n}_{j=1} \sum^{n}_{k=1} (x_{i}\ \& \ x_{j})\times (x_{j}\ |\ x_{k})\text{}\) 想法: 首先进行化简: . \(\sum^ ...
分类:其他好文   时间:2021-02-16 12:13:36    阅读次数:0
2020 BIT冬训-贪心 K - USB vs. PS/2 CodeForces - 762B
Problem Description Due to the increase in the number of students of Berland State University it was decided to equip a new computer room. You were gi ...
分类:其他好文   时间:2021-02-16 12:07:01    阅读次数:0
10514条   上一页 1 ... 11 12 13 14 15 ... 1052 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!