y

yyc_0124

#1126838

...//はいばらあい

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

历史用户名外显

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

  1. yyc_0124
    最早追溯到 2025/11/05最后捕获于 2025/11/05
  2. yyc_0124
    最早追溯到 2025/07/19最后捕获于 2025/07/19
  3. yyc_0124
    最早追溯到 2024/08/10最后捕获于 2024/08/10
  4. yyc_0124
    最早追溯到 2024/07/18最后捕获于 2024/07/18

时间线

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

  1. 回复讨论

    在讨论B3958求调回复:

    [原来激烈的讨论](https://www.luogu.com.cn/discuss/915773)
  2. 发起讨论
    B3958求调

    我同学做[题](https://www.luogu.com.cn/problem/B3958)时 ```cpp #include using namespace std; int t,la,lb; string a,b; bool check(){ bool f=0; if(abs(la-lb)>1)return 0;…

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

    在讨论过了样例,但wa声一片(悬关)回复:

    见私信 ```cpp #include using namespace std; #define ll long long int n; signed main(){ cin >> n; while (n--){ string a , b; cin >> a >> b; int la = a.size(); int l…
  4. 回复讨论

    在讨论rand?随机数?什么原理...(wgzs)回复:

    谢谢二位 七夕快乐呀
  5. 回复讨论

    在讨论rand?随机数?什么原理...(wgzs)回复:

    感谢大家... ~~还是谷谷网友热情,同学们一个不理我~~ 修改完毕~~ ```cpp #include #include #include #include using namespace std; int main(){ srand(time(0)); while (1){ int i = rand()%100 +…
  6. 发起讨论
    rand?随机数?什么原理...(wgzs)

    # Why!!! [csdn告诉我的啊](https://blog.csdn.net/onion23/article/details/118558454) 我的代码: ```cpp #include #include #include #include using namespace std; int main(){…

    回复 8参与人数 8
  7. 回复讨论

    在讨论wai回复:

    建议紫衫
  8. 发起讨论
    P1135 bfs 58pts 求调

    使用bfs 数组 58 pts ```cpp #include using namespace std; int n , a , b; int k[210][2];// 每个楼层能上去或下去的楼层数 int edge[210];// bfs 遍历顺序 bool vis[210];// 判断是否到访 int step[2…

    回复 2参与人数 2
  9. 发起讨论
    P1135 bfs 58pts 求调

    [P1135](https://www.luogu.com.cn/problem/P1135) bfs数组 58pts 谢谢dalao ```cpp #include using namespace std; int n , a , b; int k[210][2]; int edge[210]; bool vis[2…

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

    在讨论小数该怎么判断相等与否啊?回复:

    浮点数比较不应使用 ```cpp arr[i] == ans; ``` 因为存在精度误差 ```cpp if (abs(arr[i]) - ans < 1e-7 ){ ... } ```
  11. 回复讨论

    在讨论小数该怎么判断相等与否啊?回复:

    可以试试gcd ```cpp #include using namespace std; int main() { int a , b , c; cin >> a >> b >> c; if (a > c){ swap ( a , c); } if (a > b ){ swap (a , b); } if (b > c…
  12. 回复讨论

    在讨论小数该怎么判断相等与否啊?回复:

    浮点数比较不应使用 ```cpp arr[i] == ans; ``` 因为存在精度误差 ```cpp if (arr[i] - ans < 1e7 ){ ... } ``` 大概这样
已经到最早的记录