题解列表

筛选

哈希-数位排序

摘要:```cpp #include using namespace std; int n,m; vector h[100]; int main() { cin>>n>>m; f……

简单的a+b题解

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){    int a,b;    while(cin>>a>>b)    ……

for循环判断~

摘要: ``` #include #include #include #include using namespace std; const int Inf = 1e4; int M,N;……

P1000 题解(c++简单)

摘要:解题思路:不就是加法嘛,还不会!注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int x,y;int main(){ scanf("%d……