题解列表

筛选

1757: 矩阵对角求和

摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std; int main(){    int n, sum=0, num=0;    int ar……

只用了for循环和冒泡排序

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;#define N 10int main(){    int a[N];    in……

火柴棒等式,暴力dfs

摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; // 全局变量声明 int n, a[10005], b[10005] =……

发工资咯 记way

摘要: #include using namespace std; int dir[] = { 100, 50, 10, 5, 2, 1 }; int main() {……

1107: 纪念品分组

摘要:解题思路:动态数组:vector<int>p(n)sort 对数组进行降序排序两重遍历,只要两项加起来小于等于w,就分为一组已分配好的纪念品置成-1(价格不会达到的数)第一重遍历会遇到已经分配好的纪念……

排列 dfs暴力

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; // 全局变量声明 int n, a[5], b[5], m = 0;……

蓝桥杯2024年第十五届省赛真题-遗迹

摘要:## 知识点 动态规划。 ## 题面 小蓝找到了一个外星文明留下来的遗迹,遗迹大门的屏幕上有一个长度为m 的字符串 t 和一个输入框,下面还有一个键盘,键盘为一个长度为 n 的字符串 s ,由一……