"Link" 先把题意抽象一下:给定一个存在一部分为定向的边的竞赛图,最大化它的三元环个数。 我们知道竞赛图的三元环个数为${n\choose 3} \sum\limits_{i=1}^n{deg_i\choose 2}$。 对于一条未定向的边$(u,v)$,它会使$u,v$其中一个点的度数加一。 ...
分类:
其他好文 时间:
2020-04-08 10:09:52
阅读次数:
77
以询问窗口为例,如点击删除某一个条目的按钮,然后弹出询问窗口,如图1所示: 图1 对应的代码如下: 1 int choose = QMessageBox::question(this, tr("删除条目"), 2 QString(tr("确认删除该条目?")), 3 QMessageBox::Yes ...
分类:
其他好文 时间:
2020-04-06 11:57:54
阅读次数:
128
"https://leetcode.com/problems/best time to buy and sell stock/" 给定一个数组,其中数组的第 i 个元素表示第 i 天的股票价格,你可以选择在其中一天买股票,然后再后面的某一天卖掉股票,求最大收益。(股票必须要先买才能卖) 这里只能买一 ...
分类:
其他好文 时间:
2020-04-06 00:26:55
阅读次数:
84
"https://leetcode.com/problems/best time to buy and sell stock ii/" 给定一个数组,其中数组的第 i 个元素表示第 i 天的股票价格,你可以选择在其中一天买股票,然后再后面的某一天卖掉股票,求最大收益。(股票必须要先买才能卖) 这里可 ...
分类:
其他好文 时间:
2020-04-06 00:10:03
阅读次数:
82
此博客链接:https://www.cnblogs.com/ping2yingshi/p/12637178.html 买卖股票的最佳时机(13min) 题目链接:https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock/ 给定一 ...
分类:
其他好文 时间:
2020-04-05 15:44:51
阅读次数:
72
Why thinking in Java? Java means a lot for computer science. And it gives a best practice in project. Thinking in Java can make you coding with better ...
分类:
编程语言 时间:
2020-04-05 11:31:02
阅读次数:
104
题目描述查看:https://leetcode-cn.com/problems/permutations/ 题目的意思是,给定一个无重复数组,求这些数组元素的全排列。 思路 典型的回溯问题,找到退出条件,已选结果,候选结果即可。 定义回溯方法,choose表示已选结果,candidate表示候选结果 ...
分类:
其他好文 时间:
2020-04-04 17:25:52
阅读次数:
56
Pipenv is a tool that aims to bring the best of all packaging worlds (bundler, composer, npm, cargo, yarn, etc.) to the Python world. Windows is a fir ...
分类:
编程语言 时间:
2020-04-04 14:50:59
阅读次数:
91
原文地址:https://www.javaguides.net/2020/03/5 best ways to iterate over hashmap in java.html 作者:Ramesh Fadatare 翻译:高行行 https://www.toutiao.com/a6803887957 ...
分类:
其他好文 时间:
2020-04-01 11:02:51
阅读次数:
61
题意 "bzoj" 做法 结论1 :对于$(X_1,X_2,...,X_k)$,其为红的充要条件为:令$Y_i=X_i 1$,$\prod\limits_{k=1}^K {\sum\limits_{i=1}^k Y_i\choose Y_k}\equiv 1(mod~2)$ 结论2 :${a+b\c ...
分类:
其他好文 时间:
2020-03-31 20:42:28
阅读次数:
65