p

prx1460

#620232

都是傻逼

发帖
14
文章
0
互动
18
陶片
0
获赞
0
收藏
0

历史用户名外显

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

  1. prx1460
    最早追溯到 2025/11/21最后捕获于 2025/11/21
  2. prx1460
    最早追溯到 2023/10/21最后捕获于 2023/10/21

时间线

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

  1. 回复讨论

    在讨论DFS玄学剪枝80分WA求助回复:

    ```cpp #include #include #include #include using namespace std; const int maxn=3005; const int inf=0x3f3f3f3f; int dis0[maxn],dis1[maxn],dis2[maxn],s1,s2,t1,t2;…
  2. 回复讨论

    在讨论DFS玄学剪枝80分WA求助回复:

    我BFS只用了60行
  3. 发起讨论
    somebody求助

    ```cpp #include using namespace std; int n,m,i,j,y; char a[30][30]; string x,ans="{"; int main() { cin>>n>>m; for(int i=0; i >a[i][j]; } } for(int i=1; i 'a'&&a…

    回复 0参与人数 1
  4. 回复讨论
  5. 回复讨论

    在讨论【喜报】进省队 55 人!洛谷计划学员厉害!回复:

    我们四川一个人也没进
  6. 回复讨论
  7. 发起讨论
    这个代码为什么过不了啊?

    ```cpp #include #include using namespace std; struct node { int x,y,v; } edge[200005]; int pa[200005]; bool cmp(node x,node y) { return x.v >n>>m>>k; init(n); f…

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

    在讨论floyed RE求解回复:

    @[ydq1101](/user/672281) 谢谢
  9. 回复讨论

    在讨论floyed RE求解回复:

    @[ydq1101](/user/672281) 那为什么数据对我不水啊?
  10. 回复讨论

    在讨论floyed RE求解回复:

    @[ydq1101](/user/672281) 我朋友floyed开了O2后也可以过啊?[https://www.luogu.com.cn/record/107716166](结果)
  11. 回复讨论

    在讨论floyed RE求解回复:

    @[ydq1101](/user/672281) 啥意思啊?
  12. 发起讨论
    floyed RE求解

    ```cpp #include using namespace std; const int maxn=1e3+10; int a[maxn][maxn],n,m; int main(){ ios::sync_with_stdio(0); for(int i=1;i >n>>m; for(int i=1;i >u>>v…

    回复 9参与人数 9
  13. 发起讨论
    题解的思路但为什么过不了啊?

    ```cpp #include #include #include using namespace std; int n,m,fa[200],b[200]; struct node { int x,y; } a[5010]; inline bool cmp(node x,node y) { if(x.x==y.x) {…

    回复 1参与人数 1
  14. 发起讨论
    floyed55分求解

    ```cpp #include #include using namespace std; int getnum(char c) { if(c>='a'&&c >n; for(int i=1; i >a>>b>>d; a1=int(a),b1=int(b); if(a1>='A'&&a1 ='A'&&b1<='Z'){…

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

    在讨论题解里的这句话是什么意思啊?回复:

    @[__LYY_p](/user/283255) 谢谢
  16. 回复讨论

    在讨论题解里的这句话是什么意思啊?回复:

    @[__LYY_p](/user/283255) 啥意思啊?
  17. 发起讨论
    题解里的这句话是什么意思啊?

    ```cpp for(auto i:ans) printf("%d %d\n",i.x,i.y); ```

    回复 4参与人数 4
  18. 发起讨论
    求助大佬

    ```cpp #include #include using namespace std; const int maxn=0x3f3f3f3f; struct Edge { int son,father,dis; } edge[1000000]; int head[20000],cnt,ans[20000]; bool…

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

    在讨论为啥编译失败了啊?(悬关注)回复:

    ありがとうございます。 已关注
  20. 发起讨论
    为啥编译失败了啊?(悬关注)

    ```cpp #include using namespace std; const long long N=1e5+10,INF=1e8+1010; long dis[N],mp[N][N],v[N],n,m,s; void dijkstra(int s) { memset(dis,INF,sizeof(dis));…

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

    在讨论蒻芨求助!为什么Bellman_ford全RE了?回复:

    @[Eznibuil](/user/335096) 还是RE了。我们教练让我们练习一下
  22. 发起讨论
    蒻芨求助!为什么Bellman_ford全RE了?

    ```cpp #include using namespace std; const int M=1e4+10,N=1e4+10; int n,m,s; long long dis[N],u[M],v[M],w[M],cnt=1; long long Bellman_ford(int s,int t) { memset…

    回复 2参与人数 2
  23. 回复讨论
  24. 回复讨论

    在讨论0分求解回复:

    @[masonpop](/user/614725) 啥意思啊?是不是```cpp logn[i]=logn[i>>1]+1; ```
  25. 发起讨论
    0分求解

    ```cpp #include using namespace std; const int LN=20; const int N=1e6+10; int logn[N]= {-1}; int a[N]; int f[N][LN]; int m,n; int query(int l,int r) { int x=log…

    回复 4参与人数 4
  26. 发起讨论
    20分求解

    ```cpp #include #include using namespace std; int n, k; int main() { ios::sync_with_stdio(0); cin >> n >> k; int x, y, xx, yy, a[n + 2][n + 2] = {0}; for (int i…

    回复 1参与人数 1
  27. 发起讨论
    0分求解

    ```cpp #include #include using namespace std; const int inf = 99999999; #define maxn 100 int p, dis[maxn], tu[maxn][maxn], vis[maxn]; char str; void de(int x, i…

    回复 0参与人数 1
  28. 发起讨论
    0分求解(希望60分)

    ```cpp #include using namespace std; const int maxn = 10000000; long long n, a[maxn], b[maxn], c[maxn], p, q; int main() { ios::sync_with_stdio(0); cin >> n; fo…

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

    在讨论快8千万次评测了回复:

    什么是RT?
  30. 回复讨论

    在讨论来自蒟蒻的提问回复:

    能发张截图吗?