摘要:
一:数据类型和取值范围1)64bit 位数据的类型,输入,输出带符号的(long long):数据范围:-9223372036854775808(19位>-1*10^19) - +9223372036854775807(19位<1*10^19)typename:long long x;input:scanf("%I64d", &x);output:printf("%I64d", x);无符号(unsigned long long):只要用之前加上unsigned 和 改成%I64u就行,数据范围:0 - +18446744073709 阅读全文
摘要:
ZOJ2421 1 /* 2 * PKU2081.cpp 3 * 4 * Created on: 2011-3-19 5 * Author: Administrator 6 */ 7 8 #include <stdio.h> 9 //#include <set>10 #include <ext/hash_set>11 using namespace std;12 using namespace __gnu_cxx;13 14 const int MAXK = 500000 + 1;15 16 //set<int> s1;17 hash_set&l 阅读全文