h

huzixiao

#1015482CCF 5 级

꧁稻花香里说丰年,听取WA声一片_•́へ•́╬_⎛⎝≥⏝⏝≤⎛⎝ฏ๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎.҉ོ七年级的蒟蒻꧂

发帖
27
文章
2
互动
32
陶片
0
获赞
1
收藏
1

历史用户名外显

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

  1. huzixiao
    最早追溯到 2025/04/01最后捕获于 2025/12/03
  2. huzixiao
    最早追溯到 2024/06/19最后捕获于 2024/06/19
  3. huzixiao
    最早追溯到 2024/05/30最后捕获于 2024/05/30

时间线

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

  1. 回复讨论
  2. 回复讨论

    在讨论求调 54pts回复:

    此贴结,自己调好了 极大值太大了,做加法时可能会溢出
  3. 发起讨论
    求调 54pts

    ```cpp line-numbers #include using namespace std; typedef long long ll; const ll INF = LLONG_MAX; int n, m, x, y, matched[505], bef[505]; ll dis[505][505], ex[5…

    回复 1参与人数 1
  4. 发起讨论
    样例过了,0分球条

    ```cpp #include using namespace std; typedef long long ll; const int INF = INT_MAX; int n, m, len, cnt; int f[100005], top[100005], id[100005], size[100005], so…

    回复 0参与人数 1
  5. 发起讨论
    35pts 求调

    ```cpp #include using namespace std; typedef long long ll; ll L, k, ans1 = -1, ans2 = -1; ll a[100005]; ll check(ll x) { ll cnt = 0; ll len = 0; for (int i = 0;…

    回复 1参与人数 1
  6. 回复讨论
  7. 回复讨论

    在讨论问关于编译器回复:

    @[mediocre_](luogu://user/565707) 。。。
  8. 回复讨论

    在讨论问关于编译器回复:

    小熊猫在[这里](https://soft.3dmgame.com/down/324746.html)下,我的就是在这下的,无病毒
  9. 发布文章
    题解:P8838 [传智杯 #3 决赛] 面试

    一道搜索题。 # 思路分析 用 dfs 暴力枚举即可,由于 $n,k \le 6$,所以解法不会超时。 dfs 每一个指令,匹配每一个服务器,只要找到第一种解,就是字典序最小的,因为每一层遍历都是从小到大的。 **1. 确定递归边界:** 当 $k$ 个指令都匹配完后,就找到了正解。 ```cpp if (x == k…

    获赞 1评论 0
  10. 发起讨论
    TLE + WA 求调 QWQ QAQ Q_Q 必关

    ```cpp #include #include using namespace std; int l, r, L, R, k; bool iswavingnumber(string x) { if (x.size() == 1) return true; if (x.size() % 2 == 1) x += x[1…

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

    在讨论喂喂喂admin啊回复:

    此人甚牛而逼之
  12. 发起讨论
    70分TLE求调 QwQ

    ```cpp #include #include #include using namespace std; int n, m; bool vis[185][185]; int ans[185][185]; char map[185][185]; struct node { int x, y; }; void bfs(…

    回复 1参与人数 1
  13. 发起讨论
    进食后人

    十年 OI 一场空,_______________

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

    在讨论建议降橙回复:

    这题数据还有点水,用 $O(m^2)$ 的暴力枚举加 C 风格的输入输出就能过
  15. 评论文章

    在文章P1001 A+B Problem 题解发表评论:

    这篇题解好友善喵
  16. 回复讨论

    在讨论我是奶龙,分数又配错了回复:

    《我是奶龙》 我才是奶龙
  17. 回复讨论
  18. 发布文章
    手写 C++ 高精度

    # 代码 ```cpp line-numbers namespace BigInt { using namespace std; class INT { private: int a[10005]; // 倒序高精度数组 int len; // 高精数字位数(长度) bool f = false; // 负数标记(0…

    获赞 0评论 0
  19. 发起讨论
    70分TLE求调

    ```cpp #include #include #include using namespace std; int n, m; string map[1005]; bool vis[1005][1005]; bool in(int x, int y) { return x >= 1 && x = 1 && y q;…

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

    在讨论20分求助!!!help!!!回复:

    注意审题。 题上说第一个数表示连续有几个 $\texttt 0$,如果矩阵的第一个数是 $\texttt 1$,还需要输出一个 $0$,表示连续有 $0$ 个 $\texttt 0$。所以应该加特判: ```cpp #include using namespace std; int main(){ int s = 0,…
  21. 回复讨论

    在讨论60pts求助回复:

    在 `x-2` `y-2` `o-2` `p-2` 时,下标可能小于 $0$,因此可以加n个判断: ```cpp #include using namespace std; int a[1005][1005]; int main(){ int n, m, k, x, y, o, p, s = 0; cin >> n >…
  22. 回复讨论

    在讨论我嘞个RE回复:

    ```cpp #include #include using namespace std; int n, m, q; int a[1000005]; int main() { cin >> n >> m; for (int i = 1; i > a[i]; } for (int i = 1; i > q; if (a[…
  23. 回复讨论

    在讨论求条玄关回复:

    注意审题。 每只公鸡 $x$ 元,那么公鸡的总价是 $i \times x$,并非 $i \div x$; 每只母鸡 $y$ 元,那么母鸡的总价是 $j \times y$,并非 $j \div y$。 ```cpp #include using namespace std; int x, y, z, n, m, cn…
  24. 回复讨论

    在讨论TLE on #5 求调回复:

    @[KnCRJNET](luogu://user/1391951) 谢谢
  25. 回复讨论

    在讨论扣 1 复活讨论区回复:

    愚人节发的能是真的吗???
  26. 回复讨论

    在讨论WA on #9 #10回复:

    @[Yowjen](luogu://user/1240853) 谢谢,过了
  27. 发起讨论
    TLE on #5 求调

    ```cpp #include #include using namespace std; int n; char tree[30]; map Index; void front(int node) { if (tree[node] == '*') { return; } cout > n; char node, Le…

    回复 2参与人数 2
  28. 发起讨论
    WA on #9 #10

    ```cpp #include #include #include #define in(x, y) x >= 0 && y >= 0 && x q; q.push({x, y}); dis[x][y] = 0; while (!q.empty()) { node now = q.front(); q.pop(); i…

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

    在讨论85分求调回复:

    @[Yowjen](luogu://user/1240853) 过了,万分感谢
  30. 发起讨论