AFO
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
## 上午: 没报J组,在机房玩了一上午,吃完饭后就和机房的几个人一起去考点了。 ## 14:15 进考场开始打缺省源 ~~(吐槽一下那个机房键盘好硬,不过还好没出什么问题)~~。 然后开始玩小恐龙。 ## 14:30~14:50(T1) 打开PDF后光速看 T1,然后看到 $\frac{n}{2}$ 的限制就知道是贪…
在讨论《全RE求调,玄关》回复:
已过题,此帖结
在讨论《全RE求调,玄关》回复:
忘发代码了 ```cpp #include using namespace std; int t[20000010][2], num; int tot[20000010]; long long a[500010]; int k[500010][40], n, m; void add(int p) { int w = 0…
在讨论《求hack》回复:
```cpp #include #define int long long using namespace std; int dp[200010], l[1000010], n; int a[200010], p[200010], b[200010]; signed main() { //freopen("in.txt…
在讨论《求问CSP - S》回复:
此贴结,看到ccf的通知了
在讨论《出售CSP-J/S 2024 原题》回复:
qp
在讨论《强烈谴责》回复:
@[bijhla](/user/708102) 乱at好玩吗
在讨论《谁能告诉我c++维基百科的网址》回复:
是这个吗?[oi-wiki.org](https://oi-wiki.org)
RT,错误原因为输出0 [评测记录](https://www.luogu.com.cn/record/175500347) ```cpp #include using namespace std; long double dp[2010][2010][2]; long double x[2010], y[2010];…
在讨论《洛谷 Dataset 代码征集公告》回复:
hpzc
在讨论《fhq悬关求助》回复:
忘格式整理了,重新发一个: ```cpp #include using namespace std; const int MAXN = 4e6 + 10; mt19937 myrand(time(0)); struct node { int val; unsigned pri; int ls, rs; int size…
[评测记录](https://www.luogu.com.cn/record/162416322) ```cpp #include using namespace std; const int MAXN=4e6+10; mt19937 myrand(time(0)); struct node{ int val; uns…
在讨论《运行RE了》回复:
@[zzhhyy1234](/user/1367086)
在讨论《运行RE了》回复:
把 t 数组开在 main() 外面,main() 里开不了大的数组
在讨论《FHQ-Treap 0pts 求助》回复:
已关
在讨论《FHQ-Treap 0pts 求助》回复:
@[ACcepted917](/user/924648) 已过,谢谢
[评测记录](https://www.luogu.com.cn/record/162250732) code: ```cpp #include using namespace std; const int MAXN = 1e5 + 10; mt19937 myrand(time(0)); int n, m, root…
在讨论《Treap板子58pts求调,WA #7~#12》回复:
此帖结,Del 回溯时忘 Update 了
在讨论《Treap板子58pts求调,WA #7~#12》回复:
问题应该出在操作3上,但我找不出来
```cpp #include using namespace std; const int MAXN = 1e5 + 10; int n, root = 0; struct node { int val, pri; int cnt, size; int lc, rc; } nd[MAXN]; int num_node…
在讨论《作为妈妈,自学c++,欲与儿子过过招。请大佬们指点,赐教!》回复:
火神山前留名
RT,动态开点线段树求调 ```cpp #include using namespace std; int n, m; int x[100010], y[100010], z[100010], maxn; struct edge { int u, v, next; } e[100010]; int head[10001…