这名用户暂未设置签名。
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
在讨论《89分 倒数第二个点tle了》回复:
数据太多写不上来,大概就是一堆0里面倒数第n行有个1 把记忆花搜索的条件改为!=-1试试
在讨论《求问为什么 STL方法分数140》回复:
@[Inea](/space/show?uid=99716) emm我下载了测试数据,和本地跑的结果确实不一样,和spj没关系吧?
前十组AC,后面十组WA,源代码如下```cpp ```#include"pch.h" #include #include #include #include using namespace std; int main() { int height[100005] = {0};//记录高度 int k = 1, ans…
//均分纸牌,双指针贪心`````cpp //均分纸牌,双指针贪心 #include "pch.h" #include #include using namespace std; int main() { int n, sum = 0,count=0, num[105] = {0}; cin >> n; int tai…
//均分纸牌,双指针贪心 #include "pch.h" #include #include using namespace std; int main() { int n, sum = 0,count=0, num[105] = {0}; cin >> n; int tail = n, head = 1; for…