这名用户暂未设置签名。
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
在讨论《求CSP》回复:
@[__YiChaQAQ__o_O](luogu://user/1159944) 赛后才发现的
在讨论《求CSP》回复:
@[Senior_Young](luogu://user/1202695) 正式比赛如果没有大样例也会饭堂。
在讨论《求CSP》回复:
@[__YiChaQAQ__o_O](luogu://user/1159944) 是出了一些关于题目细节问题,就是思路很清晰了然后还 WA 了那一种,比如:(忘记取模,特判等)。
在讨论《ALFR Round 11 赛时答疑帖》回复:
@[wmrqwq](luogu://user/820056) 请问 div2 B 样例解释: ```cpp 1 6 5 10 1 2 3 2 2 4 4 5 4 6 1 5 3 6 ```
在讨论《ALFR Round 11 赛时答疑帖》回复:
@[wmrqwq](luogu://user/820056) 请问 div2 B 样例解释: ```cpp 1 6 5 10 1 2 3 2 2 4 4 5 4 6 1 5 3 6 ```
```cpp #include using namespace std; #define int long long const int N = 1e5+10; int c, t; string s; int get1(int x) { if (s[x - 1] == 'r' || s[x - 1] == 'l') r…
## 题目大意: [传送门](https://www.luogu.com.cn/problem/P14298) 我们要从 $a,b,c,d$ 数组中各选一个数,使得这 $4$ 个数的最大值与最小值的差最小。 这相当于找到一个最紧凑的四元组。 ## 题目思路: [前提双指针](http://oi-wiki.com/mis…
## 题目大意: [传送门](https://www.luogu.com.cn/problem/P14293) JOI 商店有 $N$ 件商品,每件商品有价格和种类。促销活动持续 $M$ 天,第 $j$ 天所有种类为j的商品打 $5$ 折。有 $Q$ 位顾客,每位顾客在第 $T_k$ 天购买编号在 $[L_k, R_k…
在讨论《abc E是不是有原题》回复:
大体思路就是树的直径。@[shuaiqbr](luogu://user/974005) 可能有的。
在讨论《SCP要不要 freopen?》回复:
@[ICE__LX](luogu://user/1032391) 真的不需要吗?去年要加吗?
在讨论《关于AT和CF比赛》回复:
@[jiaohaozhe](luogu://user/989124) 其实不也不太强的,也在冲 CSP-S2 1= S 其实就是把第一题过了,后面的题骗一些分,差不多就够了。
在讨论《关于AT和CF比赛》回复:
@[jiaohaozhe](luogu://user/989124) 我觉得 AT 对 4-5 题差不多有 CSP-S2 一等奖的。 CF div4尽量做到 DE 哈。div2 其实也可以,试试水锻炼思维。
在讨论《LGR-244 总结帖子》回复:
第一排!
在讨论《LGR-244 总结帖子》回复:
qpzc
在讨论《求条!25pts,玄1管》回复:
谢谢@[not_so_littlekayen](luogu://user/687685)但是还没理解啥意思
在讨论《求条!25pts,玄1管》回复:
那不是和我的思路一样吗?@[zbl2012](luogu://user/1653348)
```cpp #include using namespace std; #define int long long int n,m,ans; string a,b; int gcd(int x,int y){ if(!x||!y) return x+y; else return gcd(y,x%y); } signe…
## 题目大意: [传送门](https://www.luogu.com.cn/problem/P14171) 对于第 $i$ 个小朋友,以下规则记录下了数字 $a_i$: - 若 $a_i>0$,将手娟放在从自己开始顺时针数 $a_i$ 个位置的小朋友身后。 - 若 $a_i 0$,手绢放在第 $i+a_i$ 小朋友…
```cpp #include using namespace std; #define int unsigned long long int t,n,m; inline int read() { int x = 0, f = 1; char ch = getchar(); while (ch '9') { if (c…
在讨论《关于CSP》回复:
@[tuxiaolai](luogu://user/1771965)
```cpp #include using namespace std; #define int long long const int N=5e5+10; const int INF=1e18; struct E{ int op,id,t,l,r,k; }; int n,m; int a[N]; E e[N]; in…
在讨论《关于CSP-J2/S2》回复:
@[Lovya](luogu://user/555868) 主要是被我同学吓到了,他们都说可能会考,我现在对交互啥都不知道的
在讨论《关于CSP-J2/S2》回复:
可能会有交互吗?@[xzxakIOI](luogu://user/1569747)@[Lovya](luogu://user/555868)
在讨论《「SFMOI」Round II 赛时答疑帖》回复:
@[Watersphere](luogu://user/1029969) 没事了,已领雾
在讨论《「SFMOI」Round II 赛时答疑帖》回复:
@[Watersphere](luogu://user/1029969) B题中为何输入 $60$ $1$ 输出为 $2$
```cpp #include using namespace std; #define int long long const int N=4e5+10; int n,m,a[N]; struct node{ int val; bool lazy; }b[N]; inline int read() { int x =…
本入能切红至黄的题,绿题有点难战胜。思维能力比较蒻,有没有加强思维能力的好题单推荐。图论和最短路会,线段树的并查集不是很熟练,求求啦!
```cpp #include using namespace std; int tl; inline int read() { int x = 0, f = 1; char ch = getchar(); while (ch '9') { if (ch == '-') f = -1; ch = getchar();…