这个人很lan
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
在讨论《关于输入》回复:
@[Little_corn](luogu://user/426737) 明白了他会访问到后面的空间,/bx
为什么使用 $char$ 类型输入和使用 $string$ 获得不一样的结果? 代码 ```cpp #include using namespace std; const int N=3030; int n,m,a,b,ans,f[N][N][2]; char s[N][N]; //string s[N]; void…
在讨论《卡常 TLE 20pts》回复:
@[TBSF_0207](luogu://user/655088) 明白了\bx
在讨论《卡常 TLE 20pts》回复:
@[TBSF_0207](luogu://user/655088) 为什么两个阈值不一样?
在讨论《wa 50pts 求调》回复:
死因que函数最后合并写错,帖结 献上一组数据 ```cpp /* 12 9 2 14 15 4 15 15 9 9 3 13 9 5 1 2 2 3 3 4 3 5 2 6 1 7 6 8 4 9 1 10 6 11 6 12 Q 10 3 Q 4 6 Q 4 2 C 4 8 5 Q 8 6 Q 9 1 Q 9 9…
```cpp #include using namespace std; const int N=1e5+10,inf=1e9+1; int n,m,a[N],w[N]; int son[N],siz[N],dep[N],top[N]; int id[N],idy,f[N]; struct edge{ int v,ne…
```cpp #include using namespace std; const int N=1e5+10,inf=1e9+1; int n,m,a[N]; int son[N],siz[N],dep[N],top[N]; int id[N],idy,f[N]; struct edge{ int v,next; }…
```cpp #include using namespace std; #define int long long const int N=2e5+10,mod=1e9+7,inf=1e17; int n,a[N],head[N],idx,cnt; struct edge{ int v,next; }e[N*2];…
```cpp #include using namespace std; const int N=5e4+10,M=2e5+10; int low[M],dfn[M],st[M],top,bel[M],tim;//TARjan 基本 int n,d,m,len;//len无用当n int posx[M],cntx;//…
```cpp #include using namespace std; const int N=5e4+10,M=2e5+10; int low[M],dfn[M],st[M],top,bel[M],tim; int n,d,m,len; int posx[M],cntx,icnx[M]; char xi[M]; s…
在讨论《普通莫队+队列 wa on 2#求调》回复:
此贴结
在讨论《普通莫队+队列 wa on 2#求调》回复:
@[chelsy_qwq](/user/371825) 谢谢学姐 ——^-^
```cpp #pragma GCC optimize(2) #pragma GCC optimize(3) #pragma GCC optimize("Ofast") #pragma GCC optimize("inline") #include using namespace std; const int N=5e…
```cpp #include using namespace std; const int N=5e4+100; int n,k,idx,root,siz[N],bcs,head[N]; int L,p,dis[N],cnt[N]; struct edge{ int v,next; }e[N*2]; void con…
在讨论《救救孩子吧》回复:
P6628
```cpp #include using namespace std; #define int long long #define w(u,v) abs(u-v) const int N=510000; int n,m,s,head[N],idx,d[N],f[N],u[N],v[N],ans,sum,bel[N];…
在文章《Senior Data Structure · 浅谈线段树(Segment Tree)》发表评论:
这里的build函数有什么用啊