[Luogu2870] [USACO07DEC]最佳牛线Best Cow Line(贪心+后缀数组) 题面 FJ打算带他的$N(1 \leq N \leq 30,000)$头奶牛去参加一年一度的“全美农场主大奖赛”。在这场比赛中,每个参赛者都必须让他的奶牛排成一列,然后领她们从裁判席前依次走过。 今 ...
分类:
编程语言 时间:
2020-01-20 22:49:16
阅读次数:
88
You are given a list of non-negative integers, a1, a2, ..., an, and a target, S. Now you have 2 symbols + and -. For each integer, you should choose o ...
分类:
其他好文 时间:
2020-01-20 09:38:14
阅读次数:
92
一道使用Fibonnaci数列通项公式的趣味题目 求 $$ \sum_{i=0}^n{n\choose i}f_i $$ 其中$f_i$表示Fibonnaci数列($f_0=0, f_1=1, f_n=f_{n 1}+f_{n 2}$)第n项。 内心:WTF.jpg 当时下面很多神仙都纷纷表达了自己 ...
分类:
其他好文 时间:
2020-01-17 23:31:19
阅读次数:
164
At the Beginning... 由于近期爱好摸鱼,并且对Gui开发萌生一丝兴趣。在尝试WPF被虐,使用Qt却不太喜欢整套庞大的框架后…… I choose E language! 重拾了小学用的工具…… 据我所知,易语言的Gui除了native E之外,主要是Ex_Ui和ExDui两家,而E ...
分类:
编程语言 时间:
2020-01-15 19:21:32
阅读次数:
149
全文摘录自:https://www.cnblogs.com/best/p/7474442.html#!comments 感谢原博主 Git文件的4种状态 Untracked: 未跟踪, 此文件在文件夹中, 但并没有加入到git库, 不参与版本控制. 通过git add 状态变为Staged Unmo ...
分类:
其他好文 时间:
2020-01-11 18:45:33
阅读次数:
47
全文摘录自:https://www.cnblogs.com/best/p/7474442.html#!comments 感谢原博主 1.1、什么是版本控制 版本控制(Revision control)是一种在开发的过程中用于管理我们对文件、目录或工程等内容的修改历史,方便查看更改历史记录,备份以便恢 ...
分类:
其他好文 时间:
2020-01-11 11:30:40
阅读次数:
67
Basic, Agile, Scrum, and CMMI The default processes differ mainly in the work item types (WITs) they provide for planning and tracking work. Basic is ...
分类:
其他好文 时间:
2020-01-09 10:40:48
阅读次数:
107
原题链接在这里:https://leetcode.com/problems/best-meeting-point/ 题目: A group of two or more people wants to meet and minimize the total travel distance. You ...
分类:
其他好文 时间:
2020-01-06 09:14:27
阅读次数:
87
#include <bits/stdc++.h> #include<math.h> using namespace std; const int MAX_LEN = 2005; //const int MAX_D = 31; struct student{ int id; int Cgrade; i ...
分类:
编程语言 时间:
2020-01-05 13:43:49
阅读次数:
66
转自:https://wqw547243068.github.io/2019/06/28/how to choose life partner/ 如何选择人生伴侣 参考文章: "如何选择你的人生伴侣 上" "如何选择你的人生伴侣 下" "为什么我们会和错误的人结婚" 如何选择你的人生伴侣 引言 阅读 ...
分类:
其他好文 时间:
2020-01-05 11:54:55
阅读次数:
256