蒹葭露白玉华清,梦里哀鸿听转明⎛⎝≥⏝⏝≤⎛⎝
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
在讨论《莱德,需要你们(作业一笔没写而还在集训的屑)》回复:
你个小赤佬
在讨论《莱德,需要你们(作业一笔没写而还在集训的屑)》回复:
汪汪队能帮你赤它
在讨论《用字符串解的,40分求助》回复:
@[Robotic_Rat](/user/1331242) 你没输入k!!! 在输入出多输入k,还有判断的条件改为==k就好了 ```cpp #include using namespace std; int main(){ string s;int k; int sum=0; cin>>s>>k; for(int i…
在讨论《无人能解?(9年了)》回复:
为什么[编译失败是AC啊](https://www.luogu.com.cn/record/224712)
在讨论《暴力出奇迹,打表过样例》回复:
dfs:原来我是提交答案
```cpp #include using namespace std; typedef long long LL; int main() { ios::sync_with_stdio(0);cin.tie(0);cout.tie(0); LL n; cin>>n; LL a[n],b[n],p,q,l=0,r=0,m…
```cpp int main() { ios::sync_with_stdio(0);cin.tie(0);cout.tie(0); long long n; cin>>n; l a[n+1],b[n+1],zhi=0; for(int i=0;i >a[i]; b[0]=a[n]; for(int i=1;i<=n…
在讨论《递归秒了求优化》回复:
@[DGL__DGL](/user/989997) 已关注多谢思路
在讨论《递归秒了求优化》回复:
@[DGL__DGL](/user/989997) 可以试试,谢谢dalao
在讨论《递归秒了求优化》回复:
额太慢了 [测评记录](https://www.luogu.com.cn/record/160258946)
在讨论《递归秒了求优化》回复:
_**敢抄毕究**_
```python def generate(numRows): if numRows == 0: return [] if numRows == 1: return[[1]] if numRows == 2: return [[1], [1, 1]] numRows -= 2 rList = [[1], [1, 1]…