"千锤万凿出深山,烈火焚烧若等闲"||心火不熄,步履不停
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
在讨论《【喜报】洛谷网校学员 CSP-J/S NOIP 喜报》回复:
qp
在讨论《2025 年度总结已上线》回复:
qp
在讨论《建议加强数据》回复:
这样都能过 ```cpp #include using namespace std; int main(){ long long n; cin>>n; cout<<n*n; return 0; } ```
在讨论《太长了,求优化》回复:
@[gdbgmuser](luogu://user/1827733) 谢谢!
```cpp #include using namespace std; int n,c; const int N=200010; int q[N]; int bsearch1(int q[],int len,int x){ int l=0,r=n+1; while(l+1<r){ int mid=(l+r)/2; i…
在讨论《0分不会,求调》回复:
@[yu2014](luogu://user/1864217) ???
在讨论《0分不会,求调》回复:
@[yu2014](luogu://user/1864217) 你这很明显有问题啊,参考一下这个 ```cpp #include using namespace std; int f(int a){ int d=a%10; while(a){ if(a%10!=d){ return 0; } a/=10; } retu…
在讨论《第一问是否可以这样做》回复:
可以,dp能解
在讨论《如何 NOIP?》回复:
我更菜,%%%
在讨论《省选计划 2025-2026》回复:
qpzc
在讨论《求问怎么上橙》回复:
打比赛
在讨论《调了好久,还是全WA,最后一个点还超时了,求调,毕关》回复:
@[XL2025789](luogu://user/1868582) ### 求关 ```cpp #include using namespace std; bool isPrime(int n){ if(n%2==0) return false; if(n%6!=1&&n%6!=5)return false; for…
在讨论《菜逼初三生如何水省一?》回复:
我也想要
在讨论《想气死我就直说,代码求条(半红半绿):》回复:
输出错了
在文章《浅谈数论》发表评论:
这是xxs?
在文章《题解:P12210 [蓝桥杯 2023 国 Python B] 背包问题》发表评论:
太有实力了!!!
### 思路: 枚举 $A$ 数量,算剩余空间下 $B$ 的最大数量,取总和最大。 ### $AC code$: ```cpp #include using namespace std; int main(){ int T;cin>>T; while(T--){ int B1,B2,B3,a,b,va,vb,max_s…
在讨论《LGR-252 作弊名单(棕 83 封 18)》回复:
qp
在讨论《5分,求助》回复:
代码只能过样例
比赛时拼尽全力只拿到5分。 ```cpp #include using namespace std; const int N = 1005; vector > g[N]; int c[N]; bool vis[N]; int dis(int u, int v) { fill(vis, vis + N, false);…
在文章《我的竞赛经历总结》发表评论:
已严肃收藏
在文章《我的竞赛经历总结》发表评论:
好文,收藏了
在文章《我的竞赛经历总结》发表评论:
qp
在文章《题解:P13679 [IAMOI R2] 传奇模数》发表评论:
好!
在讨论《梦熊月亮赛 作弊名单》回复:
qp
在讨论《20分!求助》回复:
已过,此贴结
```cpp #include using namespace std; int a[1001]; int main(){ int t; cin>>t; while(t--){ int n; cin>>n; int m=0; for(int i=1;i >a[i]; m+=a[i]; } int p=0; bool f…
### 思路: 枚举A数量,算剩余空间下B的最大数量,取总和最大。 #### AC Code: ```cpp #include #include using namespace std; int main(){ int T;cin>>T; while(T--){ int B1,B2,B3,a,b,va,vb,max_s…