这名用户暂未设置签名。
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
```cpp #include #include #include using namespace std; struct node { int pos; int maxx; int minn; int bh; }; node th[3000],tl[3000]; int book[3000],match[3000],…
代码如下 ```cpp #include #include using namespace std; int ch[8][2]={{1,2},{1,-2},{-1,2},{-1,-2},{2,-1},{2,1},{-2,1},{-2,-1}}; struct node { int v; int next; }attac…
在讨论《RE一片基佬紫,求改正》回复:
二位数组开这么大,可以吗?
在讨论《自己的做法改了一天没改出来,看题解写的也还错了》回复:
解决了....
在讨论《自己的做法改了一天没改出来,看题解写的也还错了》回复:
好的 照题解写的方法是低级错误 循环的是j 但是我dfs(i)了,自己写的做法也是这个错误,但是改正后照题解的过了,自己写的还是错
在讨论《改得和题解几乎一样都错?!》回复:
@[旅人杜](/space/show?uid=96934) 好的 低级错误 循环的是j 但是我dfs(i)了
在讨论《自己的做法改了一天没改出来,看题解写的也还错了》回复:
然后是看@[yybyyb](/space/show?uid=21283) 这位dalao的 ```cpp #include #include using namespace std; struct node { int v; int next; }bed[10000]; int cnt=0; int first[100…
先是自己写的: ```cpp #include #include using namespace std; int bed[100][100],student[100],home[100],book[100],match[100]; int n; int dfs(int); int main() { int t; sc…
在讨论《改得和题解几乎一样都错?!》回复:
@[y2823774827y](/space/show?uid=88804)
在讨论《改得和题解几乎一样都错?!》回复:
碰到了和你一样的问题,改得和题解一样 还是全wa ```cpp #include #include using namespace std; struct node { int v; int next; }bed[10000]; int cnt=1; int first[100]; int book[100],matc…
在讨论《双倍经验》回复:
@[CokeMine](/space/show?uid=65360) emm我没吸氧,你要是有兴趣可以把你的优化一下
在讨论《求助啊,十个点都tle,数据都那么复杂吗?》回复:
好了改好了 这个是纯模拟太暴力了 纯粹过慢
```cpp #include #include #include #include #include #include using namespace std; struct node { int dd; int zx; int yx; int bh; bool operator p.bh; if(dd==p.dd)…
在讨论《广搜80分 第九第十个点tle》回复:
不 记忆化
在讨论《广搜80分 第九第十个点tle》回复:
用了染色过了
在讨论《广搜80分 第九第十个点tle》回复:
@[P指向NULL](/space/show?uid=58399) 吸氧还是tle
麻烦看看 ```cpp #include #include #include #include using namespace std; int ch[4][2]={{-1,0},{0,-1},{1,0},{0,1}}; char board[1005][1005]; int book[1005][1005]; int…
在讨论《双倍经验》回复:
@[吸取教训](/space/show?uid=24685) @[CokeMine](/space/show?uid=65360) 2648....两个题一块做的,发帖混了
在讨论《双倍经验》回复:
@[CokeMine](/space/show?uid=65360) 2648....两个题一块做的,发帖混了
在讨论《用SPFA TLE的注意了》回复:
这是什么原理,请问有没有人能解释一下
在讨论《求解啊 为什么输出inf?》回复:
同一个问题,请问你解决了吗
在讨论《注意呢,minn得用double定义》回复:
用了double输出inf什么鬼
在讨论《###求解下载下来数据本地测试都对,但是wa声一片啊》回复:
@[SD191553](/space/show?uid=32527) bfs后的那俩换行测的时候去掉了 本来是检查用的 只对了第二个
在讨论《###求解下载下来数据本地测试都对,但是wa声一片啊》回复:
@[SD191553](/space/show?uid=32527) emm没懂啥意思
以下是代码,按照讨论有人说的printf(%-5d)也不行啊 ```cpp #include #include using namespace std; int board[201][201],step[201][201]; int o[8][2]={{-1,-2},{-1,2},{1,-2},{1,2},{-2,-1…
在讨论《求解下载下来数据本地测试都对,但是wa声一片啊》回复:
@[deadpool123](/space/show?uid=84121) 麻烦看一下
在讨论《求解下载下来数据本地测试都对,但是wa声一片啊》回复:
@[旅人杜](/space/show?uid=96934) ```cpp #include #include using namespace std; int board[201][201],step[201][201]; int o[8][2]={{-1,-2},{-1,2},{1,-2},{1,2},{-2,-1}…
在讨论《求解下载下来数据本地测试都对,但是wa声一片啊》回复:
@[deadpool123](/space/show?uid=84121) 抱歉 以为会自动格式弄好,我重新发帖
以下是代码 #include #include using namespace std; int board[201][201],step[201][201]; int o[8][2]={{-1,-2},{-1,2},{1,-2},{1,2},{-2,-1},{-2,1},{2,-1},{2,1}}; queue h;…