摘要: 阅读全文
posted @ 2019-03-27 11:05 LightAc 阅读(191) 评论(0) 推荐(0) 编辑
摘要: 第一题 第二题 阅读全文
posted @ 2019-03-26 22:58 LightAc 阅读(301) 评论(0) 推荐(0) 编辑
摘要: 内容:https://www.cnblogs.com/best/p/7474442.html#_label0 网上视频:https://www.bilibili.com/video/av14813510/ 资料: 权威Git书籍 ProGit(中文版) -> https://gitee.com/pr 阅读全文
posted @ 2019-03-24 16:09 LightAc 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 第一题 第二题 阅读全文
posted @ 2019-03-24 13:49 LightAc 阅读(145) 评论(0) 推荐(0) 编辑
摘要: #include #include #include using std::cin; using std::cout; using std::endl; using std::string; void next(string & str,int n,string * store,int &m); void swap(string & str,int location1,int location... 阅读全文
posted @ 2019-03-23 23:18 LightAc 阅读(134) 评论(0) 推荐(0) 编辑
摘要: //#include #include #include using namespace std; int N; // 1 tree[maxn + 5]; // tree[i]表示节点i的相邻节点 int d[maxn + 5]; // d[i]表示以i为根的子树的节点个数 #define ... 阅读全文
posted @ 2019-03-23 20:00 LightAc 阅读(100) 评论(0) 推荐(0) 编辑
摘要: Period POJ 1961 阅读全文
posted @ 2019-03-23 18:08 LightAc 阅读(230) 评论(0) 推荐(0) 编辑
摘要: A. Example Input 91 3 3 6 7 6 8 8 9Output 4 1 #include <iostream> 2 3 using namespace std; 4 5 int main () { 6 int n; 7 cin >> n; 8 int a[10010]; 9 fo 阅读全文
posted @ 2019-03-23 16:29 LightAc 阅读(229) 评论(0) 推荐(0) 编辑
摘要: 问题一 Input: 5 50 0 5 0 00 4 3 8 29 5 7 2 71 9 6 5 41 0 0 6 2 Output: 4 Input: 10 100 0 0 0 0 0 0 0 0 00 5 2 6 4 3 1 7 8 00 6 4 2 3 5 1 4 6 00 3 6 4 1 2 阅读全文
posted @ 2019-03-22 20:34 LightAc 阅读(172) 评论(0) 推荐(0) 编辑
摘要: Examples 输入 5 8 2 3 1 1 2 输出 4 输入 7 10 1 3 4 2 1 4 2 输出 2 输入 5 15 5 5 5 5 5 输出 1 输入 5 16 5 5 5 5 5 输出 2 输入 5 26 5 5 5 5 5 输出 -1 Note 在第一个样例中,泰泰学长第一天可以 阅读全文
posted @ 2019-03-22 19:27 LightAc 阅读(105) 评论(0) 推荐(0) 编辑
返回顶端