R

Rhss

#684890

这名用户暂未设置签名。

发帖
43
文章
0
互动
21
陶片
0
获赞
0
收藏
0

历史用户名外显

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

  1. Rhss
    最早追溯到 2024/07/30最后捕获于 2024/07/30
  2. Rhss
    最早追溯到 2023/10/23最后捕获于 2023/10/23

时间线

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

  1. 发起讨论
    54pts求调

    ```cpp #include using namespace std; typedef long long ll; typedef pair pll; const int N = 2e4 + 10; int n, m, k; int f[N]; bool st[N]; struct node{ int id , va…

    回复 0参与人数 1
  2. 发起讨论
    样例没过,求调

    ```cpp #include #define x first #define y second using namespace std; typedef long long ll; typedef pair pll; const int N = 4e5 + 10, M = 2e5 + 10; int n, m, k;…

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

    在讨论有不理解,求指教回复:

    @[Sheez](/user/939998) 理解了,感谢
  4. 发起讨论
    有不理解,求指教

    二分图不是一个无向图吗,为什么这题建双向边反而会出错,单向边才能AC ```cpp #include using namespace std; typedef long long ll; typedef pair pll; const int N = 1e4 + 10, M = 2e5 + 10; int n, m,…

    回复 2参与人数 2
  5. 发起讨论
    二分图 最大匹配 60pts求调

    ```cpp #include using namespace std; typedef long long ll; typedef pair pll; const int N = 1e4 + 10, M = 2e5 + 10; int n, m, ans; int h[N], e[M], ne[M], idx; in…

    回复 1参与人数 1
  6. 发起讨论
    8分求调

    ```cpp #include using namespace std; //LCA typedef long long ll; typedef pair pll; const int N = 1e5 + 10, M = 3e5 + 10; int n, m; int h[N], e[M], ne[M], idx; i…

    回复 0参与人数 1
  7. 发起讨论
    过了样例,但是提交输出全0求调

    ```cpp #include using namespace std; typedef long long ll; typedef pair pll; const int N = 500010; int n, m, k; int h[N], e[N], ne[N], idx; int depth[N], fa[N][…

    回复 1参与人数 1
  8. 发起讨论
    TLE100分 , 求调

    ```cpp #include using namespace std; typedef long long ll; typedef pair pll; const int N = 1e5 + 10, M = 3 * N; int n, m; int h[N], e[M], ne[M], w[M], idx; int…

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

    在讨论acwing上AC但洛谷30分,下载了数据后测试结果是对的,求调回复:

    @[guoxiangyu66](/user/681036) 改完之多了10分
  10. 发起讨论
    acwing上AC但洛谷30分,下载了数据后测试结果是对的,求调

    ```cpp #include #include #include #include #include #define x first #define y second using namespace std; const int N = 5e2 + 10; int n , m , g[N][N] , dist[N];…

    回复 3参与人数 3
  11. 发起讨论
    80分求hack数据

    ```cpp #include #include using namespace std; const int N = 60 , M = 1e3 + 10; int n , m , ans , a[N] , b[M]; void dfs(int x,int y,int len) { if(y > n || x > m)…

    回复 2参与人数 2
  12. 发起讨论
    80分求调

    ```cpp #include #include using namespace std; using ll = long long; ll n; vector ans; int lowbit(int x) { return x & -x; } int main() { cin >> n; while(n) { ll…

    回复 0参与人数 1
  13. 发起讨论
    30分求助,A*该如何记录k短路径

    ```cpp #include #include #include #include #include #define x first #define y second using namespace std; typedef pair pll; typedef pair plll; const int N = 60…

    回复 4参与人数 4
  14. 发起讨论
    too short on line 1 是什么意思?不理解,输出感觉都是正确的

    ```cpp #include #include #include using namespace std; int n, a[20], st[20], ans[5][5], sum; void Print() { for (int i = 1; i > n; for (int i = 1 ; i > a[i]; su…

    回复 2参与人数 2
  15. 回复讨论

    在讨论全部RE,佬们可以帮我看看吗回复:

    @[Loic_](/user/323362) 感谢佬,但其实只有build里面的递归区间写错了,还有在query里面没有先pushdown的问题,改正之后已通过
  16. 发起讨论
    全部RE,佬们可以帮我看看吗

    ```cpp #include #include #include using namespace std; const int N = 5e6 + 10; typedef long long ll; ll n , m , a[N]; struct tree{ ll l , r , sum , lazy; }tr[4…

    回复 2参与人数 2
  17. 发起讨论
    实在是不理解 ,样例和第一个测试点都过了,输出一模一样 , 为什么还是爆0

    ```cpp #include #include using namespace std; const int N = 1e3 + 10; int T , n , h , r ,f[N];; struct pll{ int x, y, z; bool operator > T; while(T--) { cin >>…

    回复 0参与人数 1
  18. 发起讨论
    呜呜,全WA,怎么办呀

    ```cpp #include #include #include using namespace std; int n, res; int days[13] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; int to_int(string date) {…

    回复 0参与人数 1
  19. 发起讨论
    不能理解,为什么WA一个点?

    ```cpp #include #include #include #include #include using namespace std; const int N = 2e6 + 10; typedef long long ll; ll n , a[N] , q[N] , res; int main() { ci…

    回复 1参与人数 1
  20. 发起讨论
    单调队列45分求救

    ```cpp #include #include #include using namespace std; const int N = 1e6 + 10 , M = 1e6 + 10; int n , m , a[N] , q[N] , c[M] , cnt; int main() { cin >> n >> m;…

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

    在讨论10分求救回复:

    @[Ranya](/user/365706) 谢谢!
  22. 发起讨论
    10分求救

    ```cpp #include #include #include using namespace std; const int N = 1e5 + 10; int n , m; struct tree{ int l , r , sum , lazy; }tr[4 * N]; void pushup(int u) {…

    回复 2参与人数 2
  23. 发起讨论
    58分BFS求救,有详细注释

    ```cpp #include #include #include #include using namespace std; const int N = 505 , M = 26; typedef pair pll; int n , m , a[M] , ans[N][N]; char s[N][N]; pll po…

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

    在讨论求助 全RE了 ,想不明白为什么会出现RE回复:

    @[王茗仟](/user/291604) N开到1e6就全WA了佬
  25. 发起讨论
    求助 全RE了 ,想不明白为什么会出现RE

    ```cpp #include #include #include #include #include using namespace std; const int N = 1e3 + 10; int T , n , son[N][26] , idx; vector alls[N]; int insert(string…

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

    在讨论感觉是spread或者modify写错了,但是具体在哪不知道回复:

    @[传奇666666](/user/103109) 非常感谢您,我刚刚发现是因为懒标记传递给子树的时候没有清空而导致的,我是一个线段树初学者,非常感谢您的帮助
  27. 回复讨论

    在讨论感觉是spread或者modify写错了,但是具体在哪不知道回复:

    @[传奇666666](/user/103109) 开7是为了调试样例,按您的解法更改以后依旧是全W,可以麻烦您再看看吗 ```cpp #include #include #include using namespace std; const int N = 2e5 + 10; using ll = long long…
  28. 发起讨论
    感觉是spread或者modify写错了,但是具体在哪不知道

    ```cpp #include #include #include using namespace std; const int N = 7; int T , n , a[N] , tr[4 * N] , add[N]; void spread(int node,int start,int end) { if(add[…

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

    在讨论求助回复:

    @[Reid0207](/user/688314) 二分答案,枚举可能的蛋糕数量,看看是不是大于m
  30. 回复讨论

    在讨论实在不懂,为什么全WA回复:

    @[温家浩](/user/528830) 感谢大佬,找到了