interface Station{ void sellTickets();}class TrainStation implements Station{ public TrainStation() { } public void sellTickets() { System.out.pri...
分类:
编程语言 时间:
2015-03-30 20:49:28
阅读次数:
141
题目链接:gas-station
/**
*
There are N gas stations along a circular route, where the amount of gas at station i is gas[i].
You have a car with an unlimited gas tank and it costs cost[i] of ...
分类:
其他好文 时间:
2015-03-30 09:25:15
阅读次数:
163
There areNgas stations along a circular route, where the amount of gas at stationiisgas[i].You have a car with an unlimited gas tank and it costscost[...
分类:
其他好文 时间:
2015-03-29 23:35:11
阅读次数:
137
题意:
给一棵树,每条边的权值为R*I^2,求到所有其他节点权值和最小的点和相应最小权值和。
分析:
先将图转化成树,然后在树上dfs。
代码:
//poj 4045
//sep9
#include
#include
using namespace std;
const int maxN=50012;
vector g[maxN];
int vis[maxN],bro[maxN],son...
分类:
其他好文 时间:
2015-03-28 08:52:54
阅读次数:
142
1 对象举例#include using namespace std;class Car {public: string color; string engine; float gas_tank; unsigned int wheel; void running(voi...
分类:
其他好文 时间:
2015-03-21 22:56:30
阅读次数:
205
Not quite hard. Just remember initialize index to 0. Because if you initialize it as -1 and all the gas satisfy the cost, it will return -1.Actually, ...
分类:
其他好文 时间:
2015-03-20 01:11:41
阅读次数:
210
题意: 知道三个变量求剩下一个变量。其中R是已知常量=8.314。其中V,T必须要大于0。如果出现矛盾就输出error。如果出现不确定的情况输出undefined。这一题构思巧妙 1 #include 2 #include 3 #include 4 #include 5 using n...
分类:
其他好文 时间:
2015-03-17 23:09:59
阅读次数:
137
A gas station has to be built at such a location that the minimum distance between the station and any of the residential housing is as far away as po...
分类:
其他好文 时间:
2015-03-16 12:51:44
阅读次数:
137
URAL 1823. Ideal Gas(数学啊 )...
分类:
其他好文 时间:
2015-03-15 19:51:44
阅读次数:
120
高中学的:pV=nRT,即理想气体状态方程
题意:知道三个变量求剩下一个变量。其中R是已知常量=8.314。其中V,T必须要大于0。如果出现矛盾就输出error。如果出现不确定的情况输出undefined。
分类:以求V为例子。如果p和n 有只一个为0 那T和V中也必须有个是等于0的。所以和题意矛盾。输出error。 如果p,n同时为0,那么就无法求出V是多少。输出undefined。 其他情况直接计算即可。...
分类:
其他好文 时间:
2015-03-15 19:49:48
阅读次数:
127