摘要: before \(A \sim D\) 的题解 A. Profitable Interest Rate Problem A. Profitable Interest Rate Sol&Code 数学题,有 \(a - x \geq b - 2x\),得 \(x = b - a\)。 特判 \(a \ 阅读全文
posted @ 2024-10-21 15:02 yu__xuan 阅读(131) 评论(0) 推荐(0) 编辑
摘要: before \(A \sim D\) 的题解 A. A Gift From Orangutan Problem A. A Gift From Orangutan Sol&Code \(c_i - b_i\) 最大就是 \(a\) 的最大值减最小值。将 \(a\) 的最大值 \(x\) 和最小值 \ 阅读全文
posted @ 2024-10-21 14:15 yu__xuan 阅读(75) 评论(0) 推荐(1) 编辑
摘要: before \(A \sim E\) 的题解 我不想写作业呜呜。 A. Two Screens Problem A. Two Screens Sol&Code 理解题意后发现使用复制的方法完成最长公共前缀即可。 #include <bits/stdc++.h> typedef long long 阅读全文
posted @ 2024-10-15 15:40 yu__xuan 阅读(229) 评论(0) 推荐(1) 编辑
摘要: Before 本文是 \(2024\) 中国大学生程序设计竞赛全国邀请赛(长春)暨第 \(17\) 届吉林省大学生设计竞赛和新建比赛的游记 写的很烂 写的很烂 写的很烂 Day0 省赛报到及热身赛。 \(14:00\) 前报到。 \(12:00\) 和一名队员在校门口集合了,但另一名队员才起床。会合 阅读全文
posted @ 2024-05-17 21:54 yu__xuan 阅读(252) 评论(0) 推荐(1) 编辑
摘要: Before 比赛 清明和一个队友 vp 的,完全的跟榜做题,感觉发挥的还行。 B - JB Loves Comma 签到 #include <bits/stdc++.h> std::string s; int main() { std::cin >> s; int n = s.length(); 阅读全文
posted @ 2024-04-15 16:27 yu__xuan 阅读(101) 评论(0) 推荐(1) 编辑
摘要: \(Before\) 关于 \(Botzone\) 可以去 \(Wiki\) 看。 感觉有点意思,所以开个 \(tag\)。 \(Index\) 阅读全文
posted @ 2024-03-25 10:59 yu__xuan 阅读(9) 评论(0) 推荐(0) 编辑
摘要: before 终于有一篇题解是一次性更所有题的了。 A. Morning Problem A. Morning Sol&Code 根据题意模拟即可。 #include <bits/stdc++.h> typedef long long ll; int min(int a, int b) { retu 阅读全文
posted @ 2023-10-26 12:05 yu__xuan 阅读(105) 评论(1) 推荐(1) 编辑
摘要: A. Escalator Conversations Problem [题目](Rudolph and Cut the Rope) Sol & Code 绳子长度大于钉子高度的要剪 #include <bits/stdc++.h> typedef long long ll; int min(int 阅读全文
posted @ 2023-10-05 19:40 yu__xuan 阅读(18) 评论(0) 推荐(0) 编辑
摘要: A. Escalator Conversations Problem 题目 Sol & Code 签到 #include <bits/stdc++.h> typedef long long ll; int min(int a, int b) { return a < b ? a : b; } int 阅读全文
posted @ 2023-10-05 19:30 yu__xuan 阅读(13) 评论(0) 推荐(0) 编辑
摘要: A. Array Coloring Problem 题目 Sol & Code 只有数列的和为偶数时才符合要求,即有任意个偶数,偶数个奇数。 将这些数分成两部分,发现两部分初始值 \(0\) 为偶数,偶数不会影响奇偶性,故需要偶数个奇数。 #include <bits/stdc++.h> #defi 阅读全文
posted @ 2023-10-05 19:08 yu__xuan 阅读(12) 评论(0) 推荐(0) 编辑