码迷,mamicode.com
首页 >  
搜索关键字:bit    ( 10514个结果
Installing teamviewer 9 on 64-bit Ubuntu 13.10 (转载)
While trying to install Teamviewer 9 on 64-bit Ubuntu 13.10, you’ll get a dependencies error such as this:Unpacking teamviewer (from teamviewer_linux_...
分类:系统相关   时间:2015-02-25 06:56:01    阅读次数:310
POJ 3252 round numbers(数位DP)
#include #include #include #include #include #include #include #include #include #include #include #define LL long long using namespace std; int dp[50][50][50]; int bit[40]; int dfs(int po...
分类:其他好文   时间:2015-02-23 15:28:52    阅读次数:117
HDU 3652 B-number(数位DP)
#include #include #include #include #include #include #include #include #include #include #define LL long long using namespace std; int dp[15][15][2][10]; int bit[15]; int dfs(int pos,int n...
分类:其他好文   时间:2015-02-23 15:27:52    阅读次数:114
HDOJ 1196 Lowest Bit
【题意】:给一个数,找其二进制的最低位n,输出2^n。比如 11010为10输出2,11000 is 1000输出8。 思路:按照二进制算法来就行。 【AC代码】: #include #include #include #include #include #include using namespace std; #define MAX 30 int main() {...
分类:其他好文   时间:2015-02-22 12:16:55    阅读次数:164
士兵杀敌1(树状数组)
首先,要先讲讲树状数组:树状数组(Binary Indexed Tree(BIT), Fenwick Tree)是一个查询和修改复杂度都为log(n)的数据结构。主要用于查询任意两位之间的所有元素之和,但是每次只能修改一个元素的值;经过简单修改可以在log(n)的复杂度下进行范围修改,但是这时只能查...
分类:编程语言   时间:2015-02-20 11:56:35    阅读次数:205
比特(位,bit),字节(Byte),字符的区别
比特(位):英文bit,是计算机晶体管的一种状态(通电与断电).就是0与1,真与假,是计算机最基本的传输单位. 示例: 2bit : 10; 4bit : 1111; 8bit : 1111 1111; 字节:英文Byte 1.是计算机信息技术用于计量存储容量的一种计量单位 1B(Byte) = 8bit; 1KB = 1024B(Byte); 1MB = 1024KB(...
分类:其他好文   时间:2015-02-18 09:36:23    阅读次数:132
不同系统平台下Java默认的安装路径
下面以Oracle的JDK7update 51为例:? 32-bit JDK on Windows:C:\Program Files (x86)\Java\jdk1.7.0_51? 64-bit JDK on Windows:C:\Program Files\Java\jdk1.7.0_51? Ma...
分类:编程语言   时间:2015-02-17 11:33:02    阅读次数:227
poj 1502 MPI Maelstrom Dijkstra算法的简单运用 ,呵呵,,我估计有很多人都没看懂什么意思,我也看了很久
BIT has recently taken delivery of their new supercomputer, a 32 processor Apollo Odyssey distributed shared memory machine with a hierarchical communication subsystem. Valentine McKee's research advisor, Jack Swigert, has asked her to benchmark the new sy...
分类:编程语言   时间:2015-02-16 22:12:09    阅读次数:392
Cannot load 64-bit SWT libraries on 32-bit JVM解决方案
问题描述:今天在windows下使用Eclipse时,发现运行不了Eclipse。怎么都运行不了,笔者是windows 8.1 (X64)的系统,windows的Eclipse好久没有使用了,开始怀疑可能是兼容性的问题,用了管理员模式和兼容性模式发现还是都还是不能运行。解决办法:突然想起来Eclipse里面有日志文件,以前都没怎么研究过日志文件,这个时候就可以发现日志文件的重要性了。 打开Ecli...
分类:其他好文   时间:2015-02-15 19:27:31    阅读次数:335
hdu1047 Integer Inquiry 多次大数相加
转载请注明出处:http://blog.csdn.net/u012860063题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1047Problem DescriptionOne of the first users of BIT's new super...
分类:其他好文   时间:2015-02-14 18:48:52    阅读次数:175
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!