g

gongruixin

#1031776CCF 6 级

念念不忘,必有回响|凡王之血,必以剑终|生于黑夜,追逐黎明|赞美愚者|人类文明,永不将息|谎如昨日,嗤笑今朝

发帖
4
文章
1
互动
19
陶片
0
获赞
2
收藏
1

历史用户名外显

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

  1. gongruixin
    最早追溯到 2025/11/26最后捕获于 2026/02/24
  2. gongruixin
    最早追溯到 2025/11/03最后捕获于 2025/11/03
  3. gongruixin
    最早追溯到 2025/07/27最后捕获于 2025/07/27
  4. 114yuanpi514
    最早追溯到 2024/10/09最后捕获于 2024/10/09
  5. 114yuanpi514
    最早追溯到 2024/05/23最后捕获于 2024/05/23
  6. 114yuanpi514
    最早追溯到 2023/12/29最后捕获于 2023/12/29
  7. gongruixin
    最早追溯到 2023/11/02最后捕获于 2023/11/02
  8. gongruixin
    最早追溯到 2023/10/22最后捕获于 2023/10/22

时间线

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

  1. 评论文章

    在文章GDOI2026 倒闭记发表评论:

    %%%
  2. 回复讨论

    在讨论求助回复:

    @[X_Chao_Bai](luogu://user/241776) 你给的代码测出来是 ``` Yes Yes ERR No No Yes Yes ERR ``` 而样例是 ``` Yes Yes ERR Yes No Yes Yes ERR ``` 第四个不一样
  3. 回复讨论

    在讨论求助回复:

    @[X_Chao_Bai](luogu://user/241776)你样例都没过啊
  4. 回复讨论

    在讨论求助回复:

    (暂无内容)
  5. 回复讨论

    在讨论求问入门赛T5思路回复:

    暴力,~~不然能怎么办~~ ```cpp #include #define int int using namespace std; namespace Fast { #define fi first #define se second #define pb push_back #define ls(x) (x =y;…
  6. 回复讨论

    在讨论为什么会有异常的MLE?回复:

    @[Algorithm_Killer](luogu://user/1827642) 递归爆栈了 dfs2里面会一直循环 u f: 3 3 4 3 5 3 4 4 5 4 3 3 ... 因为你 5 没有重儿子,会进循环,但是当前的 f 是 3,4不等于3,所以会继续递归,就爆栈了
  7. 回复讨论

    在讨论Dec-c++无法运行回复:

    @[Xycxxx](luogu://user/1529697) 试一下把代码名改成test.cpp,或运行文件改成test.exe
  8. 评论文章

    在文章你的下一代 IDE:OICPP 使用指北发表评论:

    好用点赞
  9. 发起讨论
    如果你不会斜率优化...

    数据实在太水了,加个快读就能过 [记录](https://www.luogu.com.cn/record/203955619)

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

    在讨论只A了#4#5,求调,其他全RE回复:

    结贴 南蛮入侵和万箭齐发没有返回值,但定了 bool 类型
  11. 发起讨论
    只A了#4#5,求调,其他全RE

    在猪国杀(超多样例调试版)里的所有样例本地都跑过了,但交上去全RE,只A了两个点10分 ```cpp #include #define int int #define rep(i,x,y) for(register int i=x;i =y;--i) #define rek(i,x,y) for(register in…

    回复 1参与人数 1
  12. 发布文章
    题解:P2540 [NOIP2015 提高组] 斗地主 加强版

    # 题目大意 有以下几种出牌形式: ![](https://cdn.luogu.com.cn/upload/pic/1827.png) 问你最少几次可以出完手牌。 注意: - 双王不可以当对子带,但可以当单牌带。 - 四带两对可以带四张相同的牌,四带二可以带对子。 # 思路 暴力出奇迹,考虑直接 DFS 暴力,枚举所有…

    获赞 2评论 0
  13. 回复讨论

    在讨论83分是什么鬼啊喂回复:

    @[wang_qian_xi1](luogu://user/1144229) ```cpp if (a[0] + a[1] < a[2]) cout << "Not triangle", exit(0); ``` 要改成 ```cpp if (a[0] + a[1] <=a[2]) cout << "Not trian…
  14. 回复讨论

    在讨论求救大佬必回关回复:

    @[kotori233](luogu://user/1617937) ```cpp for(int i=2;i<=q;i++){ if(a[i]==a[i-1])q--; } ``` 此处应该为 ```cpp for(int i=2;i<=n;i++){ if(a[i]==a[i-1])q--; } ``` 你的q会变…
  15. 发起讨论
    进食后人

    **不开long long见祖宗** **不开long long见祖宗** **不开long long见祖宗** **重要的事情说三遍**

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

    在讨论代码RE求助回复:

    ```cpp #include #define ll long long using namespace std; const ll modd=1e9+1; int n; ll ans=1,dp[21][1 modd) x-=modd; return; } void dfs(int i,int x,int j,int…
  17. 回复讨论
  18. 回复讨论

    在讨论60求助回复:

    @Zzhuangzhuang@xkdd 你们数组越界了,把x--,y--,改成x++,y++应该就行了。
  19. 回复讨论

    在讨论救命,三WA两RE回复:

    过了,多谢: ```cpp #include using namespace std; int n,m,k,x,y,a[105][105],s; int main() { cin>>n>>m>>k; for(int i=1;i >x>>y; x+=2; y+=2; a[x][y]=a[x+2][y]=a[x][y+2]…
  20. 回复讨论

    在讨论救命,三WA两RE回复:

    @[junjie_zhao](/user/847051) 开大了也RE
  21. 回复讨论

    在讨论救命,三WA两RE回复:

    改了代码,三个AC,两个RE,这是代码: ```cpp #include using namespace std; int n,m,k,x,y,a[101][101],s; int main() { cin>>n>>m>>k; for(int i=1;i >x>>y; a[x+2][y]=a[x][y+2]=a[x-2…
  22. 回复讨论

    在讨论救命,三WA两RE回复:

    @[junjie_zhao](/user/847051) 谢大佬
  23. 发起讨论
    救命,三WA两RE

    ## 这是本蒟蒻的代码 ```cpp #include using namespace std; int n,m,k,x,y,a[101][101],s; int main() { cin>>n>>m>>k; for(int i=1 ;i >x>>y; a[x][y]=a[x][y+2]=a[x-1][y+1]=a[x…

    回复 9参与人数 9
  24. 回复讨论
已经到最早的记录