走夜路 考虑贪心,显然在价格低的地方要多买电,使电量达到上限或者能到达更便宜的充电站 所以得到一个暴力的想法,对于每一个电站,求出凭借它的电能到达的电站,如果能到更便宜的电站,那么就充能够到达最便宜电站的电,否则在其它比较便宜的电站补电。 然后发现可以考虑反悔,在每一个充电站把电充满,遇到更便宜的充 ...
分类:
其他好文 时间:
2021-07-05 16:41:32
阅读次数:
0
@Test public void testTime() { var d1 = LocalDate.of(2021,1,1); var d2 = LocalDate.of(2021,7,2); Period p = Period.between(d1, d2); System.out.println ...
分类:
其他好文 时间:
2021-07-02 16:38:05
阅读次数:
0
mysql创建分区时依赖字段需要设为主键 例 我的依赖字段为collect_time 需要先创建至少一个分区 例:创建第一个分区时间小于’2020-02-01’ALTER TABLE tb_electric_power_info PARTITION BY RANGE (TO_DAYS(collect ...
分类:
数据库 时间:
2021-07-02 16:36:57
阅读次数:
0
查了别人解决方法,最终自己的解决方法如下,http和https都不要配置代理,主要是下面那句,因为git就是https的 git config --global --unset http.proxy git config --global --unset https.proxy 分别执行了下面的两句 ...
分类:
其他好文 时间:
2021-07-02 16:13:13
阅读次数:
0
//把创建的对象都放到applicationContext容器中,要用时,在通过id一个一个取出来 壹、第一个spring项目 主配置文件 <beans> <bean id="a" class="com.dh.service.impl.SomeServiceImpl"/></beans> //在sp ...
分类:
编程语言 时间:
2021-07-02 15:49:28
阅读次数:
0
HTML5 拥有多个新的表单输入类型。这些新特性提供了更好的输入控制和验证。 color date datetime datetime-local email month number range search tel time url week 一、示范代码 <!DOCTYPE html> <ht ...
分类:
Web程序 时间:
2021-07-02 15:30:13
阅读次数:
0
程序的一部分如下:System.out.println(labelInADT); System.out.println(intervalSet.labels()); System.out.println(intervalSet.labels().contains(labelInADT)); 其中la ...
分类:
其他好文 时间:
2021-07-01 17:25:01
阅读次数:
0
GET /megacorp/employee/_search megacorp :索引库 employee:类型 curl 'http://localhost:9200/?pretty' pretty:美化结果输出 GET /_count { "query": { "match_all": {} } ...
分类:
其他好文 时间:
2021-07-01 17:21:12
阅读次数:
0
#pragma mark - TextViewDelegate - (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text { if ( ...
分类:
移动开发 时间:
2021-07-01 17:00:12
阅读次数:
0
插件列表: code --install-extension abusaidm.html-snippetscode --install-extension akamud.vscode-javascript-snippet-packcode --install-extension christian- ...
分类:
其他好文 时间:
2021-07-01 16:41:12
阅读次数:
0