这名用户暂未设置签名。
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
```cpp #include using namespace std; typedef pair pue; int x[1005],y[1005]; int T,lz[1005][1005],xx,yy,n,nf; int dx[]={0,-1,1,0},dy[]={-1,0,0,1}; int BFS(int sx…
在讨论《代码全部ac,但是自己本地测试有问题》回复:
@[Algophitronrhythm_](/user/757040) 开个数组存数呗
在讨论《代码全部ac,但是自己本地测试有问题》回复:
@[FZH0622](/user/1339859) 洛谷的Linux应该更严格,更会数组越界啥的啊,我的Windows反而输入不了,但是洛谷能ac,搞不懂。
在讨论《代码全部ac,但是自己本地测试有问题》回复:
```cpp #include using namespace std; struct Node { int val; int left,right,parent; }; Node node[10005]; int sum;//居民路程和 void dfs(int k,int d,int fr) { sum+=node…