码迷,mamicode.com
首页 >  
搜索关键字:gas station    ( 995个结果
Ubuntu16.04 在vm虚拟机与Windows的文件共享
本次使用的是VMware® Workstation 14 Pro 1.打开VMware,在ubuntu 16.04虚拟机关机状态下选择编辑虚拟机设置。如下图 2.按如下设置,在本地磁盘上指派一个文件夹。我这里已经设置好了,就不进行演示了。 3.打开Ubuntu虚拟机(推荐大家使用高版本VMware, ...
分类:Windows程序   时间:2018-02-28 10:36:47    阅读次数:898
POJ 2031 Building a Space Station
C - Building a Space Station C - Building a Space Station C - Building a Space Station 思路:并查集板子。 #include<cmath> #include<cstdio> #include<cstring> #i ...
分类:其他好文   时间:2018-02-23 10:49:57    阅读次数:158
LeetCode 774. Minimize Max Distance to Gas Station
原题链接在这里:https://leetcode.com/problems/minimize-max-distance-to-gas-station/description/ 题目: On a horizontal number line, we have gas stations at posit ...
分类:其他好文   时间:2018-02-18 11:13:54    阅读次数:215
Building a Space Station POJ 2031 【最小生成树 prim】
http://poj.org/problem?id=2031 Description You are a member of the space station engineering team, and are assigned a task in the construction process ...
分类:其他好文   时间:2018-02-16 14:16:06    阅读次数:203
2018 数学建模美国赛思路
2018 数学建模 美国赛 D 建模思路 和文章大纲 题目 2018 ICM Problem D: Out of Gas and Driving on E (for electric, not empty) For both environmental and economic reasons, t ...
分类:其他好文   时间:2018-02-13 19:28:20    阅读次数:519
java实现链表
    今天和同学讨论时,他说java没有指针怎么实现链表。的确,在Java中没有指针。但是,Java中引用和C++中的引用有很大不同,而且具有一定指针的功能(过两天会总结)。所以,就在家用Java实现了一下链表这种数据结构。目前我想到了两种方法用Java实现链表:        
分类:编程语言   时间:2018-02-10 01:18:08    阅读次数:207
minimize max gas station
class Solution { public: double minmaxGasDist(vector& stations, int K) { double left = 0.0; double right = 1e8; while (right - left > 1e-6) { const au... ...
分类:其他好文   时间:2018-02-08 15:29:59    阅读次数:177
以太坊中的账户、交易、Gas和区块Gas Limit等概念
什么是账户 以太坊账户与我们所知的账户概念有一定相似之处,却又有很大的区别,更不同于比特币中UTXO。 账户分两类: - 外部拥有账户(EOA),也就是普通账户 - 合约账户 普通账户 所谓的普通账户就是我们存放以太币的账户,可以随意生成,它具有以下特性: - 拥有以太币余额(以太币存放的地方,与比 ...
分类:其他好文   时间:2018-02-01 17:33:24    阅读次数:245
Codeforces 918A Eleven 918B Radio Station
Eleven wants to choose a new name for herself. As a bunch of geeks, her friends suggested an algorithm to choose a name for her. Eleven wants her name ...
分类:其他好文   时间:2018-01-31 00:48:01    阅读次数:459
【Codeforces Round #459 (Div. 2) B】 Radio Station
【链接】 "我是链接,点我呀:)" 【题意】 在这里输入题意 【题解】 用map模拟一下映射就好了。 【代码】 cpp include using namespace std; int n,m; map dic; int main(){ ifdef LOCAL_DEFINE freopen("rus ...
分类:其他好文   时间:2018-01-30 16:24:39    阅读次数:188
995条   上一页 1 ... 37 38 39 40 41 ... 100 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!