粉詹眉
粉詹眉
全部文章
分类
归档
标签
去牛客网
登录
/
注册
粉詹眉的博客
全部文章
(共128篇)
题解 | #Number Steps#
#include <iostream> using namespace std; //题目很坑,根本就没有n,只需输入x,y即可 int main() { int x, y; while (cin >> x >> y) { if ...
2024-02-21
1
196
题解 | #Number Steps#
#include <iostream> using namespace std; const int N = 5010; int a[N][N]; int dx[] = {1, 1, 1, -1}, dy[] = {1, -1, 1, 1}; int main() { //预...
2024-02-21
0
149
题解 | #字符串排序#
#include <cstdio> #include <iostream> #include <algorithm> using namespace std; struct line { string words; int len; bo...
2024-02-20
0
153
题解 | #字符串排序#
#include <cstdio> #include <iostream> #include <algorithm> using namespace std; struct line { string words; int len; bo...
2024-02-20
0
165
题解 | #字符串排序#
#include <iostream> #include <algorithm> using namespace std; struct line { string words; int len; bool operator< (const l...
2024-02-20
0
157
题解 | #Integer Inquiry#
#include <iostream> #include <vector> using namespace std; vector<int> add(vector<int> &A,vector<int> &B){ ...
2024-02-20
0
180
题解 | #进制转换#
#include <iostream> using namespace std; int main() { string str; while(cin>>str){ int res=0; for(int i=2;i<st...
2024-02-20
0
184
题解 | #进制转换#
#include <iostream> using namespace std; int main() { string str; while(cin>>str){ int res=0; for(int i=2;i<st...
2024-02-20
0
125
题解 | #浮点数加法#
#include <iostream> #include <algorithm> using namespace std; int main() { string a,b; cin>>a>>b; //先对齐小数点 st...
2024-02-20
0
191
题解 | #浮点数加法#
#include <iostream> #include <algorithm> using namespace std; int main() { string a,b; cin>>a>>b; //先对齐小数点 st...
2024-02-20
0
151
首页
上一页
2
3
4
5
6
7
8
9
10
11
下一页
末页