F

Fishlinsihan

#1035710

啥也不会的一只猫(喵喵喵) || 资瓷私信壶关喵 || 看主页食用方法:https://www.cnblogs.com/Gavinbeta/p/18691845 || 初二蒟蒻 || 不在学术模式

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

历史用户名外显

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

  1. Fishlinsihan
    最早追溯到 2025/12/03最后捕获于 2025/12/03
  2. Fishlinsihan
    最早追溯到 2025/11/04最后捕获于 2025/11/04

时间线

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

  1. 发起讨论
    WA求救

    ```cpp #include #include #include #include #include using namespace std; typedef long long ll; ll B(int i, ll h, const vector & A, const vector & P) { ll cost1…

    回复 1参与人数 1
  2. 发布文章
    summy

    我检查了Summly仓库,发现代码存在几个关键问题需要改进: ### 1. 摘要后处理逻辑问题(高风险) 在`processor.py`的`summarize_text`方法中: ```python summary = summary.replace(summary[summary.index(' ')+1], '')…

    获赞 0评论 0
  3. 发布文章
    B4356 [GESP202506 二级] 数三角形

    ## B4356 [GESP202506 二级] 数三角形 ### 题目重述 给定正整数 n,求直角边长 a, b 均不超过 n 的不同直角三角形的数量,要求三角形面积为整数。两个三角形相同当且仅当直角边相同(考虑顺序)。 ### 解题思路 1. **数学分析**: - 面积公式:S = (a×b)/2 - 要使 S…

    获赞 0评论 0
  4. 发布文章
    B4357 [GESP202506 二级] 幂和数

    ## B4357 [GESP202506 二级] 幂和数 ### 题目重述 给定正整数区间 [l, r],求其中满足条件的整数 n 的数量,条件是 n 可以表示为两个 2 的幂次之和,即 n = 2? + 2?(x, y 为非负整数)。 ### 解题思路 1. **问题分析**: - 需要判断区间内每个数是否能表示为两…

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

    在讨论0分求调回复:

    @[__Unsigned__](luogu://user/1412120) 已关谢谢
  6. 发布文章
    第四天作业

    第一题 ```cpp #include #include #include #include #include using namespace std; struct node{ int l,r; }a[1001000];//记录每个节点的左右节点 int Max=-1,n; void dfs(int root,int…

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

    在讨论全WA求调回复:

    完结此问题 ```cpp #include #include #include using namespace std; const int maxn = 1005; // 最大顶点数 int mat[maxn][maxn]; // 邻接矩阵 vector adj[maxn]; // 邻接表 int main() {…
  8. 发布文章
    娱乐

    好玩的网站 休闲 florr.io 2‌NUKEMAP‌(官网入口:https://nuclearsecrecy.com/nukemap/) 驾驶 GeoFS飞行模拟器‌(www.geo-fs.com) Silk交互光影飞行‌(weavesilk.com) 中国模拟飞行网‌(www.sinofsx.com) FSCen…

    获赞 0评论 0
  9. 发起讨论
    全WA求调

    ```cpp #include #include #include using namespace std; const int maxn=1005; struct edge { int v,w; }; vector e[maxn]; int n,m; bool cmp(edge A,edge B){ return A…

    回复 2参与人数 2
  10. 发布文章
    P1226 【模板】快速幂

    这段代码实现了快速幂算法,用于高效计算 \( B^P \mod K \) 的值。快速幂算法通过二分思想将指数分解,显著降低计算复杂度(从 \( O(P) \) 优化到 \( O(\log P) \)。以下是对代码的详细解释: ### 代码功能 1. **输入**:三个整数 \( B \)(底数),\( P \)(指数)…

    获赞 0评论 0
  11. 发起讨论
    0分求调

    ```cpp #include using namespace std; int main(){ int n,m,sum[1001][1001],x1,x2,y1,y2; cin>>n>>m; for(int i=1;i >x1>>y1>>x2>>y2; for(int j=x1;j<=x2;j++){ for(int…

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

    在讨论40分求调回复:

    @[AnotherDream](luogu://user/1208546)谢谢
  13. 回复讨论

    在讨论40分求调回复:

    一青一紫
  14. 发起讨论
    40分求调

    ```cpp #include #include using namespace std; int main(){ int n,m,s[10000],c[1000],b[1000],y=1,sum=0; cin>>n; for(int i=1;i >s[i]; } cin>>m; for(int i=1;i >c[i]…

    回复 3参与人数 3
  15. 发起讨论
    警示后人

    **递推或递归不初始化**,只有5分

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

    在讨论WA40,,求调回复:

    @[Zhi_ptb](luogu://user/1383823) 忘记刷新了没看到,不过已经解决。 再次感谢你的帮助
  17. 回复讨论

    在讨论WA40,,求调回复:

    ```cpp #include using namespace std; unsigned long long a,b; unsigned long long gcd(unsigned long long a,unsigned long long b){ return b==0?a:gcd(b,a%b); } unsi…
  18. 回复讨论

    在讨论WA40,,求调回复:

    @[Zhi_ptb](luogu://user/1383823) ```cpp #include using namespace std; int GCD(long long a,long long b){ if(b==0){ return a; } else return GCD(b,a%b); } int LCM(…
  19. 发起讨论
    WA40,,求调

    ```cpp #include using namespace std; int GCD(long long a,long long b){ if(b==0){ return a; } else return GCD(b,a%b); } int LCM(int a,int b){ return a*b/GCD(a,b)…

    回复 5参与人数 5
  20. 回复讨论
  21. 发布文章
    P1830 轰炸III

    AC代码出锅啦! ```cpp #include using namespace std; int a[110][110],last[110][110]; int main() { int n,m,x,y,x1,x2,y1,y2; cin>>n>>m>>x>>y; //第一步,先记录轰炸的情况; for(int k=1…

    获赞 0评论 0
  22. 发布文章
    第二天小测

    #include using namespace std; int main() { std::ios::sync_with_stdio(0); std::cin.tie(0); std::cout.tie(0); int a, b, c, d, x; cin >> a >> b >> c >> d >> x; int…

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

    在讨论都是re,不明白哪里不对了回复:

    AC代码出锅啦 ```cpp #include using namespace std; int main() { int m,n,i,j,a[10]={0}; cin>>m>>n; for(i=m;i 0;j/=10) { if(j%10==0) a[0]++; else if(j%10==1) a[1]++; el…
  24. 发布文章
    本人题单

    B3689 [语言月赛 202212] 宇宙密码 B3672 [语言月赛202210] 图书新编

    获赞 0评论 0
已经到最早的记录