题解 1931: 蓝桥杯算法提高VIP-逆序排列(c语言) 摘要:解题思路:利用while的循环输入,通过其内部做到判断为0时跳出该循环,做到输入为0时结束输入。注意事项:非唯一解,仅供参考。参考代码:#include<stdio.h>main(){ int p=0…… 题解列表 2024年04月19日 0 点赞 0 评论 452 浏览 评分:9.9
信息学奥赛一本通T1270-混合背包 摘要:解题思路:转化为完全背包, 当数量不限时,数量为背包容量除以物品体积注意事项:滚动数组优化, j 从m 到 w[i]参考代码:#include<iostream> #include<algorith…… 题解列表 2024年04月19日 0 点赞 0 评论 275 浏览 评分:9.9
LETTEARS(走路径) 摘要:```cpp #include using namespace std; #define endl '\n' #define int long long const int N=2…… 题解列表 2024年04月19日 0 点赞 0 评论 439 浏览 评分:9.9
BFS板子最最最基础题了 摘要:```cpp #include using namespace std; #define endl '\n' #define int long long typedef pair …… 题解列表 2024年04月19日 0 点赞 0 评论 608 浏览 评分:9.9
python--study||O.o 摘要:参考代码:# 设置四个边界,层层遍历 row, column = map(int, input().split()) arr = [list(map(int, input().split(…… 题解列表 2024年04月19日 0 点赞 0 评论 351 浏览 评分:9.9
三个数字的排序(三目运算符) 摘要:解题思路:三目运算符注意事项:中间值比较绕,多仔细思考,但最大最小值这个三目运算符易懂参考代码:#include<stdio.h>int main(){ int a,b,c; scanf(…… 题解列表 2024年04月20日 0 点赞 0 评论 335 浏览 评分:9.9
题解 2879: 错误探测 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; int b[100][100]; int c=0; int d=0; …… 题解列表 2024年04月20日 0 点赞 0 评论 398 浏览 评分:9.9
python--study||O.o 摘要:参考代码:n = int(input()) arr = list(map(str, input().split())) #dp[i]是以i为数字结尾的最长接龙子序列的长度 dp = [0] * …… 题解列表 2024年04月21日 0 点赞 0 评论 441 浏览 评分:9.9
转化为数组 摘要:解题思路:强制类型转换求和注意事项:无参考代码:for i in range(100,1000): my_str = str(i) sum = int(my_str[0]) ** 3 + …… 题解列表 2024年04月21日 0 点赞 0 评论 560 浏览 评分:9.9
题解 2907: 不与最大数相同的数字之和 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;const int N=1e5+5;typedef long long ll;in…… 题解列表 2024年04月21日 0 点赞 0 评论 262 浏览 评分:9.9