摘要: 邮寄 阅读全文
posted @ 2025-09-27 19:27 cathyzro 阅读(22) 评论(0) 推荐(0)
摘要: 证明充分性,必要性 阅读全文
posted @ 2025-08-15 16:21 cathyzro 阅读(16) 评论(0) 推荐(0)
摘要: 当你写博客不会LeTax时—— 阅读全文
posted @ 2025-08-15 16:07 cathyzro 阅读(8) 评论(0) 推荐(0)
摘要: 虚树相关很潦草的学习笔记 阅读全文
posted @ 2025-08-10 13:26 cathyzro 阅读(16) 评论(0) 推荐(0)
摘要: CF2127 C,D,E题解 阅读全文
posted @ 2025-08-08 11:12 cathyzro 阅读(35) 评论(0) 推荐(1)
摘要: CF2130 C,D题解 阅读全文
posted @ 2025-08-01 09:07 cathyzro 阅读(41) 评论(1) 推荐(1)
摘要: 单调栈 阅读全文
posted @ 2025-04-26 16:50 cathyzro 阅读(47) 评论(0) 推荐(0)
摘要: Manacher 阅读全文
posted @ 2025-04-26 15:14 cathyzro 阅读(14) 评论(0) 推荐(0)
摘要: A: 点击查看代码 #include <bits/stdc++.h> using namespace std; const int N = 1e6 + 5; const int inf = 0x3f3f3f3f; int read () { int x = 0 , f = 1; char ch = 阅读全文
posted @ 2025-02-17 09:47 cathyzro 阅读(12) 评论(0) 推荐(0)
摘要: A: 点击查看代码 #include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; if(n<0) { cout<<"-"; } n=abs(n); bool b=0; while(n>0) { if(n%10!=0) 阅读全文
posted @ 2024-11-24 14:20 cathyzro 阅读(20) 评论(0) 推荐(0)