支持互关 || 小学生一枚 || 有人玩florr.io吗 || 蒟蒻QAQ
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
在讨论《小能猫||洛谷的问题》回复:
@[meng_xiong](luogu://user/1581608) 谢谢。
```cpp #include #include #include using namespace std; int a[100001]; vector sn,sx; int main() { int n,ans=0; cin>>n; for(int i=1;i >a[i]; for(int i=1;i =a[i]))…
在文章《反转力场》发表评论:
做一个只反转数字的
```cpp #include #include #include using namespace std; int n,m,x; long long c[1001]; vector a[1001]; bool cmp(int x,int y) { return c[x]>c[y]; } int f() { int x…
在文章《题解:P11965 [GESP202503 七级] 等价消除》发表评论:
long long 8字节,long long cnt[1<<26] 536870912字节,也就是512MB。 所以不会MLE吗?
```cpp #include #include using namespace std; vector g[1001]; int f[1001],vis[1001]; int dfs(int x) { if(f[x]!=0) return f[x]; vis[x]=1; int ans=x; for(int i:g[…
[题目传送门。](https://www.luogu.com.cn/problem/B2163) ## 样例:  就是这张图片。 我们可以使用一个递归函数,把棋盘分成 $4$ 份,每次判断特殊方…
在文章《题解:P14075 [GESP202509 六级] 划分字符串》发表评论:
你看看下面的就明白了
[题目传送门。](https://www.luogu.com.cn/problem/P14076) 通过题意, > 这 $n$ 座城市由 $n-1$ 条双向道路连接。 我们可以知道,这是一棵树,~~CCF不会给我们弄一个非连通图~~。如果每次运送完货物都需要回首都的话,那么最后的路程一定是所有路径的长度和的两倍。但是题…
[题目传送门。](https://www.luogu.com.cn/problem/P14075) 题目说我们要给字符串分段,所以我们可以从长度为 $1$ 的字符串开始,一步一步推导,求出最后字符串的最大价值。 ## 代码: ```cpp #include #include using namespace std; l…
在讨论《进食猴人!》回复:
虽然还是没对,但是谢谢
在讨论《警示后人!!!(如果你40--45)》回复:
```cpp __int128_t ```
在讨论《关于 CSP-S T3》回复:
哈哈哈,太好笑了
对于TLE的同学们,一定要注意,如果你使用的是cin cout,可以在主函数前加这两行代码: ```cpp ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); ``` 这样就不怕TLE了。 67173866
```cpp #include #include #include using namespace std; string x[8]={"","BangZhu","FuBangZhu","HuFa","ZhangLao","TangZhu","JingYing","BangZhong"}; struct bangyou…