不红红黑路同
不红红黑路同
全部文章
未归档
c++(5)
python(1)
pytorch(7)
机器学习(2)
线性代数(1)
题解(50)
归档
标签
去牛客网
登录
/
注册
不红红黑路同的博客
全部文章
/ 未归档
(共6篇)
格式输出 | 加逗号
A+B Format 做法是设置一个char栈,每塞进去3个数字,就加一个逗号。 注意点:负号,0 其他的没有什么问题了,不要忘记0的判断。 #include <iostream> #include <stack> using namespace std; //1的第二种做...
C++
2022-02-21
0
291
Find The Multiple
BFS,初始状态为1,然后每一个m,10m和10m+1都也是符合要求的m //例题9.2 Find The Multiple int BFS(int n){ queue<long long>q; q.push(1); while(!q.empty()){ ...
C++
2022-02-20
0
259
汉诺塔②
要求不能总最左移到最右或者从最右移到最左。 //例题8.2汉诺塔② long long hnt(long long x){ if (x==1)return 2; return 3*hnt(x-1)+2; } int main(){ long long x; while...
C++
2022-02-14
0
276
Senior's Gun
//例题7.3 Seniors gun int compare(int x,int y){ return x>y; } int main(){ int cases,n,m; scanf("%d",&cases); for(int c=0;c<ca...
C++
2022-02-11
1
536
FatMouse'Trade
//例题7.2 Fatmouse'Trade struct room{ int number; int money; float price; }; int compare(room x,room y){ return x.price<y.price; } ...
C++
2022-02-11
0
382
猫狗收容所
struct animal{ int number; int order; animal(int n,int o):number(n),order(o){} }; int main(){ int n,event,id; int order=0; qu...
C++
2022-02-04
0
619