编写题解 2917: 奇数单增序列 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int a[1000],b[500];int main(){ int n,i,j=0; scanf("%d",&n); //输入 fo…… 题解列表 2023年06月01日 0 点赞 0 评论 213 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n, a[100], i; float sum_1 = 0.0, sum_2 = 0.0, …… 题解列表 2023年06月01日 0 点赞 0 评论 188 浏览 评分:0.0
反向搜索,以终点为起点,广度优先搜索 摘要:解题思路:反向搜索,以终点为起点,广度优先搜索用mp<pair,vector<pari>>来存储某个点存放的门注意事项:在搜索四个方向后,再加上这个点拥有的门,其他的与广搜无异参考代码:#includ…… 题解列表 2023年06月01日 0 点赞 0 评论 405 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:注意添加终止符参考代码:#include<stdio.h>#include<string.h>int main(){ char str[101],str_friend[101]; …… 题解列表 2023年06月01日 0 点赞 0 评论 221 浏览 评分:0.0
编写题解 2921: 整数奇偶排序 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main() { int i, j, a[100], j_n = 0, ou_n = 0; int ji[100], ou[10…… 题解列表 2023年06月01日 0 点赞 0 评论 203 浏览 评分:0.0
最大公约数与最小公倍数 摘要:解题思路:辗转相除法求最大公约数被除数除以除数,得到余数,余数成为下一轮的除数,则上一轮较小的除数成为这一轮的被除数,直至余数为0需要注意的是除数不可为0;最小公倍数:两数相乘的乘积除以最大公约数注意…… 题解列表 2023年06月02日 0 点赞 0 评论 204 浏览 评分:0.0
组合数学题 摘要:解题思路:注意事项:参考代码:import sysread=lambda:int(sys.stdin.readline().strip())dpf={0:0,1:0}dph={0:0,1:0}def …… 题解列表 2023年06月02日 0 点赞 0 评论 305 浏览 评分:0.0
C语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>struct student{ long int id; float score;};i…… 题解列表 2023年06月02日 0 点赞 0 评论 567 浏览 评分:0.0
二级C语言-同因查找 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; for(n=10;n<=1000;n++) { if(…… 题解列表 2023年06月02日 0 点赞 0 评论 156 浏览 评分:0.0
编写题解 2919: 奖学金 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct student { int id; int yw, sx, yy; int sum;};struct student a[…… 题解列表 2023年06月02日 0 点赞 0 评论 305 浏览 评分:0.0