摘要:
Codeforces Round #597 (Div. 2 Consider the set of all nonnegative integers: 0,1,2,…. Given two integers a... 阅读全文
摘要:
定义:单链表是一种链式存取的数据结构,用一组地址任意的存储单元存放线性表中的数据元素。链表中的数据是以节点来表示的,每个结点的构成:元素( 数据元素的映象) + 指针(指示后继元素存储位置),元素就是存储数据的存... 阅读全文
摘要:
特点:线性表的顺序存储是指用一组地址连续的存储单元依次存储线性表中的各个元素。作用:线性表中在逻辑结构上相邻的数据元素存储在相邻的物理存储单元中,即通过数据元素物理存储的相邻关系来反映数据元素之间逻辑上的相邻关系... 阅读全文
摘要:
#include#include#include#include#include#includeusing namespace std;const int maxn=1000+10; int n,m;int bc... 阅读全文
摘要:
定义:模板(template)是实现代码重用机制的一种工具,它可以实现类型参数化,把类型定义为参数(模板元编程),从而实现了真正的代码可重用性。模板是用来批量生成功能和形式都几乎相同的代码的。编译器就能在需要的时... 阅读全文
摘要:
Problem DescriptionAlmost everyone likes kebabs nowadays (Here a kebab means pieces of meat grilled on a l... 阅读全文
摘要:
Problem DescriptionGabiluso is one of the greatest spies in his country. Now he’s trying to complete an “i... 阅读全文
摘要:
每天坚持写总结:2019.11.4今天还是在看网络流,网络流不会卡时间,除非丧心病狂,主要还是考察建图,这个我觉得可能会出到什么对偶图建图什么的,所以建图还是重点,大概思想的话还是通过限制流量出发的考虑建图,所以... 阅读全文
摘要:
Problem DescriptionOur geometry princess XMM has stoped her study in computational geometry to concentrate... 阅读全文
摘要:
DescriptionAlice, a charming girl, have been dreaming of being a movie star for long. Her chances will com... 阅读全文