会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
ChenThree
首页
新随笔
联系
管理
2018年11月7日
左偏树
摘要: luogu3377 #include<cstdio> #include<cstring> #include<cmath> #include<algorithm> #include<ctime> #include<queue> #include<iostream> #include<stack> #i
阅读全文
posted @ 2018-11-07 14:12 ChenThree
阅读(114)
评论(0)
推荐(0)
2018年10月11日
注意!!
摘要: 链表的头跟尾的删除与添加要特判 链表为空要特判 pool的pt位置与后面要对应 #include<cstdio> using namespace std; int readint(){ int ans=0,f=1; char c=getchar(); while(!(c>='0'&&c<='9'))
阅读全文
posted @ 2018-10-11 00:48 ChenThree
阅读(160)
评论(0)
推荐(0)
2018年9月18日
leetcode
摘要: 4 两个排序数组的中位数 1 class Solution { 2 public: 3 double findMedianSortedArrays(vector<int>& nums1, vector<int>& nums2) { 4 int n=nums1.size(),m=nums2.size(
阅读全文
posted @ 2018-09-18 11:50 ChenThree
阅读(150)
评论(0)
推荐(0)
2017年12月22日
cf453div2E
摘要: 很有趣的一道题 只有奇圈意味着只有单圈 然后dfs求出单圈 p[x]=y表示[x,y]ok 然后二分求解 1 #include<cstdio> 2 #include<cstring> 3 #include<cmath> 4 #include<ctime> 5 #include<iostream> 6
阅读全文
posted @ 2017-12-22 15:03 ChenThree
阅读(115)
评论(0)
推荐(0)
2017年12月21日
tarjan 强联通分量和割点
摘要: 1 #include<cstdio> 2 #include<cstring> 3 #include<cmath> 4 #include<ctime> 5 #include<iostream> 6 #include<algorithm> 7 #include<queue> 8 #include<sta
阅读全文
posted @ 2017-12-21 00:32 ChenThree
阅读(101)
评论(0)
推荐(0)
2017年12月17日
LCS LIS
摘要: 1 #include<cstdio> 2 #include<cstring> 3 #include<cmath> 4 #include<ctime> 5 #include<iostream> 6 #include<algorithm> 7 #include<queue> 8 #include<set
阅读全文
posted @ 2017-12-17 14:16 ChenThree
阅读(115)
评论(0)
推荐(0)
补个线段树
摘要: 1 #include<cstdio> 2 #include<cstring> 3 #include<cmath> 4 #include<ctime> 5 #include<iostream> 6 #include<algorithm> 7 #include<queue> 8 #include<set
阅读全文
posted @ 2017-12-17 11:44 ChenThree
阅读(103)
评论(0)
推荐(0)
2017年12月16日
洛谷1522
摘要: 挺有意思的hhh有个坑 1 #include<cstdio> 2 #include<cstring> 3 #include<cmath> 4 #include<ctime> 5 #include<iostream> 6 #include<algorithm> 7 #include<queue> 8
阅读全文
posted @ 2017-12-16 00:28 ChenThree
阅读(94)
评论(0)
推荐(0)
2017年12月5日
AC自动机
摘要: 待补
阅读全文
posted @ 2017-12-05 12:21 ChenThree
阅读(90)
评论(0)
推荐(0)
2017年12月4日
WF 2017 I
摘要: 这么sb吗..floyd即可 1 #include<cstdio> 2 #include<cstring> 3 #include<cmath> 4 #include<ctime> 5 #include<iostream> 6 #include<algorithm> 7 #include<queue>
阅读全文
posted @ 2017-12-04 18:26 ChenThree
阅读(187)
评论(1)
推荐(0)
WF2017 E
摘要: WF最水的题 没有之一 二分答案即可 1 #include<cstdio> 2 #include<cstring> 3 #include<cmath> 4 #include<ctime> 5 #include<iostream> 6 #include<algorithm> 7 #include<qu
阅读全文
posted @ 2017-12-04 17:56 ChenThree
阅读(198)
评论(0)
推荐(0)
2017年11月29日
最小生成树计数 基尔霍夫矩阵树定理
摘要: 膜VFK
阅读全文
posted @ 2017-11-29 09:27 ChenThree
阅读(233)
评论(0)
推荐(0)
bitonic tour luogu1523
摘要: 1 #include<cstdio> 2 #include<cstring> 3 #include<cmath> 4 #include<ctime> 5 #include<iostream> 6 #include<algorithm> 7 #include<queue> 8 #include<set
阅读全文
posted @ 2017-11-29 00:25 ChenThree
阅读(166)
评论(0)
推荐(0)
2017年11月27日
code+11月月赛
摘要: T1 SB题 1 #include<cstdio> 2 #include<cstring> 3 #include<cmath> 4 #include<ctime> 5 #include<iostream> 6 #include<algorithm> 7 #include<queue> 8 #incl
阅读全文
posted @ 2017-11-27 18:21 ChenThree
阅读(131)
评论(0)
推荐(0)
2017年11月24日
模拟退火
摘要: 1 #include<cstdio> 2 #include<cstring> 3 #include<cmath> 4 #include<ctime> 5 #include<iostream> 6 #include<algorithm> 7 #include<queue> 8 #include<set
阅读全文
posted @ 2017-11-24 23:53 ChenThree
阅读(198)
评论(0)
推荐(0)
下一页
公告