02 2023 档案

摘要:Educational Codeforces Round 26 https://codeforces.com/contest/837 D 差一点,补了E A. Text Volume #include <bits/stdc++.h> using namespace std; int main () 阅读全文
posted @ 2023-02-28 19:21 Sakana~ 阅读(27) 评论(0) 推荐(0) 编辑
摘要:Educational Codeforces Round 25 https://codeforces.com/contest/825 ABCD没有什么意思,阅读理解题比较无聊((( EFG不难写,但是思维比较巧,知道就是知道,不知道就写不出emm A. Binary Protocol #includ 阅读全文
posted @ 2023-02-27 20:32 Sakana~ 阅读(23) 评论(0) 推荐(0) 编辑
摘要:2022-SZUACM招新 训练赛2 https://vjudge.net/contest/544906#overview 下午打了一下,稍微记录一波,有一些蛮有意思的小题。 A - Array https://codeforces.com/problemset/problem/57/C 这是组合数 阅读全文
posted @ 2023-02-26 19:48 Sakana~ 阅读(161) 评论(0) 推荐(0) 编辑
摘要:Educational Codeforces Round 24 https://codeforces.com/contest/818 有些题就是从某个角度想好复杂,不好实现,但是换一种思考方式,从另一个角度想就会豁然开朗,也很好写。这么讲很抽象,但是做题的时候会发现,自己是在一方向上耗死了,结果一看 阅读全文
posted @ 2023-02-26 14:30 Sakana~ 阅读(17) 评论(0) 推荐(0) 编辑
摘要:一些零零散散的记录 向量 原理 https://www.cnblogs.com/ixtwuko/p/advanced-mathematics-p06.html a×b=b×a 叉乘: 题 注意投影的曲面方程要把0带上!! 变量代换 阅读全文
posted @ 2023-02-25 22:25 Sakana~ 阅读(15) 评论(0) 推荐(0) 编辑
摘要:Educational Codeforces Round 23 https://codeforces.com/contest/817 数据结构专场。 A. Treasure Hunt #include <bits/stdc++.h> using namespace std; int main () 阅读全文
posted @ 2023-02-25 20:14 Sakana~ 阅读(38) 评论(0) 推荐(0) 编辑
摘要:Educational Codeforces Round 22 艰难 https://codeforces.com/contest/813 A. The Contest #include <bits/stdc++.h> #define ll long long using namespace std 阅读全文
posted @ 2023-02-23 21:34 Sakana~ 阅读(11) 评论(0) 推荐(0) 编辑
摘要:AtCoder Beginner Contest 139 https://atcoder.jp/contests/abc139 5/6:今天前4题都很水,e还可以但是比较基础,f是计算几何的一个结论,挺没意思的,还是昨天的f比较好玩 A - Tenki #include <bits/stdc++.h 阅读全文
posted @ 2023-02-23 15:15 Sakana~ 阅读(39) 评论(0) 推荐(0) 编辑
摘要:Educational Codeforces Round 21 https://codeforces.com/contest/808 苯比只会ABC,呜呜, A. Lucky Year 被pow()坑了 #include <bits/stdc++.h> #define ll long long us 阅读全文
posted @ 2023-02-22 21:34 Sakana~ 阅读(5) 评论(0) 推荐(0) 编辑
摘要:Educational Codeforces Round 20 昨天写的 https://codeforces.com/contest/803 笨比只会AB CD 其实都是很基础的题目,但是我脑瘫,总是一堆问题。 C是不停的溢出,ll也不够,这涨了个经验就是,比较不等式的时候尽量用除,减少溢出的可能 阅读全文
posted @ 2023-02-22 21:33 Sakana~ 阅读(13) 评论(0) 推荐(0) 编辑
摘要:AtCoder Beginner Contest 138 https://atcoder.jp/contests/abc138 今天做的,f非常有意思,状态设计很巧妙,是限定范围内的数位dp;e还不知道为什么错,感觉思路没问题。 A - Red or Not #include <bits/stdc+ 阅读全文
posted @ 2023-02-22 21:31 Sakana~ 阅读(42) 评论(0) 推荐(0) 编辑
摘要:AtCoder Beginner Contest 137 昨天还是前天写的,忘了,今天补一下 https://atcoder.jp/contests/abc137 A - +-x #include <bits/stdc++.h> using namespace std; int main () { 阅读全文
posted @ 2023-02-22 21:24 Sakana~ 阅读(28) 评论(0) 推荐(0) 编辑
摘要:Discrete_Mathematics_and_Its_Applications Counting The Basics of Counting The product rule 乘法原理 The sum rule 加法原理 The subtraction rule:a ∨ b = a + b - 阅读全文
posted @ 2023-02-10 09:43 Sakana~ 阅读(114) 评论(0) 推荐(0) 编辑
摘要:易错 ABC等字母表示二进制时字典序与进制位是反过来的,即 ABCD(8421) 卡诺图化简的时候不要忘记圈上田字格,还有跨越边界的。==这两个真的超越容易漏掉== 卡诺图数数的时候记得跳过第三行第三列,最后数。 用与非/或非+非门实现:二次取反,==如果最终是与/或门不要忘了变成与非/或非 + 添 阅读全文
posted @ 2023-02-06 16:24 Sakana~ 阅读(871) 评论(2) 推荐(0) 编辑
摘要:计算要细心!!公式不要写错!! 基础题 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 答案 0。利用协方差性质 不相关,不 阅读全文
posted @ 2023-02-03 12:47 Sakana~ 阅读(42) 评论(0) 推荐(0) 编辑

阅读目录(Content)

此页目录为空

点击右上角即可分享
微信分享提示