会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
清渠‘s blog
博客园
首页
新随笔
联系
订阅
管理
2025年8月26日
AtCoder Beginner Contest 420 Solution
摘要: A - What month is it? (abc420 A) 题目大意 问x后y月是哪个月。 解题思路 模拟。 代码 void solve() { int x,y; cin>>x>>y; cout<<((x+y)%12==0?12:(x+y)%12); } B - Most Minority (
阅读全文
posted @ 2025-08-26 11:03 ~清渠~
阅读(13)
评论(0)
推荐(0)
2024年12月21日
AtCoder Beginner Contest 385 Solution
摘要: AtCoder Beginner Contest 385 (A-E) 题解
阅读全文
posted @ 2024-12-21 22:18 ~清渠~
阅读(122)
评论(0)
推荐(0)
2024年12月15日
AtCoder Beginner Contest 384 Solution
摘要: AtCoder Beginner Contest 384 (A-E) 题解
阅读全文
posted @ 2024-12-15 15:52 ~清渠~
阅读(74)
评论(0)
推荐(0)
2024年12月8日
AtCoder Beginner Contest 383 Solution
摘要: AtCoder Beginner Contest 383 (A-E) 题解
阅读全文
posted @ 2024-12-08 00:26 ~清渠~
阅读(48)
评论(0)
推荐(0)
2024年12月3日
Educational Codeforces Round 172 Solution
摘要: Codeforces 2042(ABCD) 题解
阅读全文
posted @ 2024-12-03 00:50 ~清渠~
阅读(145)
评论(0)
推荐(0)
2024年11月30日
AtCoder Beginner Contest 380 Solution
摘要: AtCoder Beginner Contest 380 (A-E) 题解
阅读全文
posted @ 2024-11-30 23:32 ~清渠~
阅读(15)
评论(0)
推荐(0)
AtCoder Beginner Contest 381 Solution
摘要: AtCoder Beginner Contest 381 (A-E) 题解
阅读全文
posted @ 2024-11-30 23:32 ~清渠~
阅读(21)
评论(0)
推荐(0)
AtCoder Beginner Contest 382 Solution
摘要: AtCoder Beginner Contest 382 (A-E) 题解
阅读全文
posted @ 2024-11-30 23:30 ~清渠~
阅读(237)
评论(0)
推荐(1)
2019年3月19日
【模板】AC自动机(洛谷3808&洛谷3796)
摘要: 是AC自动机
阅读全文
posted @ 2019-03-19 21:13 ~清渠~
阅读(252)
评论(0)
推荐(0)
2019年3月18日
【模板】KMP与MP的区别(洛谷P3375)
摘要: 学KMP的时候巨佬说我这写的是MP,仔细去查了查资料,才发现了区别。 洛谷这道题用KMP是解决不了的,KMP的nxt数组和MP的nxt数组略有不同。 https://www.cnblogs.com/yjiyjige/p/3263858.html 这位大佬写的过程很清楚,但是程序不是怎么看得懂,而且实
阅读全文
posted @ 2019-03-18 19:50 ~清渠~
阅读(729)
评论(0)
推荐(0)
下一页
公告