摘要: 比赛链接:https://codingcompetitions.withgoogle.com/kickstart/round/0000000000436140 K-Goodness String (5pts, 7pts) 判断字符不同值,计算得分至K的差值 int main() { ios_base 阅读全文
posted @ 2021-03-22 22:11 RioTian 阅读(96) 评论(0) 推荐(0) 编辑
摘要: 前言 本篇文章学习书籍:《数据库系统概论》第5版 王珊 萨师煊编著 视频资源来自:数据库系统概论完整版(基础篇+高级篇+新技术篇) 由于 BitHachi 学长已经系统的整理过本书了,我在学习课本和视频以及学长文章的同时在学长文章的基础上进行相应学习修改。(学长原系列目录:Here) 资料参考网站: 阅读全文
posted @ 2021-03-22 21:12 RioTian 阅读(371) 评论(0) 推荐(0) 编辑
摘要: A - Difference Max 区间左端减去区间右端 int main() { ios_base::sync_with_stdio(false), cin.tie(0); int a, b, c, d; cin >> a >> b >> c >> d; cout << b - c << end 阅读全文
posted @ 2021-03-22 20:54 RioTian 阅读(71) 评论(0) 推荐(0) 编辑