摘要: 。 阅读全文
posted @ 2020-06-12 13:19 Gold_stein 阅读(118) 评论(1) 推荐(0) 编辑
摘要: 看了某个up猪的视频 突然有点斗志 想写一篇数学播客 然后仔细想了想 欸 我脑中好像并不存在 所谓的知识网络 看能不能挤出来吧 大雾 阅读全文
posted @ 2020-04-06 22:24 Gold_stein 阅读(163) 评论(1) 推荐(0) 编辑
摘要: 果然这就是大佬🐴! QAQ 阅读全文
posted @ 2020-03-23 00:01 Gold_stein 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 虽然也才只过去一天而已。。 但是我觉得这几天的经历似乎会留在我的脑海中伴我一生 现在就是超级怀念前几天的时光啊 阅读全文
posted @ 2019-11-18 13:20 Gold_stein 阅读(161) 评论(1) 推荐(0) 编辑
摘要: 蒟蒻只能打一打DIV2的基础题 太卑微了 这道题的本质其实是再建一个数组,如果s串i位置是0那么就给a[i]赋值为1,表示要累加个数,如果是1那么就把a[i]赋值为-1,表示个数减一,最后求最大子段和,那么就可以O(n)实现了。 附上最大子段和blog链接https://blog.csdn.net/ 阅读全文
posted @ 2019-11-13 15:18 Gold_stein 阅读(151) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/forever_dreams/article/details/81051578 阅读全文
posted @ 2019-11-10 14:19 Gold_stein 阅读(76) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/kma093/p/9747300.html 阅读全文
posted @ 2019-11-10 14:14 Gold_stein 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 哇这道题我真的是被机惨了。。。 太真实了。。 #include<bits/stdc++.h> #define R register int using namespace std; const int N=2005,inf=0x3f3f3f3f,M=10005; inline int read() 阅读全文
posted @ 2019-11-06 15:30 Gold_stein 阅读(481) 评论(0) 推荐(0) 编辑
摘要: 啊我沙雕了,竟然以为DJ的邻接矩阵不用初始化。。 阅读全文
posted @ 2019-11-04 13:36 Gold_stein 阅读(206) 评论(0) 推荐(0) 编辑
摘要: #include #define R register int using namespace std; const int inf=0x3f3f3f3f; inline int read() { int x=0,f=1;char ch=getchar(); while(ch'9') if(ch=='-') f=-1,ch=getchar(); while(ch>='0'... 阅读全文
posted @ 2019-11-04 13:16 Gold_stein 阅读(140) 评论(0) 推荐(0) 编辑