比赛链接:https://codeforces.com/contest/1440 A. Buy the String 题解 枚举字符串中 $0$ 或 $1$ 的个数即可。 代码 #include <bits/stdc++.h> using namespace std; int main() { io ...
分类:
其他好文 时间:
2020-11-21 12:41:54
阅读次数:
32
###题目 121. Best Time to Buy and Sell Stock ###解题方法 用一个变量minprice记录当前已经遍历过的最小价格,再用一个变量maxprofit记录当前已经遍历过的最大利润,如果price[i] > minprice,就计算最大利润是否需要增加;否则计算最 ...
分类:
其他好文 时间:
2020-10-21 21:19:48
阅读次数:
21
自己想了好一会,AC后看了下好像和网上挺多人思路不太一样(但本质是一样的),所以就来写这篇题解 首先这题之所以能反悔的根本原因和性质在于你在第i天买股票,第j天卖出,可以拆成第i天买股票,第k(i <= k <= j)天卖出和第k天买股票,第j天卖出两个过程(I) 我们首先可以从大到小倒序扫描,假设 ...
分类:
其他好文 时间:
2020-09-03 17:04:38
阅读次数:
37
JDK动态代理源码分析 动态代理一般常用有两种实现方式:JDK和CGLIB 案例 public class DynamicProxyTestByJDK { public static void main(String[] args) { Buy buy = new BuyImpl(); Buy pr ...
分类:
其他好文 时间:
2020-07-28 16:57:12
阅读次数:
58
package LeetCode_122 /** * 122. Best Time to Buy and Sell Stock II * https://leetcode.com/problems/best-time-to-buy-and-sell-stock-ii/description/ * * ...
分类:
其他好文 时间:
2020-07-19 18:07:26
阅读次数:
79
动态代理 package test; import java.lang.reflect.InvocationHandler; import java.lang.reflect.Method; import java.lang.reflect.Proxy; //被代理类接口 interface Buy ...
分类:
其他好文 时间:
2020-07-16 21:56:05
阅读次数:
67
Show me the code ! 此次分享的是如何让你的代码框架上传到cocoapods,方便使用!对了,在第一句之前应该介绍cocoapods的背景,但作为iOS developer,不用介绍都知道其重要性,OK,Talk is cheap! 只需几步: 1.整理目录,代码提交到GitHub( ...
分类:
其他好文 时间:
2020-06-23 15:28:44
阅读次数:
56
I am looking to buy best Star Diagnostic tool with dts monaco and vediamo, but there are a few options. Please look at this table, you will find these ...
分类:
其他好文 时间:
2020-06-23 10:28:58
阅读次数:
78
121. Best Time to Buy and Sell Stock ...
分类:
其他好文 时间:
2020-06-21 19:45:07
阅读次数:
45
At a lemonade stand, each lemonade costs $5. Customers are standing in a queue to buy from you, and order one at a time (in the order specified by bil ...
分类:
其他好文 时间:
2020-06-09 09:22:23
阅读次数:
54