题解列表
dfs+判断数组解决排列
摘要:解题思路:注意事项:坑:1.题目空了一格输出,输出一个就换行2.字典序输出参考代码:#include<bits/stdc++.h>const int N=10;//题目默认字典序了strcmpint ……
编写题解 1027: [编程入门]自定义函数处理最大公约数与最小公倍数
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int y(int a,int b) { for(int i=min(a,b);i>……
不用考虑斜率不存在和分母为0的方法——余弦定理
摘要:解题思路:参考代码:#include<bits/stdc++.h>
using namespace std;
#define PI 3.14159265358979323846
void sol……
最后一个点卡数组小于k和多组数据
摘要:#include<bits/stdc++.h>
using namespace std;
int main()
{
int t,k;
while(cin>>t>>k)
……
2^k进制数:组合数
摘要:解题思路:组合数注意事项:参考代码:#include<iostream>
#include<cmath>
using namespace std;
long long c(int n, int ……
Java简单的a+b
摘要:Scanner sc=new Scanner(System.in);
while(sc.hasNext()){
int a=sc.nextInt();
int b=sc.nextInt();
……
Cylinder最大圆柱体积
摘要:解题思路:pi的精度11位注意事项:参考代码:#include<iostream>
#include<cmath>
using namespace std;
const double pi = ……
1114: C语言考试练习题_排列(dfs)
摘要:解题思路:dfs全排列注意事项:题目的输出顺序, 依次排除第 4 - 1 个数字参考代码:#include<iostream>
#include<cmath>
using namespace st……