摘要:
题意:介绍一种控制台下的文件目录输出格式,要求进行模拟.详见代码代码如下:#include <cstdlib>#include <cstring>#include <cstdio>#include <iostream>#include <stack>#include <string>#include <vector>#include <algorithm>using namespace std;/* 目测应该要抽象出文件和目录这两个结构 对于文件我们可以有一个很清醒的认识,也就是说所 有的文件总是离 阅读全文
摘要:
DP第二题,做过很多次了,这次没用记忆化搜索,而是先排序之后for循环进行动态规划.代码如下:#include <cstdlib>#include <cstring>#include <cstdio>#include <cmath>#include <algorithm>using namespace std;int N;struct Point { double x, y; void read() { scanf("%lf %lf", &x, &y); }}p[105];int main() { 阅读全文