粉詹眉
粉詹眉
全部文章
分类
归档
标签
去牛客网
登录
/
注册
粉詹眉的博客
全部文章
(共128篇)
题解 | #计算表达式#
#include <iostream> #include <stack> #include <map> using namespace std; typedef pair<int, char> pai; map<char, int> m;...
2024-02-27
0
223
题解 | #Powerful Calculator#
#include <iostream> #include <vector> using namespace std; vector<int> add(vector<int>& A, vector<int>& B) { ...
2024-02-25
0
177
题解 | #Sum of Factorials#
#include <iostream> #include <vector> #include <map> using namespace std; vector<int> num; map<int, bool> m; //存储0!~9!能...
2024-02-23
0
184
题解 | #数字反转#
#include <iostream> using namespace std; int reverse(int x){ int res=0; while(x){ res=res*10+x%10; x/=10; } ret...
2024-02-23
0
194
题解 | #数字反转#
#include <iostream> #include <vector> #include <algorithm> using namespace std; vector<int> add(vector<int> &A,vect...
2024-02-23
0
209
题解 | #Fibonacci#
#include <iostream> using namespace std; int main() { int n; cin>>n; int a=0,b=1; while(n--){ int c=a+b; ...
2024-02-23
0
162
题解 | #Old Bill#
#include <iostream> using namespace std; int main() { int n; while(cin>>n){ bool flag=false; int x,y,z; c...
2024-02-23
0
187
题解 | #Old Bill#
#include <iostream> using namespace std; int main() { int n; while(cin>>n){ bool flag=false; int x,y,z; c...
2024-02-23
0
175
题解 | #Simple Sorting#
#include <iostream> #include <algorithm> #include <vector> using namespace std; const int N=1010; int a[N]; int main() { int n;...
2024-02-23
0
142
题解 | #Simple Sorting#
#include <iostream> #include <algorithm> #include <vector> using namespace std; const int N=1010; int a[N]; int main() { int n;...
2024-02-23
0
147
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页