考试T1,建一个反图跑一个最短路就好了~ code: ...
分类:
其他好文 时间:
2019-10-14 14:35:31
阅读次数:
71
泛型动态实例化需要三个步骤:1.获得泛型类型,2.指定泛型类型,3.实例化 有如下泛型类型: 则 Buy<T> 实例化步骤如下 1.获得泛型类型 typeBuy 2.指定泛型类型,获得最终泛型类型 ,如最终类型为 Buy<int>,则最终泛型类型 typeBuyInt 3.使用类型 typeBuyI ...
分类:
其他好文 时间:
2019-10-08 23:44:08
阅读次数:
94
题目链接: "HDU 1847" Problem Description 大学英语四级考试就要来临了,你是不是在紧张的复习?也许紧张得连短学期的ACM都没工夫练习了,反正我知道的Kiki和Cici都是如此。当然,作为在考场浸润了十几载的当代大学生,Kiki和Cici更懂得考前的放松,所谓“张弛有道” ...
分类:
其他好文 时间:
2019-10-07 23:43:17
阅读次数:
122
思路: 建立虚点把点券转化成边权 cpp include include include include include define int long long define maxn 850500 using namespace std ; int read() { int x = 0 , f ...
分类:
其他好文 时间:
2019-10-07 17:35:10
阅读次数:
154
class Solution { public: int maxProfit(int k, vector<int> &prices){ int n=prices.size(),v=0,p=0,ret=0; vector<int> profits; stack<pair<int,int>> vp; w... ...
分类:
其他好文 时间:
2019-10-02 12:58:58
阅读次数:
62
https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock/solution/xiang-xi-tong-su-de-si-lu-fen-xi-duo-jie-fa-by-29/ 描述 给定一个数组,它的第 i 个元素是一支给定股 ...
分类:
其他好文 时间:
2019-09-27 19:28:22
阅读次数:
80
Eva would like to make a string of beads with her favorite colors so she went to a small shop to buy some beads. There were many colorful strings of b ...
分类:
其他好文 时间:
2019-09-11 11:53:03
阅读次数:
107
function fn(src, dst, k) { //对n个城市m个航班做飞行说明 let fights = [ [0,1,100], [1,2,100], [0,2,500] ]; //计算最便宜的路线 let cheap = (src, dst, k) => { // 找到dst的前一站 l... ...
分类:
其他好文 时间:
2019-09-11 09:48:14
阅读次数:
100
本人文章中出现的所有专有商业名称,一律XX匿名处理。 首先要说明的是app的几个外部重要参数和自定义的简称: 在线 OL oniline,是否需要网络 内购 B buy ,内部购买会员 root R 请求root权限 解破版 H hack,即就是解破版 来源 F form,软件在哪里下载的,如果来源 ...
分类:
移动开发 时间:
2019-09-09 19:12:46
阅读次数:
140
Leetcode之动态规划(DP)专题-309. 最佳买卖股票时机含冷冻期(Best Time to Buy and Sell Stock with Cooldown) 股票问题: 309. 最佳买卖股票时机含冷冻期 714. 买卖股票的最佳时机含手续费 给定一个整数数组,其中第 i 个元素代表了第 ...
分类:
其他好文 时间:
2019-09-08 18:14:03
阅读次数:
76