吕后不就是宋朝的那个慈禧太后吗 || "ㅤ"
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
在文章《如何将 Sublime Text 从一个空壳变成竞赛提效神器》发表评论:
小熊猫可以自动监听compatitive companion(好像最新版不行了?)
在文章《CodingSnake 2026 正式开始》发表评论:
network error?
在讨论《MLE 0pts求条》回复:
(暂无内容)
在讨论《MLE 0pts求条》回复:
@[Country_Bank](luogu://user/1019023) 谢谢巨佬,已关 ~~我唐了,数组开大了10倍~~
空间炸了 求巨佬帮忙压一下空间 ```cpp #include using namespace std; #define int long long struct pt { int x, y; } p[500001]; bool cmp1(const pt& p1, const pt& p2) { return p1.…
在讨论《84pts求条WA on #6 #14》回复:
哦犯糖了 ```cpp for (int i = 2; i <= n; i++) { e[i + 1].push_back({i, 0}); } ``` 这里应该从1开始 现在93pts WA on #14
在讨论《84pts求条WA on #6 #14》回复:
然后#6不知道是什么错
警示后人看了一下,加了相邻两个的约束,但是#14还是WA的 ```cpp #include using namespace std; int n, ml, md; vector > e[10001]; int dis[10001], cnt[10001]; bool vis[10001]; queue q; signe…
在讨论《WA on Sub1 #1#3 求条》回复:
%%%居然手写队列
在讨论《WA on Sub1 #1#3 求条》回复:
起点应该是 n + 1 ```cpp #include using namespace std; int T,n,m,u,v,ww,dis[105],cnt[105],flag[105],q[105],head,tail,ans; vector g[105]; vector w[105]; int main() { c…
在讨论《WA on Sub1 #1#3 求条》回复:
我只 AC 了sub #1 #3 ```cpp #include using namespace std; int T; int n, m; vector > e[101]; int dis[101], cnt[101]; bool vis[101]; queue q; signed main() { cin >> T…
在文章《雨后小故事》发表评论:
exit(0);
在文章《不是哥们你说话是人能说出来的吗?》发表评论:
不是哥们你说话是人能说出来的吗? 不是哥们你说话是人能说出来的吗 不。是。哥。们。你。说。话。是。人。能。说。出。来。的。吗? 不哥你话人说来吗? 是不哥你们说是话人说能出的来吗?
在文章《已完成今日 A+B Problem 大学习》发表评论:
%%%
在文章《ComplexNumber:功能齐全的手写 Complex》发表评论:
可以合并成template ::value>::type* = nullptr>
在文章《ComplexNumber:功能齐全的手写 Complex》发表评论:
__float80和__float128和axv,arm的浮点类型可以考虑一下
```cpp #include using namespace std; #define int long long int n; vector > m; int glob = 0; signed main() { cin >> n; for (int i = 1; i > op; if (op == 1) { cin…
```cpp #include using namespace std; int n; vector > m; int main() { //freopen("lucky.in", "r", stdin); //freopen("lucky.out", "w", stdout); cin >> n; for (int…
在讨论《50分WA on #23457求条》回复:
@[Deepsick](luogu://user/2004018) 谢谢,已关
```cpp #include using namespace std; int n, m; vector e[10001]; int color[10001]; bool vis[10001]; void bfs(int x) { queue q; q.push(x); color[x] = 1; while (!q…
注意本题的边数不是m 如代码 ```cpp #include using namespace std; int T; struct edge { int from; int to; int w; }; int main() { cin >> T; while (T--) { int n, m; cin >> n >>…
```cpp #include using namespace std; int m; bool b[1025]; vector e[501]; int d[501]; stack st; string ans; void dfs(int x) { bool f = false; for (int i : e[x])…
这道题的条件判断一定不能写反 见代码 ```cpp #include using namespace std; int m, n; int a[13]; int dp[13][1 > m >> n; for (int i = 1; i > x; a[i] = (a[i] << 1) + x; } } for (int…
在文章《无符号高精度整数》发表评论:
实际上把int[]改成vector 就成动态的了
在文章《无符号高精度整数》发表评论:
@masonxiong 见此: https://www.luogu.me/article/pd2n4tdp
过不了样例 ```cpp #include using namespace std; int n, l, r; int w[200001]; int dp[400001]; priority_queue > p; signed main() { memset(dp, 0x80, sizeof (dp)); cin >>…
注意本题编号从0开始而不是从1开始,所以不能 ```cpp int root; for (int i = 1; i <= n; i++) { if (!b[i]) { root = i; break; } } dfs(root); ``` 而是 ```cpp int root; for (int i = 0; i <=…