c++利用数组记录路径 摘要:解题思路:使用一个bool已经dfs来判断环上点的位置,详细的看代码上的注释注意事项:参考代码:#include<bits/stdc++.h>#define DZT ios::sync_with_st…… 题解列表 2024年04月05日 0 点赞 0 评论 605 浏览 评分:0.0
结构体之成绩记录(结构体数组) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>struct stu{ char num[20]; char name[20]; int chine…… 题解列表 2024年04月05日 0 点赞 0 评论 441 浏览 评分:0.0
结构体之成绩记录(指针) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>typedef struct stu{ char num[20]; char name[…… 题解列表 2024年04月05日 0 点赞 0 评论 465 浏览 评分:0.0
结构体之成绩统计2 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>typedef struct stu{ char num[20]; char name[20]; i…… 题解列表 2024年04月05日 0 点赞 0 评论 456 浏览 评分:0.0
C++ 状态压缩dp 摘要:解题思路:尝试了一下dfs只能拿到一半的分数,刚好昨天学了状压dp,每一包糖果的组合都可以用一种状态来表示。可以枚举每一种状态通过状态转移方程得到结果注意事项:参考代码:#include<bits/s…… 题解列表 2024年04月05日 0 点赞 0 评论 635 浏览 评分:0.0
c++递增三元组 排序+二分 摘要:解题思路:将 ai<bj<ck 拆成两个式子 bj>ai 和 bj<ck; 所以只需要枚举j即可再用二分找出边界注意事项:参考代码:#include<bits/stdc++.h>#define int…… 题解列表 2024年04月06日 0 点赞 0 评论 567 浏览 评分:0.0
编写题解 1019: [编程入门]自由下落的距离计算 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double sum,h,M,N; scanf("%lf %lf",&M,&N); h…… 题解列表 2024年04月06日 0 点赞 0 评论 439 浏览 评分:0.0
数位排序 c++ 摘要:#include using namespace std; int n,m; const int N=1e6; vectorpi; int han(int x) { int sum=…… 题解列表 2024年04月06日 0 点赞 0 评论 586 浏览 评分:0.0
六行简便 编写题解 2835: 计算书费 摘要:解题思路:a=list(map(int,input().split()))注意事项:s=s+a[i]*b[i]参考代码:a=list(map(int,input().split()))b=[28.9,…… 题解列表 2024年04月06日 0 点赞 0 评论 548 浏览 评分:0.0
题解 2835: 计算书费 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;double a[10]={28.9,32.7,45.6,78,35,86.2,2…… 题解列表 2024年04月06日 0 点赞 0 评论 425 浏览 评分:0.0