上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 34 下一页
摘要: 参考资料: [1]:菜鸟教程 1 #include<bits/stdc++.h> 2 using namespace std; 3 4 char s[100]="0123456789\0"; 5 /** 6 如果读取s的格式为scanf("%s",s+1);从s+1位置开始读取; 7 那么,len= 阅读全文
posted @ 2019-05-06 11:17 HHHyacinth 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 省赛倒计时5天 写下这篇博客,主要是防止自己遗忘; 剩下的这5天里,训练赛的题应该不会补太多,花点时间把自己学过的东西温习一下; 省赛结束,有时间在补补能补的动的题(tql); 还是太菜了,orz 2019.5.1 备战省赛组队训练赛第十六场 题目来源:FZU Code Carnival 比赛记录 阅读全文
posted @ 2019-05-06 09:23 HHHyacinth 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 传送门 比赛情况: 题解: 阅读全文
posted @ 2019-05-06 09:22 HHHyacinth 阅读(64) 评论(0) 推荐(0) 编辑
摘要: 传送门 比赛状况: 题解:https://www.cnblogs.com/QLU-ACM/p/10816527.html A : 打表找规律(手动艾特mxl) a1=3,a2=5 a3=7,a4=9 ................. ai=2*i+1,a(i+1)=2*(i+1)+1 (i为奇数) 阅读全文
posted @ 2019-05-06 09:10 HHHyacinth 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 传送门 比赛状况: 题解:https://www.cnblogs.com/QLU-ACM/p/10803127.html 补题: G 阅读全文
posted @ 2019-05-06 09:07 HHHyacinth 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 传送门 比赛状况: 题解:https://www.cnblogs.com/QLU-ACM/p/10803598.html 阅读全文
posted @ 2019-05-06 09:04 HHHyacinth 阅读(100) 评论(0) 推荐(0) 编辑
摘要: 恢复内容开始 传送门 参考资料: [1]:https://blog.csdn.net/mmk27_word/article/details/89788448 题目描述: The Fool comes to a cross-road, filled with energy, confidence an 阅读全文
posted @ 2019-05-06 08:05 HHHyacinth 阅读(449) 评论(0) 推荐(0) 编辑
摘要: 传送门 题目描述 Now given two integers x and y, you can reverse every consecutive three bits in arbitrary number’s binary form (any leading zero can be taken 阅读全文
posted @ 2019-05-02 19:17 HHHyacinth 阅读(402) 评论(0) 推荐(0) 编辑
摘要: UPC备战省赛组队训练赛第十七场 with zyd,mxl G: Greatest Common Divisor 题目描述 There is an array of length n, containing only positive numbers. Now you can add all num 阅读全文
posted @ 2019-05-02 16:37 HHHyacinth 阅读(665) 评论(0) 推荐(0) 编辑
摘要: 传送门 题意: 给出一个有 N 个数字([-1000 , 1000],N ≤ 105)的环状序列; 让你求一个和最大的连续子序列,并记录起始点。 要求这个连续子序列的长度小于等于K,加和相同的不同区间,输出起点最小的那组答案。 题解: 因为序列是环状的,所以可以在序列后面复制一段(或者复制前k - 阅读全文
posted @ 2019-04-29 20:48 HHHyacinth 阅读(111) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 34 下一页