The only difference between easy and hard versions is the constraints. Vova likes pictures with kittens. The news feed in the social network he uses c ...
分类:
其他好文 时间:
2018-11-24 14:08:39
阅读次数:
148
Social Media Addiction Children as young as ten are becoming dependent on social media for their sense of self-worth, a major study warned. 一项重大的研究警告称 ...
分类:
其他好文 时间:
2018-11-22 15:19:41
阅读次数:
784
1、背景: 我们之前写的一些接口仅仅是知道微博授权的一个流程,要把第三方授权登录的用户的user_id 弄到我们的user_profile 中来才是 符合业务的需求的 因此gitbub上已经有一些开源的第三方插件使用 social_app_django social-auth-app-django模 ...
分类:
编程语言 时间:
2018-11-17 20:50:08
阅读次数:
279
C - Maximum Subrectangle 因为是两个数组相乘的到的 矩阵所以 a(i ->j)*b(x->y) 的面积 就是 a(i ->j) 的和乘与b(x->y)的和 所以我们枚举 a 序列 从1-n的长度和 B序列同理 然后 枚举两个序列和相乘 找一个最大即可 D - Social C ...
分类:
其他好文 时间:
2018-11-09 22:03:27
阅读次数:
207
GitHub 中搜索:social django app ==>找到: python-social-auth/social-app-django文档: https://python-social-auth.readthedocs.io/en/latest/ ...
分类:
其他好文 时间:
2018-11-02 00:18:59
阅读次数:
225
http://codeforces.com/contest/1060/problem/D 题意: n个客人,每个客人希望自己左边空li个座位,右边空ri个座位,可以形成任意个圆,问最少多少个座位。 思路: 1、问题可以看作,给每个客人gi的左边找一个合适的另一个客人gj。其之间的空座数为max(l( ...
分类:
其他好文 时间:
2018-10-06 13:20:47
阅读次数:
132
http://codeforces.com/contest/1060/problem/D 贪心啊!!!! 既然两个a的左和b的右在重叠,那就尽量让重叠最多。 排序后用贪心不就ok。排序n*log(n)+最后o(n)求answer 因为:可以用很多张桌子!! 太坑了,读题想当然觉得是一张桌子,就带来了 ...
分类:
其他好文 时间:
2018-10-05 10:43:42
阅读次数:
151
题目大意:有n(n≤105)个人排成一圈,第i个人要求自己左边空出li个座位,右边空出ri(li,ri≤109)个座位。问最少需要安排多少个座位。思路:一开始先假设每个人都占了li+ri+1个位置。考虑怎样安排相邻人的顺序,并合并相邻人的li,ri使得答案最优。将所有li,ri分别排序,将对应的li ...
分类:
其他好文 时间:
2018-10-04 20:31:04
阅读次数:
334
In social network like Facebook or Twitter, people send friend requests and accept others' requests as well. Table request_accepted holds the data of ...
分类:
其他好文 时间:
2018-09-25 14:05:23
阅读次数:
183
In social network like Facebook or Twitter, people send friend requests and accept others’ requests as well. Now given two tables as below: Table: fri ...
分类:
其他好文 时间:
2018-09-25 13:21:49
阅读次数:
253