题解列表
1352: Matrix67的派对
摘要:解题思路:注意事项:参考代码:#include <iostream>
#include <algorithm>
using namespace std;
int n, k;
int h……
蓝桥杯算法训练VIP-链表数据求和操作
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;struct Complex{ int imag; int real……
1333: [NOIP2004]合并果子
摘要:```cpp
#include
#include
using namespace std;
const int N(30005);
long long a[N],b[N];
int mai……
2999: 牛吃牧草
摘要:方法一:
```cpp
#include
using namespace std;
int main()
{
cout……