摘要:
Description The Department of National Defence (DND) wishes to connect several northern outposts by a wireless network. Two different communication te 阅读全文
摘要:
1 #include 2 #include 3 #include 4 using namespace std; 5 #define N 5 6 7 void ps(set s) 8 { 9 set::iterator i; 10 for (i=s.begin();i!=s.end();i++) 11 { 12 printf("... 阅读全文
摘要:
1 #include 2 #include 3 #include 4 #include 5 #include //定义pair的头文件 6 using namespace std; 7 #define N 5 8 9 map m; 10 11 void pm()//map输出函数 12 { 13 map::iterator i1; 14 for ... 阅读全文
摘要:
在c++中,vector是一个十分有用的容器。 作用:它能够像容器一样存放各种类型的对象,简单地说,vector是一个能够存放任意类型的动态数组,能够增加和压缩数据。 vector在C++标准模板库中的部分内容,它是一个多功能的,能够操作多种数据结构和算法的模板类和函数库。 为了使用vector,必 阅读全文
摘要:
一、List定义: List是stl实现的双向链表,与向量(vectors)相比, 它允许快速的插入和删除,但是随机访问却比较慢。使用时需要添加头文件 #include <list> 二、List定义和初始化: list<int>lst1; //创建空list list<int> lst2(5); 阅读全文
摘要:
另外要注意sort()的排序范围:数组a[ ]下标从0开始,sort(a+1,a+5)的范围是a[1]~a[4],是左闭右开区间!! 给字符串a本排序:sort(a.begin(),a.begin()+a.size()); 阅读全文
摘要:
知识点: (1) 随机取一个 a (2)如果 它不满足 a^(n-1)%n ==1 (3)则它一定是 合数 (4)退出 (5)如果它满足 a^(n-1)%n ==1 (6)则它是一个素数的概率是1/2 (7)回到 (1) if n < 2,152,302,898,747, it is enough 阅读全文
摘要:
Description There are N villages, which are numbered from 1 to N, and you should build some roads such that every two villages can connect to each oth 阅读全文
摘要:
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 9216 Accepted Submission(s): 6805 Problem Descrip 阅读全文
摘要:
Truck History Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 31871 Accepted: 12427 Description Advanced Cargo Movement, Ltd. uses trucks o 阅读全文