摘要: 收获 1. 口碑是最好的广告。(老罗的一元课程,最后索性不拒绝蹭课的同学,收获了口碑) 2. 广告的制定:VIP钻石课程 标准课程, 标准课程 优惠课程。(没有增加收入,但是减轻了客服的问题)(《怪诞行为学》例子,电子版,纸质版,电子版+纸质版) 3. 海报的设计:好玩的点,打架报名中,不温不火报名 阅读全文
posted @ 2019-10-02 22:06 babydragon 阅读(130) 评论(0) 推荐(0) 编辑
摘要: A 水题 B 直接看2,发现`unordered_map被卡了。。。` 乖乖离散化 C 有六种水管,可以任意的旋转,使得有一条从(1, 0)到(2, n)的通路。 找规律,当时写D没来得及看 1 #include<cstdio> 2 #include<cstring> 3 #include<algo 阅读全文
posted @ 2019-10-02 12:29 babydragon 阅读(248) 评论(0) 推荐(0) 编辑
摘要: 带有障碍物的1 2铺格子 c++ class Solution { public: int domino(int n, int m, vector & broken) { int a[10],f[10][256],ans=0,o[256],i,j,k; memset(a,0,sizeof(a)); 阅读全文
posted @ 2019-09-25 08:55 babydragon 阅读(141) 评论(0) 推荐(0) 编辑
摘要: C 给一个图,并且在边上放上多米诺骨牌,使得每个多米诺骨牌指向的顶点的数字是一致的,并且每种骨牌只能用一种。问最多能够覆盖多少条边。 先生成每一个点指向的数字,然后判断就好了。 c++ include include include include include include include i 阅读全文
posted @ 2019-09-24 11:29 babydragon 阅读(279) 评论(0) 推荐(0) 编辑
摘要: 三分 c++ include include include include include include include include include include include include include include using namespace std; typedef lo 阅读全文
posted @ 2019-09-12 16:17 babydragon 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 最后一个点T,不知道怎么优化比较好。 c++ include using namespace std; typedef long long ll; typedef unsigned long long ull; typedef pair pii; define pb(x) push_back(x) 阅读全文
posted @ 2019-09-10 00:02 babydragon 阅读(294) 评论(0) 推荐(0) 编辑
摘要: 直方图的最大矩形面积 poj 2559 高度保持单调增,弹出时向最右看。 c++ include include include include include include include include include include using namespace std; typedef 阅读全文
posted @ 2019-09-06 23:24 babydragon 阅读(164) 评论(0) 推荐(0) 编辑
摘要: C The Number Of Good Substrings 我原来的基本思路也是这样,但是写的不够好 注意算前缀和的时候,字符串起始最好从1开始。 阅读全文
posted @ 2019-09-06 11:15 babydragon 阅读(188) 评论(0) 推荐(0) 编辑
摘要: uva839 (递归来判断天平是否平衡)(递归+树) c++ include include include include include include include include include include using namespace std; typedef long long 阅读全文
posted @ 2019-09-04 22:25 babydragon 阅读(320) 评论(0) 推荐(0) 编辑
摘要: D 比赛的时候居然看漏了条件。。。 若在(x, y)格子,那么只能移动到(x+1, y)或(x, y+1) 这样的话就好做了,直接dp,然后统计每一种路径长度经过的点数。 c++ include include include include include include include incl 阅读全文
posted @ 2019-09-04 22:24 babydragon 阅读(212) 评论(0) 推荐(0) 编辑