题解列表
逆天解法,包得吃的。
摘要:解题思路:一直交换,将后面的数换到前面。注意事项:参考代码:#include<stdio.h>int main(){ int a,i,j,b,c,arr[10]={0}; scanf("%d",&a)……
2820: 含k个3的数
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i=0,x,y; scanf("%d %d",&x,&y); if(x%19==0) ……
[金银岛]自定义排序优先'均权'最大--我看题解都太复杂辣
摘要:# 贪心 自定义排序找均权值最大
#### 好久没发题解了。。。
##### 核心思路:通过价值/重量 得到单位价值
###### 按照单位价值从大到小得顺序装 直到装不下为止
##……
题可以贪心做,人要看准了爱.
摘要:# 权重 = 价值 / 重量
就是先拿(价值/重量)权重最大的,
最后拿不下了就分割(权重*剩下背包重量)拿走就行了
```cpp
#include
#define ULL unsign……
2835: 计算书费
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double arr[100],sum=0,brr[100]; brr[0]=28.9; br……
搭配购买(buy) 并查集+01背包dp问题
摘要: #include
using namespace std;
const int N = 1e4 + 5;
int father[N];
int valu……
亲戚 并查集+人数求和
摘要: #include
using namespace std;
int n,m,a,b;
char c;
struct relation
……
亲戚 并查集+人数求和
摘要: #include
using namespace std;
const int MAXN = 100010;
int fa[MAXN], size[MAXN];
……
蓝桥杯2024年第十五届省赛真题-封闭图形个数(C++)
摘要:解题思路:不使用结构体,而使用vector向量作为不同个数封闭图形的存放处,好处就是不限制同一个数封闭图形的次数。注意事项:sort(num[i].begin(), num[i].end());是对每……