Preface 这场比赛真的是鸽了太久了的说,一来题挺难的,二来中间因为ZJOI和市统测占用了不少时间 所以题目都记不太得了随便胡一下吧 PS:太菜了所以只做了ABCD,其中BCD都是看一半题解才会的菜哭 ###A - Xor Battle 首先肯定考虑倒着做,我们维护$0$玩家能获胜的集合$S$, ...
分类:
其他好文 时间:
2020-07-06 12:41:42
阅读次数:
88
从maven central下载 javax.media.jai_core:1.1.3时出错. 错误是: download failed: javax.media#jai_core;1.1.3!jai_core.jar 此时的问题是maven-central没有.jar,这是geotoolkit的依 ...
分类:
编程语言 时间:
2020-06-26 16:39:11
阅读次数:
234
修改Maven中的 pom.xml 添加如下内容 <repositories> <repository> <id>central</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/groups/publ ...
分类:
其他好文 时间:
2020-06-25 15:39:03
阅读次数:
82
题目传送门:AtCoder Grand Contest 006。 A - Prefix and Suffix #include <iostream> #include <string> int N; std::string s, t; int main() { std::cin >> N >> s ...
分类:
其他好文 时间:
2020-06-23 19:17:25
阅读次数:
60
题目传送门:AtCoder Grand Contest 005。 A - STring 括号匹配。 #include <cstdio> const int MN = 200005; char s[MN], t[MN]; int tp; int main() { scanf("%s", s + 1); ...
分类:
其他好文 时间:
2020-06-23 00:47:22
阅读次数:
71
一。 传统软件开发模型 2个基本模型 线性过程 迭代过程 扩展模型 瀑布模型 增量模型 V字模型 原型过程 螺旋模型 敏捷开发(Agile Development):通过快速迭代和小规模的持续改进,以快速适应变化 二。 Software Configuration Management(SCM) 软 ...
分类:
其他好文 时间:
2020-06-22 12:45:19
阅读次数:
55
maven仓库是项目中依赖的第三方库,maven仓库有三种类型:本地仓库(local)、中央仓库(central)、远程仓库(remote) 当我们执行 Maven 构建命令时,Maven 开始按照以下顺序查找依赖的库: 步骤 1 - 在本地仓库中搜索,如果找不到,执行步骤 2,如果找到了则执行其他 ...
分类:
系统相关 时间:
2020-06-21 11:41:58
阅读次数:
79
简介 背景 CAT(Central Application Tracking)是由吴其敏(前大众点评首席架构师,现携程架构负责人)主导设计基于Java开发打造的实时应用监控平台,为大众点评网提供了全面的监控服务和决策支持。AT作为大众点评网基础监控组件,它已经在中间件框架(MVC框架,RPC框架,数 ...
分类:
其他好文 时间:
2020-06-18 10:44:45
阅读次数:
74
<mirror> <id>alimaven</id> <mirrorOf>central</mirrorOf> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/repositories/central/</ur ...
分类:
其他好文 时间:
2020-06-18 01:36:54
阅读次数:
510
<repositories> <repository> <id>central</id><--中央仓库--> <url>http://uk.maven.org/maven2/</url> <layout>default</layout> </repository> <repository> <id> ...
分类:
其他好文 时间:
2020-06-16 15:16:54
阅读次数:
106