Ciallo~你好~
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
rt ```cpp #include using namespace std; namespace Tarjan{ const int MAXN=5e3+10,MAXM=5e4+10; int head[MAXN],to[MAXM st; set ans[MAXN]; inline void add(int x,int…
在讨论《如果你写的很对但是还是44pts》回复:
完了,我也眼瞎
在讨论《0pts求助》回复:
今天看到一篇这种马蜂的代码 觉得非常好 所以我来试试,但是没想到直接WA了 悬2关求助 自认为马蜂优良
rt,0pts ```cpp #include using namespace std; #define _ return #define __ , #define ___ ; #define ____ [ #define _____ ] #define ______ { #define _______ } #defi…
在讨论《悬关,本地过,交上去全WA》回复:
知道了,是`init`的类型应该是`void` 我写的是`int`
在讨论《悬关,本地过,交上去全WA》回复:
@[xionghaoran123](/user/689806) 但是为什么我这里交还是WA ``` #include using namespace std; const int MAXN=1e4+10; const int MAXM=5e5+10; const long long inf=pow(2,31)-1; i…
在讨论《悬关,本地过,交上去全WA》回复:
@[xionghaoran123](/user/689806) 关注了谢谢
 代码如下 实在改不出来 ``` #include using namespace std; const int MAXN=1e4+10; const int MAXM=5e5+10; cons…
在讨论《0pts求助悬关》回复:
我是沙比 输出的是`Yes`不是`YES` 此帖结
rt 基本上和第一篇题解一样,但是就是全WA ```cpp #include #define int long long using namespace std; const int MAXN=1e5+10,MAXM=1e3+10; int n,h,r,cntd,cntu,totd[MAXN],totu[MAXN],f…
在讨论《求助dinic过不了样例2》回复:
@[ifffer_2137](/user/677440) okok谢谢dalao
rt 样例 ``` 10 16 1 2 1 3 2 1 4 2 5 2 2 6 2 2 3 5 1 3 6 1 4 5 1 4 6 1 1 7 2147483647 9 2 2147483647 7 8 2147483647 10 9 2147483647 8 5 2 8 6 2 3 10 2 4 10 2 ``` *…
在讨论《本地过了,洛谷全WA》回复:
找到了
RT,蒟蒻求调 ```cpp #include #define min(a,b) a pll; const int MAXN=3e5+10; const int inf=2e9; namespace flow { int S,T,n,m,cnt,head[MAXN],nxt[MAXN],to[MAXN],use[MAX…
在讨论《用了高精,50分,悬关》回复:
不要AC代码,指出我的错误就好了
实在不知道怎么做了,dalao们看看问题,指出错误就好了 ```cpp #include using namespace std; const int kMAXN = 200; long long a[kMAXN],s[kMAXN]; int main(){ int n; scanf("%d",&n); a[0]=1,…
```cpp #include using namespace std; const int kMAXN = 10000+10; int a[kMAXN]={0},s[kMAXN]; int main(){ int n; scanf("%d",&n); a[0]=1,a[1]=1; s[0]=1,s[1]=1; for…