A

ACcepted917

#924648CCF 5 级

qwq

发帖
4
文章
6
互动
41
陶片
0
获赞
8
收藏
0

历史用户名外显

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

  1. ACcepted917
    最早追溯到 2026/02/16最后捕获于 2026/02/16
  2. ACcepted917
    最早追溯到 2026/02/11最后捕获于 2026/02/11
  3. ACcepted917
    最早追溯到 2025/08/02最后捕获于 2025/11/04
  4. ACcepted917
    最早追溯到 2024/07/26最后捕获于 2024/07/26
  5. ACcepted917
    最早追溯到 2024/06/12最后捕获于 2024/06/12

时间线

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

  1. 发布文章
    题解:P14171 【MX-X23-T1】丢手绢

    ## 题解:P14171 丢手绢 ### 分析 为了方便模运算,把小朋友的编号设为 $0 \sim n$,最后再还原。 由于是转圈丢手绢,当前位置操作后要进行取余,若当前位置为 $i$,则丢手绢后,手绢会在编号为 `(i+a-1)%n` 的小朋友背后。 统计手绢在每个小朋友背后的次数,输出最多次数的那几个小朋友的编号。…

    获赞 2评论 0
  2. 发布文章
    题解:P14056 七休制

    ## 题解:P14056 七休制 [题目传送门](https://www.luogu.com.cn/problem/P14056) ### 分析 为了使疲劳度为 $0$ 时的天数最多,有如下策略: > 先休息休息 $b$ 天,保持疲劳度为 $0$,然后每天交替安排加训加训和颓废颓废(共 $\min(a,c)$ 组,每组…

    获赞 1评论 0
  3. 发布文章
    题解:UVA13273 Making a Team

    ## 题解:UVA13273 Making a Team [题目传送门](https://www.luogu.com.cn/problem/UVA13273) ### 前置知识:快速幂 [模版题链接](https://www.luogu.com.cn/problem/P1226) 快速幂,是一个在 $\Theta(\l…

    获赞 1评论 0
  4. 发布文章
    题解:P13555 【MX-X15-T2】系绳绳

    # 题解:P13555 【MX-X15-T2】系绳绳 [题目传送门](https://www.luogu.com.cn/problem/P13555) 非常有意思的一道题,赛时想了半小时。 ## 前置知识 ### 度数 ![](https://cdn.luogu.com.cn/upload/image_hosting/…

    获赞 1评论 0
  5. 回复讨论

    在讨论LGR235 赛时答疑帖回复:

    序列中元素顺序不同算“本质不同”吗?
  6. 回复讨论

    在讨论LGR235 赛时答疑帖回复:

    @[ty_mxzhn](luogu://user/768195) T2中本质不同具体意义是什么
  7. 发布文章
    题解:P5091 【模板】扩展欧拉定理

    # 题解:P5091 【模板】扩展欧拉定理 [题目传送门](https://www.luogu.com.cn/problem/P5091) ## [欧拉函数](https://oi-wiki.org/math/number-theory/euler-totient/) $\varphi(n)$ ### 欧拉函数定义 欧…

    获赞 1评论 1
  8. 发布文章
    题解:P3036 [USACO16DEC] Lasers and Mirrors G

    # P3036 题解 ### [题目传送门](https://www.luogu.com.cn/problem/P3036) ## 分析 **拆点法 + dijkstra** ### 建图 将一个坐标点拆成四个点: ![](https://cdn.luogu.com.cn/upload/image_hosting/di…

    获赞 2评论 1
  9. 发起讨论
    建议升黄

    因为 [【模板】并查集](https://www.luogu.com.cn/problem/P3367) 并不比这道题难,并且代码复杂程度也不是橙题的范围。

    回复 0参与人数 1
  10. 回复讨论

    在讨论100pts但是UNAC求调回复:

    我的代码: ```cpp #include #define INF 0x3f3f3f3f #define MAX_INF 2147483646 #define fup(l,r) for(int i=l;i >n; fup(1,n){ cin>>a[i]>>b[i]; } ans=b[1]; tot=a[1]; fup(…
  11. 回复讨论

    在讨论100pts但是UNAC求调回复:

    数据是 ``` 3 99991 99990 99989 99988 99971 99970 ``` ``` 999510067897128 ```
  12. 回复讨论

    在讨论【更新作弊名单】CMOI Round 1 赛后总结帖回复:

    铭记历史: $\huge \color{pink}\texttt{小粉兔} $$\color{red} \texttt{变成了}$$\huge \color{brown}\texttt{小棕兔}$
  13. 回复讨论

    在讨论求广搜模板回复:

    至少我没有MLE过。
  14. 回复讨论

    在讨论求广搜模板回复:

    最好不要再循环了定义变量,因为这个循环跑完一遍后就相当于定义了一个数组。
  15. 回复讨论

    在讨论求广搜模板回复:

    陷入死循环了(或定义了数组)。
  16. 回复讨论

    在讨论求广搜模板回复:

    @[kevinf](/user/1033449) 最好不用 $\texttt{vector}$,用 $\texttt{queue}$ 更方便。
  17. 回复讨论

    在讨论求广搜模板回复:

    ```cpp bool bfs(int begin){ queue x; x.push(begin); int xx; while(!x.empty()){ xx=x.front(); if(/*找到了*/)return 1; x.pop(); for(/*所有情况*/) { if(/*满足条件*/) x.push(/…
  18. 回复讨论

    在讨论a^0+a^1+a^2+a^3+...+a^b=回复:

    刚才打错了,最后是 (a^{b+1}-1)/(a-1)(a b−1 −1)/(a−1)。
  19. 回复讨论

    在讨论a^0+a^1+a^2+a^3+...+a^b=回复:

    证明: 令 $S=a^0+a^1+a^2+a^3+\cdots+a^b$。 则 $S \times a =a^1+a^2+a^3+a^4+\cdots+a^{b+1}$。 $S \times a - S=s \lparen a-1\rparen=\lparen a^1+a^2+a^3+a^4+\cdots+a^{b+1…
  20. 回复讨论

    在讨论a^0+a^1+a^2+a^3+...+a^b=回复:

    应该是
  21. 发起讨论
    0分求调,玄关

    [P2392](https://www.luogu.com.cn/problem/P2392) # 为什么0分????? ```cpp #include #define INF 0x3f3f3f3f #define MAX_INF 2147483646 #define fup(l,r) for(register int…

    回复 0参与人数 1
  22. 回复讨论

    在讨论数学题回复:

    准确无,但是有这些函数图像类似: $y= \sqrt x$ $y= \sqrt {-x}$ $y= - \sqrt x$ $y= - \sqrt {-x}$ 这些函数四选二(别选错)。
  23. 回复讨论

    在讨论坐标HN,J90,S52.5有戏吗?回复:

    J可以,S非强省可以。
  24. 回复讨论

    在讨论CSP回复:

    稳了!!!!!!!!!!!!!!!!!!!!!
  25. 回复讨论

    在讨论BJ CSPS1球问回复:

    $41 \sim52$
  26. 回复讨论
  27. 回复讨论

    在讨论MLE是什么意思?回复:

    @[rc_Taurus](/user/922943)
  28. 回复讨论

    在讨论MLE是什么意思?回复:

    改完是这样的: ```cpp #include using namespace std; const int N=1e6+10; int n,m,rt,p,l,r; struct FHQ{ int l,r; int key,val; int siz,tag; }tr[N]; void add(int x){ tr[x]…
  29. 回复讨论

    在讨论MLE是什么意思?回复:

    **找到问题了!!!** ```main```函数中的这两行: ``` split(rt,y,l,r); split(rt,x-1,l,p); ``` 应该为: ``` split(rt,x-1,l,p); split(p,y-x+1,p,r); ```
  30. 回复讨论

    在讨论MLE是什么意思?回复:

    你可以参考我的代码: ```cpp #include using namespace std; //P3391 const int N=1e6+10; #define fup(l,r) for(int i=l;i t[R].pri){ pushdown(L); t[L].rs=Merge(t[L].rs,R); upd…