题解列表
题目 1050: [编程入门]结构体之成绩记录
摘要:```cpp
#include
#include
using namespace std;
int n;
struct node
{
string a, b;
in……
[编程入门]数字逆序输出
摘要:解题思路:简单暴力注意事项:参考代码:int main(){ int a, b,c,d,e,f,g,h,i,j ; scanf("%d %d %d %d %d %d %d %d %d %d", &a,……
简单的模拟题,时间复杂度O(n+mlogm)
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;#define maxn 100010#define maxm 100010#def……
1098: 陶陶摘苹果
摘要:解题思路:... ... ... ... ... ... ... ... ... ...注意事项:无参考代码:#include<iostream>using namespace std;int mai……
蓝桥杯2022年第十三届省赛真题-重新排序(贪心,差分数组)
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef long long ll;const int N = 1e5 + 5……
1074: 数字整除
摘要:```cpp
#include
#include
using namespace std;
int main()
{
char m[1050];
int h;
……
汽水瓶(c++纯代码)
摘要:```cpp
#include
using namespace std;
int qishui(int w)
{
int m=w/3,n=w%3,x,y,sum=0;
wh……
二级C语言-阶乘公式求值
摘要:```cpp
#include
#include
using namespace std;
long long n;
double a[1000],sum=0;
void fact(int……