2030ssxx
2030ssxx
全部文章
分类
归档
标签
去牛客网
登录
/
注册
2030ssxx的博客
TA的专栏
0篇文章
0人订阅
王道机试指南
0篇文章
0人学习
全部文章
(共102篇)
题解 | #玛雅人的密码#
//BFS真的很简单 #include <iostream> #include <queue> using namespace std; struct State{ string str; int count; State(string str,in...
2024-09-11
0
76
题解 | #2的幂次方#
#include <iostream> #include <vector> using namespace std; void Q(int a) { vector<int> vec;//0001-8 while (a != 0) { ...
2024-09-09
0
78
题解 | #二叉树#
#include <iostream> using namespace std; int Q(int a,int b,int answer) { if(a*2==b) { return answer+2; } else if(2*a+1==...
2024-09-09
0
72
题解 | #Fibonacci#
#include <iostream> using namespace std; long long Fib(int n) { if(n==0)return 0; else if(n==1)return 1; else { return...
2024-09-09
0
76
题解 | #全排列#
//非常好的递归题,我差一点就想出来了,再接再励! /* 经典报错总结:(使用传来的字符串参数出现问题) 请检查是否存在数组、列表等越界非法访问,内存非法访问等情况 terminate called after throwing an instance of 'std::out_of_range'...
2024-09-09
0
60
题解 | #n的阶乘#
#include <iostream> using namespace std; long long JC(int n) { if(n==1)return 1; else return n*JC(n-1); } int main() { int n;...
2024-09-08
0
87
题解 | #求root(N, k)#
/* 从题意里推导得到:(怎么推导的我目前也不知道,总之是数学知识) 当N%(k-1)!=0时,root(N,k)=N%(k-1); 当N%(k-1)==0时,root(N,k)=k-1; */ #include <iostream> using namespace std; //...
2024-09-06
0
84
题解 | #代理服务器#
//用能访问的最远的服务器的代理服务器 #include <iostream> using namespace std; struct server{ string ip; int far;//代理服务器能到达的最远的服务器的下标 }; int main() { int n,...
2024-09-05
0
78
题解 | #鸡兔同笼#
#include <iostream> using namespace std; int main() { int a; while (cin >> a ) { if(a%2==1)cout<<"0 0"&l...
2024-09-05
0
80
题解 | #整除问题#
/*新经验: 算法逻辑完全正确,但输出陷入死循环导致超时, 不如看看循环条件的变量,是否沿用判断里的了,应该要开一个新数重新赋值。 如第62行: int ii=i;//必须给i开新的数运算,否则就会一直死循环然后超时 */ //牢牢记住这句话:所有数都等与 一个或多个质数相乘的形式 #in...
2024-09-05
0
83
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页