摘要:
C. Journey time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output There are n cities and n - 1 阅读全文
摘要:
vector 是一个容器, 它能存放各种类型的对象,简单的说, vector 是一个可以存放任意类型的动态数组,可以动态改变大小。 vector 的功能 vector<int>c; c.clear() // 清空数组中的全部元素 c.empty() // 判断容器是否为空 c.erase(pos) 阅读全文