[python] 1001: [编程入门]第一个HelloWorld程序 摘要:方法一: print("**************************") print("Hello World!") print("**********************…… 题解列表 2023年07月09日 0 点赞 0 评论 560 浏览 评分:0.0
1002: [编程入门]三个数最大值 (python代码) 摘要:方法一 a, b, c = map(int, input().strip().split()) sum=[a, b, c] sum.sort() print(sum[2]) …… 题解列表 2023年07月09日 0 点赞 0 评论 778 浏览 评分:0.0
模板题,可以用Dijkstra以及堆优化的还有spfa 摘要:解题思路:只需算出各点到起点的距离,求出最大值,如果出现正无穷,则说明传送不到,输出-1,否则更新ans注意事项:参考代码: #include<iostream> #include<cstring…… 题解列表 2023年07月09日 0 点赞 0 评论 424 浏览 评分:9.9
蓝桥杯算法提高VIP-队列操作 摘要:解题思路:理解好头指针front 和尾指针 rear 的位置即可当两个相等时 :队列为空当rear==数组长度减一时:队列为满计算队列大小即:尾指针减头指针注意事项:参考代码:import java.…… 题解列表 2023年07月09日 0 点赞 0 评论 498 浏览 评分:9.9
感谢支持,谢谢你们的支持 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int k, a = 1, b = 1, c = 1; …… 题解列表 2023年07月09日 0 点赞 0 评论 505 浏览 评分:2.0
自定义函数之字符类型统计 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>void tongji(char str[100],int out[4]){ int i; …… 题解列表 2023年07月09日 0 点赞 0 评论 343 浏览 评分:0.0
题解: 药房管理 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int m,n,q,ans=0; cin>>m…… 题解列表 2023年07月09日 0 点赞 0 评论 325 浏览 评分:0.0
药房管理1+1=33333333333 摘要:解题思路:无注意事项:无参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int m,n,q,b=0; cin>>m>…… 题解列表 2023年07月09日 0 点赞 0 评论 343 浏览 评分:0.0
感谢支持,谢谢你们的支持 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n,x,y,z=0,maxx=0; ci…… 题解列表 2023年07月09日 0 点赞 0 评论 315 浏览 评分:0.0
题解: 正常血压 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n,a,b,z=0,maxx=0; c…… 题解列表 2023年07月09日 0 点赞 0 评论 375 浏览 评分:9.9