虽然这个家伙不懒,但还是什么也没有留下
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
```cpp #include using namespace std; const int maxn=2e3+5; int n,m,dp[maxn][maxn]; char s1[maxn],s2[maxn]; int main() { cin>>s1+1>>s2+1; int n=strlen(s1+1),m=st…
在讨论《全是0》回复:
输入啥都是0 咋办??? ~~求助!!!~~
```cpp #include using namespace std; int a[10005]; int b[200005]; int dp[200005]; int n, m; int main() { cin>>n>>m; for (int i=1; i >a[i]; } for (int i=1; i >b[…
```cpp #include using namespace std; const int maxN=1e9+5; //#define int long long int n,k; int m[maxN][maxN]; int attack[maxN][maxN]; int nx[15]={0,0,1,0,-1};…
# 题解:P14074 [GESP202509 五级] 有趣的数字和 ## 题目分析 题目要求统计区间 $[l, r]$ 内所有二进制表示中包含奇数个 `1` 的正整数的和。 ## 第一次 ```cpp #include using namespace std; using ll=long long; ll joxin…