dfs #1440: 蓝桥杯2013年第四届真题-带分数 摘要:# 7.带分数 100可以表示为 100=3+69258/714 这种表示形式当中,数字1~9分别只出现一次 可以看成一个数字1~9的全排列 我们只需要在当前全排列中 找出三段数字 满…… 题解列表 2024年11月22日 0 点赞 1 评论 64 浏览 评分:9.9
感觉你们应该可以看懂,有两种药方 摘要:解题思路:注意事项:参考代码://方法一:#include <stdio.h>#include<string.h> void q(char x[100],int y[4]){ int len=0; …… 题解列表 2024年11月22日 0 点赞 0 评论 207 浏览 评分:10.0
完全背包问题,记忆化搜索,不能暴力了呜呜呜呜呜 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; // 定义全局变量,m表示背包容量,n表示物品数量,h初始化为-1 int…… 题解列表 2024年11月21日 0 点赞 0 评论 43 浏览 评分:0.0
For循环解题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,a[3],t; for (i = 0;i < 3;i++) { scanf("%d",&a[i]…… 题解列表 2024年11月21日 0 点赞 0 评论 88 浏览 评分:0.0
2048: 多重背包一眼丁真 摘要:解题思路: 在01背包的基础上再套多一层循环以表示该物品的个数注意事项:参考代码:#include<stdio.h> #define max(x,y) ((x)>(y)?(x):(y)…… 题解列表 2024年11月21日 0 点赞 0 评论 36 浏览 评分:0.0
通过将三位数转换为字符串直接for循环输出数组即可 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ int a; cin>>a; …… 题解列表 2024年11月21日 0 点赞 0 评论 45 浏览 评分:0.0
无虑,无悔,无题。 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m; scanf("%d",&m); switch (m){ case 1 : case 2 :prin…… 题解列表 2024年11月21日 0 点赞 0 评论 75 浏览 评分:0.0
普普通通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int a,b,c;scanf("%d%d%d",&a,&b,&c);if(a*a+b*b==c*c||b*b+c…… 题解列表 2024年11月21日 0 点赞 0 评论 73 浏览 评分:0.0
利用math中的求余 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>double a, b, r;int main() { scanf("%lf%lf", &a, &b…… 题解列表 2024年11月21日 0 点赞 0 评论 90 浏览 评分:0.0
1116: IP判断 java基础语法 摘要:import java.util.Scanner; public class Main { public static boolean ipValid(String ip) { …… 题解列表 2024年11月21日 0 点赞 0 评论 49 浏览 评分:0.0