@okcthunder
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
在讨论《入门赛 #37 作弊名单(棕名 143 人,封 16 人)》回复:
哈哈哈 sqlm qp
在讨论《郑州一中公开赛 2025 赛后总结帖》回复:
qp
在文章《题解:UVA11776 Oh Your Royal Greediness!》发表评论:
%%%
在讨论《LGR-231-Div.3 & 「CZOI-R4」赛时答疑》回复:
预祝比赛顺利,也预祝我rp++;
在讨论《IAOI、梦熊周赛作弊名单》回复:
@[GoldenState_Warriors](luogu://user/1137536) ???
在讨论《IAOI、梦熊周赛作弊名单》回复:
@[Gilbert1206](luogu://user/1274525) 我有一次让AI给我调代码,他建议我开到10^30
在讨论《IAOI、梦熊周赛作弊名单》回复:
@[ll_dio](luogu://user/288476) ???
在讨论《求调0pts紫紫的pls玄双关thx》回复:
@[Zhangxm2012](luogu://user/1426124)@[Rigel](luogu://user/602458) 我知道了,第3行我dp定义的大小最后一个1写成了l,l比1高一点 先给一罐,因为今天有点晚,没时间上另一个,明天再关
在讨论《求调0pts紫紫的pls玄双关thx》回复:
@[Rigel](luogu://user/602458) 改完后: ```cpp #include using namespace std; int a[1111],dp[1111l]; int main() { for(int i=1;i >n>>w; for(int i=1;i >a[i]; for(int i=…
```cpp #include using namespace std; int a[1111],dp[1111ll]; int main() { for(int i=1;i >n>>w; for(int i=1;i >a[i]; for(int i=1;i<=n;i++) for(int j=a[i];j<=w;j+…
# B3969 [GESP202403 五级] B-smooth 数 题解 本题使用埃氏筛,将每个数的最大质因数标记。 代码: ```cpp #include using namespace std; int f[1111111]; int main() { int n,b,c=0;//c为小于等于n的B-smooth…
在讨论《# IAOI Round 1 赛时答疑帖》回复:
qp预祝比赛顺利进行
# B3968 [GESP202403 五级] 成绩排序 题解 这是一道复杂、废手的模拟题。 代码: ```cpp #include using namespace std; struct P//结构体 { int d,c,m,e,r,w;//分别为:学号、语文成绩、数学、英语、排名、总分 void cn(int i)…
# B3929 [GESP202312 五级] 小杨的幸运数 题解 这题运用了埃氏筛的思想,标记完全平方数及其倍数。 上代码: ```cpp #include using namespace std; int f[1111111],HHH=1001*1001; int main() { int a,n; cin>>a>…
# B3871 [GESP202309 五级] 因数分解 题解 ~~这道题乍一看不难,其实也不难~~ 这道题使用了因式分解。 直接上代码: ```cpp #include using namespace std; typedef long long ll; int main() { ll n,f=0;//f代表本因数是…
在讨论《洛谷网校暑期课程指南》回复:
哇!可惜没时间
```cpp #include using namespace std; int t[11111],c[11111],p[11111],dp[1111]; int main() { int h1,m1,h2,m2,n; scanf("%d:%d %d:%d %d",&h1,&m1,&h2,&m2,&n); int ts…
在讨论《Algo Beat Contest 002 赛时答疑帖》回复:
第100
在讨论《LGR229 赛时答疑帖》回复:
预祝比赛顺利进行,同时祝 2025 届高考考生金榜题名,高考加油!
在讨论《Algo Beat Contest 002 赛时答疑帖》回复:
qp第一次这么前
# P8803[蓝桥杯2022国B]费用报销 题解 ~~废话部分:这是本蒟蒻第二篇题解,第一篇在小号上。~~ ## 本题方法:01 背包 DP 本题为 01 背包 DP,只需进行预处理即可。 好,我们开始,一步一步解释吧: ### 输入预处理 由于题目中每张票据输入的是对应的月、日,所以我们应把日期变为**当日是今年的…
在讨论《五一期间比赛作弊名单》回复:
sqlm I.M.C.G.
在讨论《五一期间比赛作弊名单》回复:
@[longyitongxue](luogu://user/1145420) 不到
在讨论《五一期间比赛作弊名单》回复:
后排兜售{main包,queue queue糖,烤main筋}
在讨论《五一期间比赛作弊名单》回复:
cz楼下的楼下
在讨论《80pts求调!!!悬关》回复:
@[libu2333](luogu://user/1475943) 哦对谢谢
```cpp #include using namespace std; int main() { int x,s=8; char c; cin>>x>>c; if(c=='y') s+=5; x-=1000; if(x<=0) return 0; s+=x/500*4; if(x%500) s+=4; cout<<s…
在讨论《求调0pt!!!!!悬关》回复:
@[Zhall_Dreamy](luogu://user/1314007) 已关
在讨论《求调0pt!!!!!悬关》回复:
@[Zhall_Dreamy](luogu://user/1314007) 哦对对对谢谢,脑子抽筋了
```cpp #include using namespace std; stack st; int main() { int n,c=0; cin>>n; while(1) { int x; cin>>x; if(!x) break; st.push(x); } while(!st.empty()) { cout<<…