2126: 信息学奥赛一本通T1263-友好城市 最长不下降子序列 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; // 定义结构体f,包含两个整数成员xi和yi struct f{ …… 题解列表 2024年12月15日 0 点赞 0 评论 29 浏览 评分:0.0
贝西的训练 摘要:解题思路:1. 在 main 函数开头,定义了整数变量 M (奶牛进山的总时间)、 T (路段数量)、 U (上坡时间)、 F (平路时间)、 D (下坡时间),并通过 scanf 函数从用…… 题解列表 2024年12月15日 0 点赞 0 评论 30 浏览 评分:0.0
纯新手for循环 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[10]; for(int i=0;i<10;i++){ scanf("%d",&a[i]); }…… 题解列表 2024年12月15日 0 点赞 0 评论 154 浏览 评分:10.0
信息学奥赛一本通TT1262-挖地雷 差点睡不着觉 服了 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; struct f{ int xi,yi; }t[20005]; …… 题解列表 2024年12月15日 0 点赞 0 评论 41 浏览 评分:0.0
3052: 最大上升子序列和 dp做法简单秒懂 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int main(){ // 定义变量n和数组a、dp,其中a存储…… 题解列表 2024年12月14日 0 点赞 0 评论 28 浏览 评分:0.0
1301: 尼克的任务 常规做法 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; // 定义两个数组,dp用于存储动态规划结果,kk用于记录每个位置的工作个数…… 题解列表 2024年12月14日 0 点赞 0 评论 42 浏览 评分:0.0
[NOIP2001]装箱问题 dfs超时的看这里 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int v,n,kkk[35]; int a[35]; bool vis…… 题解列表 2024年12月14日 0 点赞 0 评论 44 浏览 评分:0.0
1282: 公交汽车 dp和dfs 还是dfs更好用 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int a[11],n,kkk[110]; void dfs(int x,…… 题解列表 2024年12月14日 0 点赞 0 评论 51 浏览 评分:0.0
特别基础,用了结构体和选择排序, 摘要:解题思路:首先定义结构体,然后比较分数大小,遇到分数相同的,再比较字符串大小因为是选择排序,每次循环,都可以得到一个在最前面的下标,依次进行即可。注意事项:参考代码:#include <stdio.h…… 题解列表 2024年12月14日 1 点赞 0 评论 112 浏览 评分:10.0
找啊找啊找GF 题目描述有点东西 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; // 定义全局变量 int n, m, r; // n表示物品MM数量,m…… 题解列表 2024年12月14日 0 点赞 0 评论 51 浏览 评分:0.0