b

bokaro_kyoku_mania

#1271377CCF 4 级

さようなら、すべてのエヴァンゲリオン

发帖
9
文章
13
互动
36
陶片
0
获赞
6
收藏
0

历史用户名外显

追踪最近的用户名外显变动记录。

  1. bokaro_kyoku_mania
    最早追溯到 2025/09/15最后捕获于 2026/02/11
  2. Rchr
    最早追溯到 2024/08/12最后捕获于 2024/08/12

时间线

最近的文章、讨论、云剪贴板与社区记录

  1. 回复讨论

    在讨论求湖北三等线回复:

    成分明显
  2. 评论文章

    在文章CSP2025游记&&AFO记发表评论:

    awmc
  3. 评论文章

    在文章CSP/NOIP2025 游寄发表评论:

    awmc
  4. 评论文章

    在文章【CSP-S2025】HE 赛区代码有趣行为大赏发表评论:

    坏了我没上
  5. 评论文章

    在文章csp-j/s2025游记(awmc)发表评论:

    其实只鸟+过一首@cunmin111
  6. 发布文章
    csp-j/s2025游记(awmc)

    ### 好吧whk复健回来了,~~但是还是不知道怎么写开头~~。 ~~现在写完了~~。 省流:~~awmc~~。 复赛考点离家三公里还是太爽了。 ## Day 0 ### 5:50 a.m:起床 其实5:30就醒了,一直迷迷糊糊的,处于半睡半醒的状态。 ### 6:00 a.m:吃早饭 ~~报吃~~。 ### 6:30…

    获赞 2评论 3
  7. 评论文章

    在文章题解:P10852 【MX-X2-T1】「Cfz Round 4」Awaken发表评论:

    solve里读了两个n
  8. 发布文章
    stable_sort

    一、默认排序(升序) sort最基本用法:sort(v.begin(),v.end())。 自定义排序:sort(v.begin(),v.end(),cmp)。 二、稳定排序 与sort区别:stable_sort保证相等元素的相对顺序在排序前后保持不变,但稍慢 sort不保证相等元素的相对位置

    获赞 1评论 0
  9. 发起讨论
    河北 j 75.5 s 48

    rt 有点慌怎么办

    回复 4参与人数 4
  10. 回复讨论

    在讨论【优先晋级线公布】CSP-J/S 初赛讨论帖回复:

    @[zyzxzhangyi](luogu://user/1050256)控分了?
  11. 回复讨论
  12. 发布文章
    p13729

    省流:多加特判TLE 100->75 代码: ```cpp #include #define int long long using namespace std; template inline void read(T&x){ x=0; char c; int sign=1; do{ c=getchar(); if(c…

    获赞 0评论 0
  13. 发布文章
    7.12

    [P1276](https://www.luogu.com.cn/problem/P1276): ```cpp #include #define int long long using namespace std; template inline void read(T&x){ x=0; char c; int sig…

    获赞 0评论 0
  14. 发布文章
    7.11

    [P2865](https://www.luogu.com.cn/problem/P2865): ```cpp #include #define int long long using namespace std; template inline void read(T&x){ x=0; char c; int sig…

    获赞 0评论 0
  15. 发布文章
    7.10

    P3366: ```cpp #include #define int long long using namespace std; const int N=2e5+20; int n,m,p[N],ans,res; struct Edge{ int x,y,z; }e[N]; const bool cmp(Edge x…

    获赞 0评论 0
  16. 发布文章
    快读快写模板

    快读1: ```cpp #include #define int long long using namespace std; int t; signed main(){ ios::sync_with_stdio(0); cin.tie(0),cout.tie(0); cin>>t; while(t--){ int n…

    获赞 1评论 0
  17. 发布文章
    并查集

    bilibili课程:[链接](https://www.bilibili.com/video/BV1zZRSYUEWV/) ![](bilibili:BV1zZRSYUEWV) [oiwiki讲解](https://oiwiki.com/ds/dsu/) 并查集模板:[P3367](https://www.luogu.…

    获赞 1评论 0
  18. 发布文章
    25 7.8上午 栈 队列 二叉搜索树

    栈: ```cpp #include #define int long long /* STL 中的 stack 容器提供了一众成员函数以供调用,其中较为常用的有: 元素访问 st.top() 返回栈顶 修改 st.push() 插入传入的参数到栈顶 st.pop() 弹出栈顶 容量 st.empty() 返回是否为空…

    获赞 0评论 0
  19. 发布文章
    tuple

    [tuple博客介绍](https://blog.csdn.net/Long_xu/article/details/135429561)

    获赞 0评论 0
  20. 发布文章
    P3808 AC自动机(简单版)

    [P3808题目](https://www.luogu.com.cn/problem/P3808) [讨论区的解答](https://www.luogu.com.cn/discuss/1096149) 代码 ```cpp #include //#define int long long using namespace…

    获赞 0评论 0
  21. 回复讨论

    在讨论TLE on#1,求调回复:

    @[ZJY1207](luogu://user/1372344)THX
  22. 发起讨论
    TLE on#1,求调

    代码 ```cpp #include //#define int long long using namespace std; const int N=1e4+10,M=1e6+10,L=55; int ch[N*L][26],cnt[N*L],idx; int ne[N*L];//每个结点对应的next值 int q…

    回复 5参与人数 5
  23. 发布文章
    AC自动机板子

    [AC自动机博客介绍](https://blog.csdn.net/2301_79587247/article/details/140892516) [oiwiki介绍](https://oiwiki.com/string/ac-automaton/) [AC自动机模板题(已过lg)](https://www.luog…

    获赞 1评论 0
  24. 发布文章
    P2580于是他错误的点名开始了 trie树

    [trie字典树博客](https://blog.csdn.net/2301_80224556/article/details/146123137) [P2580题目](https://www.luogu.com.cn/problem/P2580) 代码: ```cpp #include #define int lon…

    获赞 0评论 0
  25. 回复讨论

    在讨论全wa求助回复:

    听君一席话,白读十年书
  26. 发起讨论
    求崩3壁纸

    求崩3壁纸

    回复 1参与人数 1
  27. 回复讨论
  28. 发起讨论
    祝大家rp++

    rp++

    回复 1参与人数 1
  29. 回复讨论

    在讨论rp++回复:

    rp++
  30. 回复讨论