题解列表

筛选

紧急措施(详细注释)

摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; // 定义结构体aaa,包含三个字符数组a, b, c struct aa……

C++2784开瓶盖赢大奖题解

摘要:解题思路:注意事项:参考代码:#includeusing namespace std;int main(){    int a;cin >>a;    if (a>=10||a>=20)    {  ……

骗分?(不知道这题本意是该用什么方法(x_x))

摘要:解题思路: - 注意题目多组输入是指有着给的样例那样的多组, - 一眼看去似乎是从左到右挨个比较,但给的数据好像很大,老超时,就想着能不能每次遍历两个元素,一个指向开头,一个指向数组中间,详细的看……

1102: 明明的随机数

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;set<int>st;int main(){    int n,m;    cin……