(fly)1709: 数据结构-Floyd(弗洛伊德)最短路径算法(python) 摘要:解题思路:注意事项:参考代码:n=int(input()) inf=float('inf') dp=[] for i in range(n): dp.append(li…… 题解列表 2022年03月09日 0 点赞 0 评论 399 浏览 评分:0.0
编写题解 1042: [编程入门]电报加密--解题 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<stdio.h>#include<string.h>#include<cmath>using namespace s…… 题解列表 2022年03月09日 0 点赞 0 评论 344 浏览 评分:0.0
编写题解 1028: [编程入门]自定义函数求一元二次方程--借鉴大佬的 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cmath>using namespace std;float delta_func(float a,float b…… 题解列表 2022年03月09日 0 点赞 0 评论 384 浏览 评分:0.0
编写题解 1027: [编程入门]自定义函数处理最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void han(int m,int n){ int min = (m<n)?m:n; int max = (m>n)?m:n; …… 题解列表 2022年03月09日 0 点赞 0 评论 279 浏览 评分:0.0
别人的,读题太麻烦 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int i; scanf("%d", &i); if (i <= 100000) {//…… 题解列表 2022年03月09日 0 点赞 0 评论 430 浏览 评分:9.9
编写题解 1011: [编程入门]最大公约数与最小公倍数--简单解法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m,n; scanf("%d %d",&m,&n); int min = (m<n)?m:n; int …… 题解列表 2022年03月09日 0 点赞 0 评论 297 浏览 评分:0.0
C++直接减法模拟 摘要:解题思路:直接减法模拟即可注意事项:记得考虑余数不输出和商不输出的情况,此时输出0参考代码:#include<stdio.h>#include<string.h> const int N=1e5+5;…… 题解列表 2022年03月09日 0 点赞 0 评论 1130 浏览 评分:9.0
Hifipsysta-1691-数据结构-KMP字符串模式匹配算法实现(C++代码) 摘要:```cpp #include using namespace std; const int MXN=1e2+10; int nextTable[MXN]; int getNextTa…… 题解列表 2022年03月09日 0 点赞 0 评论 714 浏览 评分:0.0
排队买票 STL全排列 摘要:```cpp #include #include #include using namespace std; int queue[15]; int num[15]; int m,n,k;…… 题解列表 2022年03月09日 0 点赞 0 评论 491 浏览 评分:9.9
清晰明了不要想太多 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int N, i; double sum1=0, sum2=0, M; scanf("%lf%d", &M, …… 题解列表 2022年03月09日 0 点赞 0 评论 416 浏览 评分:2.0